User Null303 - Stack Overflowmost recent 30 from stackoverflow.com2009-12-07T02:08:42Zhttp://stackoverflow.com/feeds/user/13787http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1833687/sql-to-update-a-table-only-if-that-table-exists-in-the-database/1833705#18337055Answer by Null303 for SQL to update a table only if that table exists in the databaseNull3032009-12-02T15:40:18Z2009-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#5703631Answer by Null303 for Best practices for writing the parserNull3032009-02-20T16:57:06Z2009-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#5676054Answer by Null303 for Does the advent of MultiCore architectures affect me as a software developer?Null3032009-02-19T22:47:19Z2009-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#5043690Answer by Null303 for Why are many languages case sensitive?Null3032009-02-02T18:43:13Z2009-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#46987573Answer by Null303 for Last words of a ??? programmerNull3032009-01-22T16:39:23Z2009-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#4585202Answer by Null303 for How do you make REALLY large boolean arrays using Java?Null3032009-01-19T17:57:34Z2009-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#4584491Answer by Null303 for Captchas to force user interaction?Null3032009-01-19T17:37:55Z2009-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#4487601Answer by Null303 for What's the difference between an object and a class in Perl?Null3032009-01-15T22:33:08Z2009-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-style1How would you parse indentation (python style)?Null3032008-12-10T16:17:25Z2008-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-3Answer by Null303 for C++ MysteryNull3032008-12-04T16:59:03Z2008-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-expression15When is a problem too complex for a regular expression?Null3032008-10-23T16:55:55Z2008-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#2916020Answer by Null303 for Programming as a meaningful profession?Null3032008-11-14T22:07:26Z2008-11-14T22:07:26Z<p>Karma Yoga</p>
http://stackoverflow.com/questions/290239/programming-as-a-meaningful-profession/291557#2915571Answer by Null303 for Programming as a meaningful profession?Null3032008-11-14T21:49:14Z2008-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#2909554Answer by Null303 for What is more important, testability of code, or adherence to OOP principles?Null3032008-11-14T18:28:46Z2008-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#2883380Answer by Null303 for Forcing something to be destructed last in C++Null3032008-11-13T21:13:29Z2008-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->controllers:
controller->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#2693320Answer by Null303 for Are Anonymous Classes a bad idea?Null3032008-11-06T16:30:58Z2008-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#2690183Answer by Null303 for How to stay motivated on the job?Null3032008-11-06T15:08:11Z2008-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#2665091Answer by Null303 for Setting up a Python web development environment on OSXNull3032008-11-05T20:23:53Z2008-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#2514942Answer by Null303 for Embedded systems worst practices?Null3032008-10-30T19:44:37Z2008-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#2510051Answer by Null303 for Do I really need version control?Null3032008-10-30T17:17:52Z2008-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#2473102Answer by Null303 for Do you actively look for a better job?Null3032008-10-29T15:46:17Z2008-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#2446912Answer by Null303 for Smalltalk and IoCNull3032008-10-28T20:17:28Z2008-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#2442391Answer by Null303 for Memory allocation on Windows C codeNull3032008-10-28T18:06:47Z2008-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#2440350Answer by Null303 for Do you consider this technique "BAD"?Null3032008-10-28T16:53:57Z2008-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#2338002Answer by Null303 for Lexical closures in PythonNull3032008-10-24T14:36:07Z2008-10-24T14:52:15Z<p>look at this:</p>
<pre><code>for f in flist:
print f.func_closure
(<cell at 0x00C980B0: int object at 0x009864B4>,)
(<cell at 0x00C980B0: int object at 0x009864B4>,)
(<cell at 0x00C980B0: int object at 0x009864B4>,)
</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#2311800Answer by Null303 for Is there a memory efficient replacement of java.lang.String?Null3032008-10-23T19:45:02Z2008-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#2303394Answer by Null303 for Under what situations are regular expressions really the best way to solve the problem?Null3032008-10-23T16:06:25Z2008-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#2266413Answer by Null303 for Is building a Linux From Scratch system good for learning about operating systems?Null3032008-10-22T16:45:51Z2008-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#1501841Answer by Null303 for The Future of Web Programming LanguagesNull3032008-09-29T19:12:37Z2008-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#1501471Answer by Null303 for Creating non-reverse-engineerable java programsNull3032008-09-29T19:02:07Z2008-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-variableComment by Null303 on Swapping two variable value without using 3rd variableNull3032009-12-03T17:52:49Z2009-12-03T17:52:49ZIt'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#1173564Comment by Null303 on What scripting language should I learn for file/text manipulation tasks?Null3032009-07-23T20:11:59Z2009-07-23T20:11:59ZThen 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#502519Comment by Null303 on I was recently asked for my stackoverflow rep score in a job interview. Is that appropriate?Null3032009-02-03T22:28:46Z2009-02-03T22:28:46ZYou 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#504369Comment by Null303 on Why are many languages case sensitive?Null3032009-02-03T17:05:19Z2009-02-03T17:05:19ZIt is easier to implement, just that.http://stackoverflow.com/questions/36901/what-does-and-do-for-python-parameters/54165#54165Comment by Null303 on What does ** and * do for python parameters?Null3032009-01-27T22:54:14Z2009-01-27T22:54:14ZThe 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#458449Comment by Null303 on Captchas to force user interaction?Null3032009-01-19T17:48:52Z2009-01-19T17:48:52ZLOL Sometimes I forget I am a user too ;)http://stackoverflow.com/questions/382623/what-are-your-3-most-important-programming-patterns-and-why/382696#382696Comment by Null303 on What are your 3 most important programming patterns, and why?Null3032008-12-23T17:07:29Z2008-12-23T17:07:29ZIOC 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#382646Comment by Null303 on What are your 3 most important programming patterns, and why?Null3032008-12-23T17:05:23Z2008-12-23T17:05:23ZIOC 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#289223Comment by Null303 on What are "Community Wiki" posts on Stack Overflow?Null3032008-12-11T17:57:41Z2008-12-11T17:57:41ZThink 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 "subjective" reputation."http://stackoverflow.com/questions/340282/c-mystery/341321#341321Comment by Null303 on C++ MysteryNull3032008-12-05T15:34:49Z2008-12-05T15:34:49ZOh! now I get it, thanks.http://stackoverflow.com/questions/339640/why-was-the-c-mascot-andy-retired/339694#339694Comment by Null303 on Why was the C# mascot 'Andy' retired?Null3032008-12-04T18:28:15Z2008-12-04T18:28:15ZSo Andy is PC from the Mac ads?http://stackoverflow.com/questions/340282/c-mystery/340299#340299Comment by Null303 on C++ MysteryNull3032008-12-04T18:09:26Z2008-12-04T18:09:26ZActually, this is right. There is no other way to do it for this particular case.http://stackoverflow.com/questions/340282/c-mystery/341246#341246Comment by Null303 on C++ MysteryNull3032008-12-04T17:56:34Z2008-12-04T17:56:34ZIt 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#341321Comment by Null303 on C++ MysteryNull3032008-12-04T17:50:08Z2008-12-04T17:50:08ZEven if it is undefined, returning 14 is the logical behavior.http://stackoverflow.com/questions/340282/c-mysteryComment by Null303 on C++ MysteryNull3032008-12-04T17:21:11Z2008-12-04T17:21:11ZThink deeper and you will see why it is right. It has nothing to do with an undefined behavior.