Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

0
votes
0answers
67 views

Xbox 360 STFS File Manager in Python

This was meant to be a quick and dirty way for me to extract files from inside CON files for use in some online tools, but ended up taking about a week to complete. Never mind about the quick part ...
0
votes
1answer
106 views

ruby gem file structure

Am in the middle of implementing my first gem and I'm pretty sure the file structure I'm using is going to become problematic (particularly under "lib", I'm becoming worried about the amount of files ...
1
vote
1answer
37 views

Replace first occurence of pattern in file

Here's my attempt to replace first occurence of pattern in file with spaces. Effectively deleting it, and hopefully will allow me to "delete" it in a large file, without rewriting it. #define ...
6
votes
1answer
335 views

High level file structure and library structure

I'm working on a DOM-shim project. For a small subset of the DOM4 specification (Actually a subset of the Node interface) I already have 400+ lines of functions. I presume keeping this up will ...