gs

12,575
reputation
837 views

Registered User

name gs
member for 1 year
seen 25 mins ago
website
location CH
age
1d
revised Creating a stack of strings in C
added 14 characters in body
1d
revised Creating a stack of strings in C
added 28 characters in body
2d
comment Why am i getting a EXC_BAD_ACCES
Releasing people should probably be before he assigns it a new value. To me it looks like a global variable.
2d
comment Using boolean values in C
@Tom: What's the value of v in this code: char v = !0? That's the result of your suggestion.
2d
comment Difference between Class and Structure in PHP and Java
I believe you mean in C++, but even there you've got some points wrong.
2d
comment Creating a stack of strings in C
You're welcome. :)
2d
revised Creating a stack of strings in C
nicified post
2d
comment Creating a stack of strings in C
"Several" are too many, a simple stack isn't that hard. Anyway, I'd be grateful for an answer to my previous question. :)
2d
revised Creating a stack of strings in C
added 11 characters in body; added 3 characters in body
2d
revised Creating a stack of strings in C
changed "a couple of" to "a few"
2d
comment Creating a stack of strings in C
Isn't it possible to say "a couple of apples" for "a few apples" in English?
2d
answered Creating a stack of strings in C
Dec
17
comment Easy Programming - an Objective C syntax question
I think it's related, but to someone not knowing the languages it's not necessarily a similar question.
Dec
17
answered Easy Programming - an Objective C syntax question
Dec
17
comment Load class file dynamically (Objective-C)
If you don't have any references to the bundle when unloading it, you can just use -unload. If you do have references I can't help you, I haven't got any experiences in that field. Maybe you can solve your problem using the CoreFoundation bundle support using CFBundle, which is quite different to NSBundle.
Dec
16
accepted how to remove duplicate value in NSMutableArray
Dec
16
answered Local object scope and memory management in Cocoa
Dec
16
comment Does initialization of 2D array in c program waste of too much time?
Allocating memory like this needs virtually no time. Try using a profiler to see where all the CPU time is spent.
Dec
16
comment QED symbol in latex
@Sinan Ünür, dmckee: I see your point. :)
Dec
15
comment QED symbol in latex
That's not programming related, ask in a latex forum.
Dec
15
comment Webkit browsers pushing a bullet to the right.
What's the CSS?
Dec
15
revised Convert Wave to musical notes
removed bragging and "good" advice for other developers
Dec
15
comment Convert Wave to musical notes
Please edit your question instead of misusing an answer for your feedback. If you feel like asking a follow-up question, just create a new one. (The delete and edit button are on the bottom left of your question/answer.)
Dec
15
comment Unsigned Integer in Javascript
I think that using individual bits is the wrong way to go. It's seldom justifiable in C (except for enums), and I'm quite sure never in Javascript or other higher level languages.
Dec
15
comment Unsigned Integer in Javascript
@bradlis7: Control+F. It's right in the first paragraph.
Dec
15
revised Chaining Core Animation animations
more elegant -> most elegant
Dec
15
answered Unsigned Integer in Javascript
Dec
15
answered Load class file dynamically (Objective-C)
Dec
15
comment In python, is there a setdefault() equivalent for getting object attributes?
What about def setdefaultattr(o,n,v): return setdefault(o.__dict__, n, v)? That wouldn't work on classes with slots though.
Dec
15
comment Elephant database
Have you tried the official homepage? common-lisp.net/project/elephant/…
Dec
15
comment Python QPushButton setIcon: put icon on button
The implicit conversion of QPixmap to QIcon seems not to work. I've just tried this with PyQt 4.6, but it didn't work either.
Dec
15
revised Python QPushButton setIcon: put icon on button
converted example to PyQt code, removed guessing about the string
Dec
15
comment Python QPushButton setIcon: put icon on button
Both " and ' are valid in Python.
Dec
14
revised Detecting iPhone/iPod Touch Accessories
added 5 characters in body
Dec
14
comment why Mercurial doesn’t authenticate first before push data?
Probably not, I cannot think of a reason to do so.
Dec
14
comment seng message through MGTwitterEngine
Have you read the README file? svn.cocoasourcecode.com/MGTwitterEngine/README.txt/…, there's even an example project.
Dec
14
comment what is Compilation and Execution of a Program?
You'll get the 3 missing upvotes eventually, maybe you'll have to wait a few weeks, but I doubt that. :)
Dec
14
comment what is Compilation and Execution of a Program?
Still it seems to be a valid question.
Dec
13
comment Is there an easy way to convert an Objective-C 2.0 file to Objective-C 1?
Write yourself a script, it's quite simple.
Dec
12
comment XOR problem solvable with 2x2x1 neural network without bias?
I think that in your example with 3 hidden neurons one of the neurons acts like a bias, that's why it works. I can't think of an example that would work with 2 hidden nodes. What's the reason not to use a bias?
Dec
12
comment XOR problem solvable with 2x2x1 neural network without bias?
There are more limitations to not having a bias, NOT isn't possible for example.
Dec
12
answered XOR problem solvable with 2x2x1 neural network without bias?
Dec
12
revised c++ operator overloading
added homework tag
Dec
11
comment How does facebook detect when a link as been PASTED
Using timeout()? Events are clearly better for this.
Dec
11
comment Coding horror is dead?
So should this answer…
Dec
11
answered Using Processing on a server to create images behind the scenes
Dec
11
comment Custom init method in Objective-C, how to avoid recursion?
If you really need a more true subclass you could look into message forwarding and NSProxy. I highly discourage you to do this. If Apple tells you not to subclass it, I wouldn't…
Dec
11
comment Is there a difference between a so called “Variable” and a so called “Pointer”?
That's why some people call it a pointer variable.
Dec
11
revised what is the difference in variable delaration here?
fixed tag; added 8 characters in body
Dec
11
answered What are some good Question/Answer Software Scripts Online (StackExchange Alternatives)