77,674 reputation
104698
bio website apaczai.elte.hu/~13akga
location Budapest
age 18
visits member for 2 years, 6 months
seen 19 mins ago
stats profile views 15,240

Firslty, something nice not related to programming.

Stack Overflow-milestones:

I blog in Hungarian.

I tend to write tremendously long, complete and detailed answers, like this complete Lisp parser.

You think you know C? Check out this quiz and see the solutions if you're lost.


Hungarian student, enthusiastic amateur iOS, Linux and microcontroller (AVR in particular) developer/programmer. Does web development as well. Recently a bit hopeless and bitter, feeling like have missed life by 6 years. Loves playing the piano (especially Liszt) and quite good at it. Occasionally writes about technical stuff on the blog of his beloved colleagues.

Preferred languages:

  • C, Objective-C
  • HTML, CSS, JavaScript
  • PHP, SQL
  • English, French

Advice to iOS developers: if you consider tagging your question with 'xcode', you probably shouldn't.

My Twitter account: http://twitter.com/H2CO3_iOS/

My opensource works: http://github.com/H2CO3

My StackOverflow Careers 2.0 profile: http://careers.stackoverflow.com/h2co3

My page on The Cydia Developer Directory: http://modmyi.com/cydiadevs/arpad-goretity-h2co3/

Oh, you got here? Nice. You will probably like this parody of StackOverflow tags, based on my experience so far.


43m
comment Generating a 4–8 digit random number
You could, but why would you ever do that?
53m
comment K&R possible bug in polish calculator
@CarlNorum Thanks. (Maybe spite? I suspect I have some "enemies" here :P )
7h
comment Applying an IF STATEMENT to my word generator
I bet it doesn't say "expand expression" but "expected expression". Don't you find it a bit weird that I know better the error message without having read it than you supposedly (but not actually) having read it?
7h
comment porting iOS project for mac platform
@Marko I always am, practically.
7h
comment porting iOS project for mac platform
Or you can just target the iOS Simulator and boom your iPhone app runs on OS X...
7h
comment In which scenario would “unroll-loops” not making result code faster?
When there are no loops in your code?
7h
comment porting iOS project for mac platform
But there's AppKit and documentation, and that's more than enough.
7h
comment K&R possible bug in polish calculator
Wow. You just did a manual stack trace.
7h
answered K&R possible bug in polish calculator
7h
comment K&R possible bug in polish calculator
Nah. It's just that the stack grows upwards, i. e. val[0] is the bottom (and the top too if there's only one element). And at the time you print the result, val[1] is invalid, it has already been popped.
7h
comment C++ binary file manipulation tutorial
Don't network yet if you can't google C++ file manipulation. Instead, google C++ file manipulation. (Whoops, this was almost a quine.)
7h
comment Random Segmentation Faults
@CarlNorum It says "too much code".
8h
comment C++ dynamic allocation
@BenVoigt Thanks, will take a look at it.
8h
comment C++ dynamic allocation
@BenVoigt OK, I think I sart getting your point.
8h
comment C++ dynamic allocation
@BenVoigt Even if you asked for less of them and you don't know how many of them you actually have?
8h
comment C++ dynamic allocation
@BenVoigt Thanks for the suggestion, but I don't see where it is incorrect. How Integer *int = new Integer(); int[1] = foo; is not UB?
8h
comment C++ dynamic allocation
@milleniumbug Well, thinking a bit more about it, if I wasn't allowed to use the STL, I'd just use the C++ standard library instead.
8h
comment C++ dynamic allocation
@milleniumbug You appear to be much more patient than me, I'd just silently fall back to C :D
8h
comment C++ dynamic allocation
@Radu Not allowed? Homework or stupid boss or embedded platform?
8h
awarded  Nice Answer