| bio | website | |
|---|---|---|
| location | ||
| age | 22 | |
| visits | member for | 1 year, 10 months |
| seen | May 9 at 6:32 | |
| stats | profile views | 27 |
|
Oct 2 |
comment |
Is it possible for a good programmer to have never used version control? it's possible, but a good programmer can learn it in 30-60 minutes. |
|
Sep 14 |
comment |
Why are people laughing at visual basic? when you get a job, you will cry if you see VB |
|
Sep 4 |
comment |
Dealing with Fanboys Relevant IMO |
|
Aug 7 |
comment |
Why the question “give five things you hate about C#” is so difficult to answer during an interview? if I hate something in a language, that does not mean I hate the language. This question <del>can</del>must be answered in a positive way too. Why do we need HTML5 if we don't hate anything in HTML4? :) |
|
Jun 12 |
comment |
I'm doing 90% maintenance and 10% development, is this normal? @JohnNevermore that made my day a little better(tip: don't imagine that code in VB.NET, oh wait it's too late x_x) |
|
May 14 |
comment |
websites that show real world scenarios for OOP beginners so that they can implement them why don't you search books/teachers instead of websites? |
|
Apr 12 |
comment |
Techniques for getting off the ground in any language I lately make a brick-breaker game (methods, objects, arrays, timers, loops, I/O) or you can try a tetris or snake |
|
Mar 19 |
comment |
how do you remember programming related stuff? @ClaudiuConstantin yeah...I know that it's a bad habit, but I'm sure everyone has been there, also I'm glad to see other Romanians on this SE :) |
|
Mar 19 |
comment |
how do you remember programming related stuff? my setup: 1.google 2.bookmark page 3.forget about the bookmark 4.goto->1. |
|
Feb 22 |
comment |
What is Pseudocode?if (question.IsAnswered) then
you.UnderstandPseudoCode <- true |
|
Feb 21 |
comment |
Why “programmer” is defined as designers and “developer” as creator? @SpencerRathbun I don't know why, but after I read your comment, I looked at the address bar on my browser, so I think a lot of people disagree with you. You said "they think", "they" who? |
|
Dec 15 |
comment |
Worst practices in developing database applications @ChrisF oh, okay, that makes sense, I just asked because the answers could be useful, and I saw similar (not closed) question on SO |
|
Dec 13 |
comment |
Worst practices in developing database applications @ChrisF the OP asks about practices that we should avoid using. Why is it not constructive? |
|
Nov 23 |
comment |
Why do some languages recommend using spaces rather than tabs? @PaulNathan I agree, except for this :D |
|
Nov 16 |
comment |
How to search the web for programming related solutions? This happened with the + sign. |
|
Nov 1 |
comment |
How to spend less time on debugging? @uhbif19 debugging is not useful? |
|
Oct 25 |
comment |
How do you organize an ASP.NET MVC 3 application with potentially hundreds of views but with only a few entry points? @WyattBarnett I think by entity he means a class, and by ViewModel he means a class only needed for displaying the page(View). |
|
Oct 21 |
comment |
What is the purpose of arrays in C, when pointers could have done the job? Why have 0xAB when you can achieve the same thing with 171? |
|
Sep 29 |
comment |
Unicode clarification @ImranOmarBukhsh 3 bytes because UTF-8 is a multibyte encoding. See this if you want to know how that works. |
|
Sep 26 |
comment |
Why are zero-based arrays the norm? I like zero-based arrays because of the first bit in a byte is 2^0, not 2^1. This helps me sometimes :) |