Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

59
votes
27answers
3k views

How do you find a needle in a haystack?

When implementing a needle search of a haystack in an object-oriented way, you essentially have three alternatives: 1. needle.find(haystack) 2. haystack.find(needle) 3. searcher.find(needle, ...
8
votes
7answers
626 views

How does a program look in memory?

How is a program (e.g. C or C++) arranged in computer memory? I kind of know a little about segments, variables etc, but basically I have no solid understanding of the entire structure. Since the ...
4
votes
4answers
150 views

Origins of the name 'main' for program entry point?

Out of curiosity, what are the origins of the name 'main' for a program entry point?
2
votes
3answers
70 views

How to find and execute a method on another java application currently running on computer using java?

For example, lets say I have hello.java (arbitrarily), if it was running and user changed some accessible (not private) variable in that application by providing input while running, this application ...
2
votes
5answers
647 views

C - program structure (avoiding global variables, includes, etc.)

I'm using C (not C++) and I'm unsure how to avoid using global variables. I have a pretty decent grasp on C, its syntax, and how to write a basic application, but I'm not sure of the proper way to ...
1
vote
1answer
66 views

Should I not be subclassing the Cocos2d CCDirector class?

I'm trying to make cocos2d work as an RPG engine. I'm thinking of making a class that will coordinate the movements of the characters, the map loading/unloading etc. Should I make a CCNode for this, ...
1
vote
2answers
280 views

Resources for software structure design

I am looking for a good book that I can get a better understanding of software structure design. I know there are many good programs out there that help with this but I still don't really know proper ...
1
vote
2answers
523 views

What are some best practices for structuring cherrypy apps?

I'm writing a cherrypy app and I was wondering what the best way is for structuring my handlers and code for larger applications? I realize assignment is simple trough cherrypy.root, but what are ...
1
vote
4answers
121 views

Dealing with similar code in multiple C “projects”

I am playing around with some C code, writing a small webserver. The purpose of what I am doing is to write the server using different networking techniques so that I can learn more about them ...