User Null303 - Stack Overflow most recent 30 from stackoverflow.com 2009-12-07T02:08:42Z http://stackoverflow.com/feeds/user/13787 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1833687/sql-to-update-a-table-only-if-that-table-exists-in-the-database/1833705#1833705 5 Answer by Null303 for SQL to update a table only if that table exists in the database Null303 2009-12-02T15:40:18Z 2009-12-02T15:40:18Z <p>Just run the update statement, if the table didn't exist, it will fail and cause no damage.</p> http://stackoverflow.com/questions/570144/best-practices-for-writing-the-parser/570363#570363 1 Answer by Null303 for Best practices for writing the parser Null303 2009-02-20T16:57:06Z 2009-02-20T16:57:06Z <ul> <li>Choose the right kind of parser, sometimes a Recursive Descendant will be enough, sometimes you should use an LR parser (also, there are many types of LR parsers).</li> <li>If you have a complex grammar, build an Abstract Syntax Tree.</li> <li>Try to identify very well what goes into the lexer, what is part of the syntax and what is a matter of semantics.</li> <li>Try to make the parser the least coupled to the lexer implementation as possible.</li> <li>Provide a good interface to the user so he is agnostic of the parser implementation.</li> </ul> http://stackoverflow.com/questions/567528/does-the-advent-of-multicore-architectures-affect-me-as-a-software-developer/567605#567605 4 Answer by Null303 for Does the advent of MultiCore architectures affect me as a software developer? Null303 2009-02-19T22:47:19Z 2009-02-19T22:47:19Z <p>Herb Sutter wrote about it in 2005: <a href="http://www.gotw.ca/publications/concurrency-ddj.htm" rel="nofollow">The Free Lunch Is Over: A Fundamental Turn Toward Concurrency in Software</a></p> http://stackoverflow.com/questions/503218/why-are-many-languages-case-sensitive/504369#504369 0 Answer by Null303 for Why are many languages case sensitive? Null303 2009-02-02T18:43:13Z 2009-02-02T18:43:13Z <p>At least in the case of C, it might have to do with its "Worse is Better" design.</p> http://stackoverflow.com/questions/469445/last-words-of-a-programmer/469875#469875 73 Answer by Null303 for Last words of a ??? programmer Null303 2009-01-22T16:39:23Z 2009-01-22T16:39:23Z <p>Java people don't die, they wait for the garbage collector to get them :P</p> http://stackoverflow.com/questions/458489/how-do-you-make-really-large-boolean-arrays-using-java/458520#458520 2 Answer by Null303 for How do you make REALLY large boolean arrays using Java? Null303 2009-01-19T17:57:34Z 2009-01-19T18:00:47Z <p>You can use an array of longs, encapsulated in a class that would handle all the operations on the array. Something like your own implementation of BitSet.</p> http://stackoverflow.com/questions/458443/captchas-to-force-user-interaction/458449#458449 1 Answer by Null303 for Captchas to force user interaction? Null303 2009-01-19T17:37:55Z 2009-01-19T17:37:55Z <p>You could use a choice question based on what the user should read.</p> http://stackoverflow.com/questions/448657/whats-the-difference-between-an-object-and-a-class-in-perl/448760#448760 1 Answer by Null303 for What's the difference between an object and a class in Perl? Null303 2009-01-15T22:33:08Z 2009-01-16T16:45:53Z <p>You are an object of class Human</p> <p><em>(Classes in Perl are modules with some special qualities, you should better first understand only the general case).</em></p> http://stackoverflow.com/questions/356638/how-would-you-parse-indentation-python-style 1 How would you parse indentation (python style)? Null303 2008-12-10T16:17:25Z 2008-12-10T18:13:43Z <p>How would you define your parser and lexer rules to parse a language that uses indentation for defining scope.</p> <p>I have already googled and found a clever approach for parsing it by generating INDENT and DEDENT tokens in the lexer.</p> <p>I will go deeper on this problem and post an answer if I come to something interesting, but I would like to see other approaches to the problem.</p> <p>EDIT: As Charlie pointed out, <a href="http://stackoverflow.com/questions/232682/how-would-you-go-about-implementing-off-side-rule">there is already another thread very similar if not the same.</a> Should my post be deleted?</p> http://stackoverflow.com/questions/340282/c-mystery/341321#341321 -3 Answer by Null303 for C++ Mystery Null303 2008-12-04T16:59:03Z 2008-12-04T17:37:43Z <p>This is related to why <code>++++i</code> would be valid.</p> <p>++i is returning a reference, not a value.</p> <p>For the lawyers:</p> <blockquote> <p>5.3.2 Increment and decrement [expr.pre.incr]</p> <p>1 The operand of prefix ++ is modified by adding 1, or set to true if it is bool (this use is deprecated). The operand shall be a modifiable lvalue. The type of the operand shall be an arithmetic type or a pointer to a completely-defined object type. <strong>The result is the updated operand; it is an lvalue</strong>, and it is a bit-field if the operand is a bit-field. If x is not of type bool, the expression ++x is equivalent to x+=1 [ Note: see the discussions of addition (5.7) and assignment operators (5.17) for information on conversions. —end note ]</p> </blockquote> http://stackoverflow.com/questions/230517/when-is-a-problem-too-complex-for-a-regular-expression 15 When is a problem too complex for a regular expression? Null303 2008-10-23T16:55:55Z 2008-11-20T07:29:53Z <p>Please don't answer the obvious, but what are the limit signs that tell us a problem should not be solved using reg exprs.</p> <p>For example: Why is a complete email validation too complex for a regular expression?</p> http://stackoverflow.com/questions/290239/programming-as-a-meaningful-profession/291602#291602 0 Answer by Null303 for Programming as a meaningful profession? Null303 2008-11-14T22:07:26Z 2008-11-14T22:07:26Z <p>Karma Yoga</p> http://stackoverflow.com/questions/290239/programming-as-a-meaningful-profession/291557#291557 1 Answer by Null303 for Programming as a meaningful profession? Null303 2008-11-14T21:49:14Z 2008-11-14T21:49:14Z <p>Programming is a meaningful profession just because this human being is a programmer.</p> <p><em>Think a bit about it before you vote me either up or down.</em></p> http://stackoverflow.com/questions/290779/what-is-more-important-testability-of-code-or-adherence-to-oop-principles/290955#290955 4 Answer by Null303 for What is more important, testability of code, or adherence to OOP principles? Null303 2008-11-14T18:28:46Z 2008-11-14T18:28:46Z <p>Maintainability is more important.</p> <p>Don't miss the point that both, unit testing and OOP have that goal in common.</p> http://stackoverflow.com/questions/288217/forcing-something-to-be-destructed-last-in-c/288338#288338 0 Answer by Null303 for Forcing something to be destructed last in C++ Null303 2008-11-13T21:13:29Z 2008-11-13T21:34:11Z <p>If you can modify the interface of the controllers and the supervisor's destruction code, you can force the controllers to <strong><em>detach</em></strong> from the supervisor when the supervisor is gone.</p> <p>Note that detaching the controller is not destroying it, you should not make any assumptions about who owns that pointer.</p> <p>Edit: A bit of code to make it clearer:</p> <pre><code>//put this inside your supervisors destructor foreach controller in this-&gt;controllers: controller-&gt;detach( this ); </code></pre> <p>And <code>detach</code> should simply clear its reference to the supervisor and return to its unsupervised state or whatever.</p> http://stackoverflow.com/questions/269303/are-anonymous-classes-a-bad-idea/269332#269332 0 Answer by Null303 for Are Anonymous Classes a bad idea? Null303 2008-11-06T16:30:58Z 2008-11-06T16:52:15Z <p>Yes they are.</p> <p>Actually, non static inner classes are dangerous. Especially if they keep a reference to the containing object, it is a very common source of memory leaks because of cyclic references.</p> <p>You can use them, just be very careful.</p> http://stackoverflow.com/questions/268903/how-to-stay-motivated-on-the-job/269018#269018 3 Answer by Null303 for How to stay motivated on the job? Null303 2008-11-06T15:08:11Z 2008-11-06T15:08:11Z <p>First of all, ask yourself what do you want to do in your life.</p> http://stackoverflow.com/questions/266114/setting-up-a-python-web-development-environment-on-osx/266509#266509 1 Answer by Null303 for Setting up a Python web development environment on OSX Null303 2008-11-05T20:23:53Z 2008-11-05T20:23:53Z <p>I've worked with django using only the included server in the manager.py script and have not had any trouble moving to a production environment.</p> <p>If you put your application in a host that does the environment configuration for you (like webfaction) you should not have problems moving from development to production.</p> http://stackoverflow.com/questions/251413/embedded-systems-worst-practices/251494#251494 2 Answer by Null303 for Embedded systems worst practices? Null303 2008-10-30T19:44:37Z 2008-10-30T19:50:35Z <p>Assume endianess will be the same forever.</p> <p>(Extend it to the size of the registers and anything about hardware specifications)</p> <p><em>(Case explanation in the comments).</em></p> http://stackoverflow.com/questions/250984/do-i-really-need-version-control/251005#251005 1 Answer by Null303 for Do I really need version control? Null303 2008-10-30T17:17:52Z 2008-10-30T17:17:52Z <p>Even if you don't need it right now, it is something you will need whenever you work in a team.</p> http://stackoverflow.com/questions/247217/do-you-actively-look-for-a-better-job/247310#247310 2 Answer by Null303 for Do you actively look for a better job? Null303 2008-10-29T15:46:17Z 2008-10-29T15:46:17Z <p>I've changed work about once a year and a half in the last 6 years and noticed that sometimes just reactivating my resume in some job search sites is enough for me to start receiving calls from potential employers.</p> <p>I am in Mexico, so it might be different in other parts of the world.</p> <p>I think you should always be open for opportunities that are sound to you, think of it like a new love relationship and it might be easier to understand.</p> http://stackoverflow.com/questions/243905/smalltalk-and-ioc/244691#244691 2 Answer by Null303 for Smalltalk and IoC Null303 2008-10-28T20:17:28Z 2008-10-28T20:17:28Z <p>Functions are first class citizens in smalltalk, so it is easy to have IoC without a framework.</p> http://stackoverflow.com/questions/243802/memory-allocation-on-windows-c-code/244239#244239 1 Answer by Null303 for Memory allocation on Windows C code Null303 2008-10-28T18:06:47Z 2008-10-28T18:06:47Z <p>You could make a wrapper and leave the option to change the implementation details. You could even compare both options with your code and then decide.</p> http://stackoverflow.com/questions/243967/do-you-consider-this-technique-bad/244035#244035 0 Answer by Null303 for Do you consider this technique "BAD"? Null303 2008-10-28T16:53:57Z 2008-10-28T17:06:10Z <p>I don't see why not to use that, but I would do it like this:</p> <pre><code>#define BEGIN_BLOCK do{ #define SKIP_BLOCK break; #define END_BLOCK }while(false); BEGIN_BLOCK bool isGood = true; .... some code if(!isGood) SKIP_BLOCK .... some more code if(!isGood) SKIP_BLOCK .... some more code END_BLOCK </code></pre> <p>Of course it has the flaw of not working if SKIP_BLOCK called inside a loop. So probably using a function would be better.</p> http://stackoverflow.com/questions/233673/lexical-closures-in-python/233800#233800 2 Answer by Null303 for Lexical closures in Python Null303 2008-10-24T14:36:07Z 2008-10-24T14:52:15Z <p>look at this:</p> <pre><code>for f in flist: print f.func_closure (&lt;cell at 0x00C980B0: int object at 0x009864B4&gt;,) (&lt;cell at 0x00C980B0: int object at 0x009864B4&gt;,) (&lt;cell at 0x00C980B0: int object at 0x009864B4&gt;,) </code></pre> <p>It means they all point to the same i variable instance, which will have a value of 2 once the loop is over.</p> <p>A readable solution:</p> <pre><code>for i in xrange(3): def ffunc(i): def func(x): return x * i return func flist.append(ffunc(i)) </code></pre> http://stackoverflow.com/questions/231051/is-there-a-memory-efficient-replacement-of-java-lang-string/231180#231180 0 Answer by Null303 for Is there a memory efficient replacement of java.lang.String? Null303 2008-10-23T19:45:02Z 2008-10-23T19:45:02Z <p>If you can predict the frequencies of the chars you will be using, you can use some kind of Huffman code implementation, I am thinking of something like this:</p> <pre><code>class HString: String toString(); // Anything necessary to use it in Maps, Collections //and all common string operations. class HStringManager: void setHuffmanTree( Tree hTree ); void setHuffmanTree( String sampleText ); HString create(String str); </code></pre> <p>I hope my code is self explanatory.</p> http://stackoverflow.com/questions/230304/under-what-situations-are-regular-expressions-really-the-best-way-to-solve-the-pr/230339#230339 4 Answer by Null303 for Under what situations are regular expressions really the best way to solve the problem? Null303 2008-10-23T16:06:25Z 2008-10-23T16:06:25Z <p>RexExprs are good for: </p> <ul> <li>Text Format Validations (email, url, numbers)</li> <li>Text searchs/substitution.</li> <li>Mappings (e.g. url pattern to function call)</li> <li>Filtering some texts (related to substitution)</li> <li>Lexical analysis during parsing.</li> </ul> http://stackoverflow.com/questions/226592/is-building-a-linux-from-scratch-system-good-for-learning-about-operating-systems/226641#226641 3 Answer by Null303 for Is building a Linux From Scratch system good for learning about operating systems? Null303 2008-10-22T16:45:51Z 2008-10-22T16:45:51Z <p>I would recommend reading the book Operating Systems: Design and Implementation from Tanenbaum and trying to implement Minix. It is the way most engineers are taught at school.</p> http://stackoverflow.com/questions/149651/the-future-of-web-programming-languages/150184#150184 1 Answer by Null303 for The Future of Web Programming Languages Null303 2008-09-29T19:12:37Z 2008-09-29T19:12:37Z <p>It shouldn't hurt you to learn more languages even if they are not going to be widely used. You can always get new ways of thinking from different kinds of languages.</p> <p>Currently, there is some increasing popularity of functional programming, and dynamic languages are already widely used. You could at least sneak peek some of these languages so you can make decisions on what to use when the time comes.</p> http://stackoverflow.com/questions/149937/creating-non-reverse-engineerable-java-programs/150147#150147 1 Answer by Null303 for Creating non-reverse-engineerable java programs Null303 2008-09-29T19:02:07Z 2008-09-29T19:02:07Z <p>Elie, The user can use other tools to know where your program is connecting to, a simple netstat would do.</p> http://stackoverflow.com/questions/1826159/swapping-two-variable-value-without-using-3rd-variable Comment by Null303 on Swapping two variable value without using 3rd variable Null303 2009-12-03T17:52:49Z 2009-12-03T17:52:49Z It's not a matter of usefulness, it is programming culture. http://stackoverflow.com/questions/1173539/what-scripting-language-should-i-learn-for-file-text-manipulation-tasks/1173564#1173564 Comment by Null303 on What scripting language should I learn for file/text manipulation tasks? Null303 2009-07-23T20:11:59Z 2009-07-23T20:11:59Z Then apply Hofstadter's law. http://stackoverflow.com/questions/502492/i-was-recently-asked-for-my-stackoverflow-rep-score-in-a-job-interview-is-that-a/502519#502519 Comment by Null303 on I was recently asked for my stackoverflow rep score in a job interview. Is that appropriate? Null303 2009-02-03T22:28:46Z 2009-02-03T22:28:46Z You are assuming too much about the intentions of the interviewer, perhaps a low reputation is better, perhaps it will not even be taken into account. http://stackoverflow.com/questions/503218/why-are-many-languages-case-sensitive/504369#504369 Comment by Null303 on Why are many languages case sensitive? Null303 2009-02-03T17:05:19Z 2009-02-03T17:05:19Z It is easier to implement, just that. http://stackoverflow.com/questions/36901/what-does-and-do-for-python-parameters/54165#54165 Comment by Null303 on What does ** and * do for python parameters? Null303 2009-01-27T22:54:14Z 2009-01-27T22:54:14Z The django public api for db, uses this a lot and is easy to use, but it helps a lot that it is well documented. http://stackoverflow.com/questions/458443/captchas-to-force-user-interaction/458449#458449 Comment by Null303 on Captchas to force user interaction? Null303 2009-01-19T17:48:52Z 2009-01-19T17:48:52Z LOL Sometimes I forget I am a user too ;) http://stackoverflow.com/questions/382623/what-are-your-3-most-important-programming-patterns-and-why/382696#382696 Comment by Null303 on What are your 3 most important programming patterns, and why? Null303 2008-12-23T17:07:29Z 2008-12-23T17:07:29Z IOC is actually behind many patterns, it is more a technique than a pattern. http://stackoverflow.com/questions/382623/what-are-your-3-most-important-programming-patterns-and-why/382646#382646 Comment by Null303 on What are your 3 most important programming patterns, and why? Null303 2008-12-23T17:05:23Z 2008-12-23T17:05:23Z IOC is just a concept, not a pattern. It is actually mentioned as the root of many patterns in the GOF book. http://stackoverflow.com/questions/128434/what-are-community-wiki-posts-on-stack-overflow/289223#289223 Comment by Null303 on What are "Community Wiki" posts on Stack Overflow? Null303 2008-12-11T17:57:41Z 2008-12-11T17:57:41Z Think of it as a necessary evil if you want. If it was not for community wiki mode, it would be too easy to get too much &quot;subjective&quot; reputation.&quot; http://stackoverflow.com/questions/340282/c-mystery/341321#341321 Comment by Null303 on C++ Mystery Null303 2008-12-05T15:34:49Z 2008-12-05T15:34:49Z Oh! now I get it, thanks. http://stackoverflow.com/questions/339640/why-was-the-c-mascot-andy-retired/339694#339694 Comment by Null303 on Why was the C# mascot 'Andy' retired? Null303 2008-12-04T18:28:15Z 2008-12-04T18:28:15Z So Andy is PC from the Mac ads? http://stackoverflow.com/questions/340282/c-mystery/340299#340299 Comment by Null303 on C++ Mystery Null303 2008-12-04T18:09:26Z 2008-12-04T18:09:26Z Actually, this is right. There is no other way to do it for this particular case. http://stackoverflow.com/questions/340282/c-mystery/341246#341246 Comment by Null303 on C++ Mystery Null303 2008-12-04T17:56:34Z 2008-12-04T17:56:34Z It is undefined behavior, but in this case the expression has only one possible result, which is 14. Do you program by logic or by law? http://stackoverflow.com/questions/340282/c-mystery/341321#341321 Comment by Null303 on C++ Mystery Null303 2008-12-04T17:50:08Z 2008-12-04T17:50:08Z Even if it is undefined, returning 14 is the logical behavior. http://stackoverflow.com/questions/340282/c-mystery Comment by Null303 on C++ Mystery Null303 2008-12-04T17:21:11Z 2008-12-04T17:21:11Z Think deeper and you will see why it is right. It has nothing to do with an undefined behavior.