User blizpasta - Stack Overflowmost recent 30 from stackoverflow.com2009-11-28T07:05:07Zhttp://stackoverflow.com/feeds/user/20646http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/170921/to-learn-python-2-then-3-or-3-from-the-start27To learn python 2 then 3, or 3 from the start?blizpasta2008-10-04T19:59:18Z2009-11-24T10:19:04Z
<p>I would like to learn python and currently have access to some good python 2 books. However python 3 is not guaranteed to be backward compatible with python 2. If I were to learn python 2 I have to unlearn and relearn some things when I upgrade to python 3. Also, is there any use/point in learning python 2 or should I just learn python 3 from the start?</p>
http://stackoverflow.com/questions/234075/what-is-your-best-programmer-joke/769663#769663-4Answer by blizpasta for What is your best programmer joke?blizpasta2009-04-20T19:03:43Z2009-04-20T19:03:43Z<p>Q: Why was the first customer at a restaurant served last?</p>
<p>A: They took orders using a stack.</p>
http://stackoverflow.com/questions/361917/how-effective-is-naive-bayesian-filtering-for-preventing-spam/362036#3620361Answer by blizpasta for How effective is naive Bayesian filtering for preventing spam?blizpasta2008-12-12T06:27:12Z2008-12-12T06:27:12Z<p>You're right, naive Bayesian filters are susceptible to <a href="http://en.wikipedia.org/wiki/Bayesian_poisoning" rel="nofollow">Bayesian poisoning</a>.</p>
http://stackoverflow.com/questions/353544/automate-burning-of-100-iso-dvd-images/354126#3541261Answer by blizpasta for Automate burning of 100+ .ISO DVD imagesblizpasta2008-12-09T20:30:05Z2008-12-09T20:30:05Z<p><a href="http://www.imgburn.com/" rel="nofollow">http://www.imgburn.com/</a></p>
<p>"There is an image queue system for when you're burning several images (which you can automatically share between multiple drives if you have more than one)"</p>
http://stackoverflow.com/questions/350861/what-bad-practice-do-you-do-and-why/350959#3509593Answer by blizpasta for What "bad practice" do you do, and why?blizpasta2008-12-08T21:23:59Z2008-12-08T21:23:59Z<p>I use goto to emulate a labeled break in c++.</p>
http://stackoverflow.com/questions/345080/what-should-computer-science-be-called/346020#3460200Answer by blizpasta for What should 'Computer Science' be called?blizpasta2008-12-06T06:43:33Z2008-12-06T06:43:33Z<p>I personally feel that "computer science" is pretty good. The "science" in it lends it the rigor associated with the traditional sciences like mathematics and physics, and allows it to be forked into the pure and applied versions. However, computer science as it is today implies the pure version, while the applied version is actually just software engineering etc.. Innovation in computing comes from both the industry and from the academia, so I feel that it is important that we keep the science word for the academics so that they can remain to feel like stakeholders. If it were renamed informatics, they might feel disenfranchised as merely a department and not a science in its own right. That being said, <em>A rose by any other name would smell as sweet.</em> so it shouldn't really matter.</p>
http://stackoverflow.com/questions/341251/how-has-unit-testing-made-your-life-better/341808#3418080Answer by blizpasta for How has unit testing made your life better ?blizpasta2008-12-04T19:47:12Z2008-12-04T19:47:12Z<p>Good unit tests that provide sufficient coverage can make you sleep better at night.</p>
<p>If you use assertions, you can find out potential bugs which are missed by the unit tests (sometimes it's not good enough perhaps), and you can sleep <strong>even</strong> better at night.</p>
http://stackoverflow.com/questions/341696/explaining-svn-to-non-programmers/341741#3417416Answer by blizpasta for Explaining SVN to non-programmersblizpasta2008-12-04T19:22:44Z2008-12-04T19:22:44Z<p>Basically you can discuss what SVN can do, that it's not just for code, and can be used for any documents in general.</p>
<p>Examples without mentioning code will be useful:</p>
<p>An author writes his book and put a copy of it in a central location. That document is named 1. When he makes a change, he puts a copy of it named 2. The next copy will be named 3 and so on. He can always refer to previous copies if he wants at any point of time as long as he has access to that central location.</p>
<p>Now, the publishing company have assigned two proofreaders to his book. With SVN, the proofreaders are able to correct vocabulary mistakes and correct them and put the corrected copy at the central location. The writer and the proofreaders are able to get the latest copy as well, and they can read the changes made because whenever a new copy is placed, the person involved can write comments about what have been changed.</p>
<p>What if the proofreaders find logical and grammatical mistakes? They cannot simply change it and put a new copy to the central location as they do not know the writer's intention and it could possibly be a unique writing style (aka something intentionally deviating from the norm). They can use a bug tracker software but that's for another post.</p>
http://stackoverflow.com/questions/322585/important-ui-features-that-are-often-left-out/323382#3233820Answer by blizpasta for Important UI Features That Are Often Left Outblizpasta2008-11-27T10:07:48Z2008-11-27T10:07:48Z<p>Cycling through links and fields using the tab button.</p>
http://stackoverflow.com/questions/310282/explaining-race-conditions-to-a-non-technical-audience/310344#31034414Answer by blizpasta for Explaining race conditions to a non-technical audienceblizpasta2008-11-21T21:56:17Z2008-11-21T23:04:54Z<p>Company X has $1,000 in the bank. X pays a rent of $2,000 and received a payment of $10,000 for services rendered to company Y. However, due to a race condition, X is in deficit of $1,000 and is now applying for bankruptcy. =(</p>
<p>You might want to explain how the bank handles company X's account in this way: Bank staff A takes the current value of $1,000 and adds $10,000 to it. Bank staff B takes the current value of $1,000 and subtracts $2,000 from it. Bank staff A updates the value to $11,000. Bank staff B updates the value to -$1,000.</p>
http://stackoverflow.com/questions/309892/when-overriding-equals-in-java-why-does-it-not-work-to-use-a-parameter-other-tha/310165#3101651Answer by blizpasta for When overriding equals in Java, why does it not work to use a parameter other than Object?blizpasta2008-11-21T20:55:25Z2008-11-21T20:55:25Z<p>Notice that the method you are calling is defined in the javadoc for ArrayList<code><E</code>> as</p>
<pre><code>boolean contains(Object o)
Returns true if this list contains the specified element.
</code></pre>
<p>instead of</p>
<pre><code>boolean contains(E o)
Returns true if this list contains the specified element.
</code></pre>
<p>Implementation of ArrayList.java:</p>
<pre><code>private transient Object elementData[];
public boolean contains(Object elem) {
return indexOf(elem) >= 0;
}
public int indexOf(Object elem) {
if (elem == null) {
for (int i = 0; i < size; i++)
if (elementData[i]==null)
return i;
} else {
for (int i = 0; i < size; i++)
if (elem.equals(elementData[i]))
return i;
}
return -1;
}
</code></pre>
<p>It uses the equals method defined in the Object superclass since the equals method is not overridden in ArrayList<code><E</code>>'s implementation.</p>
<p>When overriding Object equals in java, you should override the Object hashCode method as well.</p>
<p>Anyway you might want to try the following code:</p>
<pre><code>class A{
public int content;
A(){
this(0);
}
A(int value){
content = value;
}
public boolean equals(Object obj){
System.out.println("overriding equals method");
return this.content == ((A) obj).content;
}
public boolean equals(A a){
System.out.println("overloading equals method");
return this.content == a.content;
}
public static void main(String[] args){
A x = new A(1);
A y = new A(2);
Object z = new A(1);
System.out.println(x.equals(y));
System.out.println(x.equals(x));
System.out.println(x.equals(z));
//override as z is declared as Object at compile time
//so it will use methods in class Object instead of class A
System.out.println(x.equals((Object) y));
System.out.println(x.equals((Object) x));
}
}
//rant: they didn't teach me these in javaschool and I had to learn it the hard way.
</code></pre>
http://stackoverflow.com/questions/249009/do-you-use-curly-braces-for-additional-scoping15Do you use curly braces for additional scoping?blizpasta2008-10-30T01:29:42Z2008-11-21T03:51:42Z
<p>I mean other than using it when required for functions, classes, if, while, switch, try-catch.</p>
<p>I didn't know that it could be done like <a href="http://stackoverflow.com/questions/241088/what-do-curly-braces-by-themselves-mean-in-java">this until I saw this SO question</a>.</p>
<p>In the above link, Eli mentioned that "They use it to fold up their code in logical sections that don't fall into a function, class, loop, etc. that would usually be folded up."</p>
<p>What other uses are there besides those mentioned? </p>
<p>Is it a good idea to use curly braces to limit the scope of your variables and expand the scope only if required (working on a "need-to-access" basis)? Or is it actually silly? </p>
<p>How about using scopes just so that you can use the same variable names in different scopes but in the same bigger scope? Or is it a better practise to reuse the same variable (if you want to use the same variable name) and save on deallocating and allocating (I think some compilers can optimise on this?)? Or is it better to use different variable names altogether?</p>
http://stackoverflow.com/questions/298987/tricks-to-staying-positive/299432#2994321Answer by blizpasta for Tricks to staying positiveblizpasta2008-11-18T17:15:06Z2008-11-18T17:15:06Z<p>Break things down into manageable tasks. So you can finish each small task and feel happy about it.</p>
http://stackoverflow.com/questions/290806/do-you-try-to-make-your-code-look-pretty/290861#2908610Answer by blizpasta for Do you try to make your code look pretty?blizpasta2008-11-14T17:52:27Z2008-11-14T17:52:27Z<p>I do the numerical comparison thing too as it looks more mathematical to me and it's easier for me to visualise it like a number line.</p>
<p>Some of your idiosyncratic style will be non-optimised though. For example if you were to arrange the cases in a switch statement according to number of statements in a case, you won't be able to optimise it by putting the more likely cases at the top.</p>
<p>I don't do web programming but I guess it's okay to rearrange the css code the way you did as the order in which they appear shouldn't matter? Order of execution matters in non-web programming though, have to be careful about the side effects when rearranging statements.</p>
http://stackoverflow.com/questions/280531/c-pitfalls/281562#2815620Answer by blizpasta for C++ Pitfallsblizpasta2008-11-11T17:25:50Z2008-11-11T17:25:50Z<p>Intention is (x == 10)</p>
<pre><code>if(x = 10){
//do something
}
</code></pre>
<p>I thought I would never make this mistake myself but I actually did it recently.</p>
http://stackoverflow.com/questions/240758/how-do-you-encourage-someone-to-learn-to-use-the-debugger8How do you encourage someone to learn to use the debugger?blizpasta2008-10-27T17:36:27Z2008-11-11T15:56:03Z
<p>We are in college and I want get my projectmate to use the debugger as it will help improve his debugging speed. Despite offering to show him how to use it so that he won't have to learn it by himself, he refuses and to date still uses printlining to debug.</p>
<p>I can understand why he refuses as he's probably afraid of the learning curve (Even though it's actually trivial. Besides computing students cannot be afraid to learn new things). I myself had resisted learning how to use a debugger for as long as I could for the very same reason. The moment I tried to use a debugger for a person project I found how useful it was to a programmer's productivity and have never looked back since.</p>
<p>So how would you go about making someone virtually impervious to you to learn something for his own benefit? Or should I not try too hard to help people like him?</p>
<p>Edit: Just an update for myself. Basically our project is drawing to an end and there are lots of bugs here and there. So he told me that foo("x") doesn't return anything but when I tried it does return what it's expected to return. In the end I make a breakpoint at the offending code and found that the argument in foo(string aString) was actually ""x"" instead of "x". Granted it's an oversight by the person passing him the string, but with the debugger I managed to find out the problem quickly (trying to confirm the assumptions he said) without having to go through all the code. =)</p>
http://stackoverflow.com/questions/275255/whats-the-smallest-device-i-can-program-on/275268#2752681Answer by blizpasta for What's the smallest device I can program on?blizpasta2008-11-08T21:57:34Z2008-11-08T21:57:34Z<p>A <a href="http://en.wikipedia.org/wiki/Netbook" rel="nofollow">netbook</a> would be ideal.</p>
<p>A graphing calculator might be too limited for programming.</p>
http://stackoverflow.com/questions/252257/why-arent-classes-sealed-by-default/252837#2528370Answer by blizpasta for Why aren't classes sealed by default?blizpasta2008-10-31T07:53:40Z2008-10-31T07:53:40Z<p>For the same reason why objects are not private by default</p>
<p>or</p>
<p>to be consistent with the object analogue, which is objects are not private by default</p>
<p>Just guessing, coz at the end of the day it's a language's design decision and what the creators say is the canon material.</p>
http://stackoverflow.com/questions/245791/what-are-some-important-interview-questions-to-ask-prospective-game-testers/248925#2489250Answer by blizpasta for What are some important interview questions to ask prospective game testers?blizpasta2008-10-30T00:35:29Z2008-10-30T00:35:29Z<p>Do you play (test) games to live (make a living) or do you live to play games?</p>
<p>In other words, do you play games outside of testing games for your job?</p>
<p>I'm not sure what is the answer which is preferred. Yes means that person is passionate about games, while no could mean that the person might have innovative ideas not seen through a gamer's eyes.</p>
http://stackoverflow.com/questions/241225/can-someone-who-does-not-like-to-look-at-the-screen-for-extended-periods-of-time0Can someone who does not like to look at the screen for extended periods of time work in the IT industry (as a programmer)?blizpasta2008-10-27T20:08:41Z2008-10-28T00:43:49Z
<p>I admit the person I'm talking about is me. As much as I enjoy programming, I find it kind of like a chore to look at the screen for long periods of time. My eyes become unable to focus properly after sometime. As I'm a student, I do not have as much code to write as a professional programmer does, and sometimes I just write my code on paper and mull over/edit it for sometime before transferring it to the computer.</p>
<p>Before I quit gaming, the allure of games seem to override the feeling of looking at the screen being a chore. Other activities like foruming seem to have the same effect as games, but reading ebooks on screen is a nono to me. Does this mean that I don't really like to code? I can get quite engrossed with coding sometimes.</p>
<p>I am using my laptop (15.4") by the way, and do not use eye drops as well.</p>
<p>In any case, I realised that many other non-IT jobs require one to use stare at the screen for the whole day too.</p>
<p>And yeah, this is a community wiki.</p>
http://stackoverflow.com/questions/175310/how-to-improve-java-knowledge8How to improve java knowledge?blizpasta2008-10-06T17:31:16Z2008-10-24T15:31:00Z
<p>I'm in college. Basically I have already learnt the syntax of java from books and have been programming in java for two years (Not every other day of course, because it's a computer science and not software engineering course). However, I find myself lacking sufficient knowledge of java and feel inadequate.</p>
<p>For example, none of the books taught me that if I override the Object equals method, then I should override the hashCode method as well (if I want the hash containers to work properly). It was only when I couldn't get my program to run as expected and having to debug that I discovered this. I find this unproductive because I felt that it's something that should have been taught, something that should have been known in the first place. I expect that as I do more programming in java I'll run into similar "should have known" kind of problems, so I would just like to pre-empt it by learning more.</p>
<p>Perhaps I have been reading the wrong books, so can you point me to some good java books to read. Or is it the case that books are just to teach you the syntax, while the intricacies of java and the API should just be discovered the hard way. Or I should just read the entire API (granted the API mentions "Note that it is generally necessary to override the hashCode method whenever this method is overridden, so as to maintain the general contract for the hashCode method, which states that equal objects must have equal hash codes.") and I admit that I didn't read it the first time round.</p>
http://stackoverflow.com/questions/230218/why-do-people-have-trouble-learning-recursion/230477#2304772Answer by blizpasta for Why do people have trouble learning recursion?blizpasta2008-10-23T16:41:59Z2008-10-23T16:41:59Z<p>When I first learnt programming I had trouble with recursion too. It probably has to do with it being a new concept, in the sense that there is no "real life" analogue (at least most people I know don't do things in their lives based on recursive algorithms).</p>
<p>What I mean:<br/>
Real life hide-and-seek:<br/></p>
<blockquote>
<p>Close your eyes and count down from a
hundred. Then, open your eyes and try
to find where your friend is hiding.
<br/></p>
</blockquote>
<p>The programming analogue is understood as:</p>
<pre><code>closeEyes();
for(int i = 100; i >= 0; i--);//or using "while" variation
openEyes();
lookForHiddenFriend();
</code></pre>
<p>More often than:</p>
<pre><code>int hideAndSeek(int count){
if(count == 0){
openEyes();
lookForHiddenFriend();
return 0;//yeah, zero!
}else
return hideAndSeek(--count);
}
closeEyes();
hideAndSeek(100);
</code></pre>
<p>Admittedly the example is very contrived and ugly. But the point I want to make is that most people do not naturally think in terms of functions in real life, but rather think in a way that is closer in concept to a while/for loop.</p>
http://stackoverflow.com/questions/220609/what-got-you-started-in-programming/220926#2209260Answer by blizpasta for What got you started in programming?blizpasta2008-10-21T06:07:16Z2008-10-21T06:07:16Z<p>I'm a perfectionist who wants the computer to do my bidding. I have many ideas which needs to be implemented. Hence, programming.</p>
<p>To me, programming is the same as doing things manually, except that it's much faster. I think of it as a form of outsourcing and expression of creativity.</p>
http://stackoverflow.com/questions/211041/do-you-use-javadoc-for-every-method-you-write/215218#2152180Answer by blizpasta for Do you use Javadoc for every method you write?blizpasta2008-10-18T16:22:01Z2008-10-18T16:22:01Z<p>I make it a point to write javadoc comments whenever it is non-trivial, Writing javadoc comments when using an IDE like eclipse or netbeans isn't that troublesome. Besides, when you write a javadoc comment, you are being forced to think about not just what the method does, but what the method does <strong>exactly</strong>, and the assumptions you've made.</p>
<p>Another reason is that once you've understood your code and refactored it, the javadoc allows you to forget about what it does since you can always refer to it. I'm not advocating purposely forgetting what your methods do but it's just that I prefer to remember other things which are more important.</p>
http://stackoverflow.com/questions/213544/what-is-the-most-common-mistake-you-make-while-writing-unit-tests/213583#2135831Answer by blizpasta for What is the most common mistake you make while writing unit tests?blizpasta2008-10-17T19:41:58Z2008-10-17T19:41:58Z<p>Testing using just some random values instead of including testing with equivalence partitioning and boundary value analysis.</p>
http://stackoverflow.com/questions/197376/how-do-you-store-all-the-things-which-youve-learnt-and-information-you-want-to-k3How do you store all the things which you've learnt and information you want to keep?blizpasta2008-10-13T12:21:33Z2008-10-13T13:35:17Z
<p>Granted knowledge is best retained when put into practice, but as programmers I'm sure there's just too much information. Besides annotating your books, what other methods do you use for your own personal knowledge-base so you can have an easily accessible reference?</p>
<p>Do you create your own wiki or use software like <a href="http://groups.google.com/group/wikidpad/web/home" rel="nofollow">wikidpad</a>, or save them as plain text, bookmarks, pdf, web pages etc..? Or do you just treat google/SO as your giant knowledge-base and search only when required?</p>
<p>You may find this similar
<a href="http://stackoverflow.com/questions/10961/have-you-used-a-wiki-in-your-project-or-group">http://stackoverflow.com/questions/10961/have-you-used-a-wiki-in-your-project-or-group</a>, and of course this question can easily relate to non programmers as well.</p>
http://stackoverflow.com/questions/194696/favorite-essay-about-programming/194740#19474014Answer by blizpasta for Favorite Essay about Programmingblizpasta2008-10-11T22:21:30Z2008-10-11T22:37:08Z<p><a href="http://norvig.com/21-days.html" rel="nofollow">Teach Yourself Programming in Ten Years</a></p>
<p>Not exactly about programming but computer science nonetheless:<br/><a href="http://www.cs.cmu.edu/%7ECompThink/papers/Wing06.pdf" rel="nofollow">Computational Thinking</a><br/>
<a href="http://cs.gmu.edu/cne/pjd/PUBS/CACMcols/cacmJul07.pdf" rel="nofollow">Computing is a Natural Science</a></p>
http://stackoverflow.com/questions/190456/what-is-your-favorite-hot-key-in-netbeans/190489#1904891Answer by blizpasta for What is your favorite hot-key in Netbeans?blizpasta2008-10-10T08:10:51Z2008-10-10T08:10:51Z<p>Ctrl + R (Rename)</p>
http://stackoverflow.com/questions/171946/computer-upgrade-cycle/171967#1719670Answer by blizpasta for Computer upgrade cycleblizpasta2008-10-05T13:27:03Z2008-10-05T13:27:03Z<p>I only upgrade when the components are spoilt. After weaning myself from computer games, I find not much need for upgrading hardware. But more ram is always welcomed.</p>
http://stackoverflow.com/questions/159176/what-do-you-consider-the-1st-principles-of-programming/171710#1717101Answer by blizpasta for What do you consider the 1st principle(s) of programming?blizpasta2008-10-05T08:43:29Z2008-10-05T08:43:29Z<p>Besides not reinventing the wheel, you should understand how the wheel was built and what it really does.</p>
http://stackoverflow.com/questions/234075/what-is-your-best-programmer-joke/415898#415898Comment by blizpasta on What is your best programmer joke?blizpasta2009-04-20T18:36:50Z2009-04-20T18:36:50ZThe original quote is "A mathematician is a device for turning coffee into theorems." by Paul Erdős.http://stackoverflow.com/questions/455525/is-the-switch-to-dvorak-worth-it/455581#455581Comment by blizpasta on Is the switch to Dvorak worth it?blizpasta2009-02-26T16:29:23Z2009-02-26T16:29:23Z@jcollum: I just got one. =Dhttp://stackoverflow.com/questions/290806/do-you-try-to-make-your-code-look-pretty/290861#290861Comment by blizpasta on Do you try to make your code look pretty?blizpasta2009-02-26T16:26:05Z2009-02-26T16:26:05ZAh, now I know. Thanks. (:http://stackoverflow.com/questions/366295/is-programming-for-the-elite-or-can-everybody-learn-to-program/366303#366303Comment by blizpasta on Is programming for the elite or can everybody learn to programblizpasta2008-12-14T10:23:31Z2008-12-14T10:23:31ZNitpicky but most logical. I agree.http://stackoverflow.com/questions/357167/what-is-the-origin-of-your-so-username/357206#357206Comment by blizpasta on What is the origin of your SO username?blizpasta2008-12-10T20:01:09Z2008-12-10T20:01:09ZKiwi = New Zealandershttp://stackoverflow.com/questions/345080/what-should-computer-science-be-called/345090#345090Comment by blizpasta on What should 'Computer Science' be called?blizpasta2008-12-06T06:47:52Z2008-12-06T06:47:52Z@jalf: no because maths is used everywhere else like in physics and economics. :Phttp://stackoverflow.com/questions/340762/which-languages-support-tail-recursion-optimization/340961#340961Comment by blizpasta on Which languages support tail recursion optimization?blizpasta2008-12-04T20:01:30Z2008-12-04T20:01:30ZYes there is no such thing as "standard compiler" for some languages. I should have qualified my comment instead of generalizing.http://stackoverflow.com/questions/340762/which-languages-support-tail-recursion-optimization/340961#340961Comment by blizpasta on Which languages support tail recursion optimization?blizpasta2008-12-04T15:29:10Z2008-12-04T15:29:10ZTechnically it isn't a language question but a compiler question. But when we're talking about languages loosely we tend to associate the standard compiler closely with the language. So it's like Java does not support while Haskell supports (qualifier: using their respective standard compilers).http://stackoverflow.com/questions/236635/stagnation-as-a-computer-scientist/236650#236650Comment by blizpasta on Stagnation as a computer scientistblizpasta2008-11-29T17:07:57Z2008-11-29T17:07:57ZYour first paragraph is so true.http://stackoverflow.com/questions/315997/when-is-overengineering-desirable/316012#316012Comment by blizpasta on When is overengineering desirable?blizpasta2008-11-25T02:31:46Z2008-11-25T02:31:46ZActually it should be at least 1.999999 in a million if we assume that the two codes are independent.http://stackoverflow.com/questions/52168/operating-system-features/310320#310320Comment by blizpasta on Operating system featuresblizpasta2008-11-21T22:03:49Z2008-11-21T22:03:49ZIn other words, a computer that can read my mind and does exactly what I want it to do with minimal effort from me. Gosh, I'm lazy.http://stackoverflow.com/questions/305223/jon-skeet-facts/309493#309493Comment by blizpasta on Jon Skeet Facts?blizpasta2008-11-21T21:32:02Z2008-11-21T21:32:02ZIt would be much better if it was the P = NP problem instead.http://stackoverflow.com/questions/303276/suggest-chapters-topics-for-oop-bookComment by blizpasta on Suggest chapters/topics for OOP Bookblizpasta2008-11-19T20:45:40Z2008-11-19T20:45:40ZPerhaps objects and classes can be put together?http://stackoverflow.com/questions/297037/what-tricks-do-you-use-to-get-yourself-in-the-zone/297090#297090Comment by blizpasta on What tricks do you use to get yourself "in the zone"?blizpasta2008-11-18T09:24:01Z2008-11-18T09:24:01ZIt's a necessary condition, but not sufficient I guess.http://stackoverflow.com/questions/240758/how-do-you-encourage-someone-to-learn-to-use-the-debugger/240999#240999Comment by blizpasta on How do you encourage someone to learn to use the debugger?blizpasta2008-11-11T15:59:10Z2008-11-11T15:59:10ZYeah, I thought it was for his own good but after reading the answers in SO, I have decided it would be better if he asked me (or someone else, or learnt it himself) about using the debugger someday (which he probably would).