User Eigir - Stack Overflow most recent 30 from stackoverflow.com 2009-11-27T23:42:36Z http://stackoverflow.com/feeds/user/37007 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/81584/what-ide-to-use-for-python/673239#673239 2 Answer by Eigir for What IDE to use for Python Eigir 2009-03-23T12:41:49Z 2009-03-23T12:41:49Z <p>It is not easy to recommend an IDE for python, since they all have their strong and weak points.</p> <p>But here is the two I use, and why:</p> <p><strong>WingIDE</strong>. This is my preferred IDE for larger projects, and the most important reason is its debugging capabilities. No other IDE I have tried have ever come close to WingIDE in that sense. But for that, I have to sacrifice a few things, like re-factoring... and money (I use the commercial version).</p> <p><strong>PyDev with Eclipse</strong>. I have just started to use this one, and love the fact that it has re-factoring. It also has a much better code-completion than WingIDE. On the negative side: I find it to be too complex. I'm struggling with the svn integration, how the projects are done, and that I'm not able to configure it with my favorite low-contrast color scheme.</p> <p>A few years back, Emacs was my favorite (for programming, reading email and usenet new). Today, I prefer a perfect IDE... of which we have none... :-)</p> <p>PS: I suggest an addition to the Acronyms: REF - Refactoring.</p> http://stackoverflow.com/questions/304769/how-to-recognize-a-good-programmer/304789#304789 10 Answer by Eigir for How to recognize a good programmer? Eigir 2008-11-20T09:40:15Z 2008-11-20T09:40:15Z <p>To recognize a good programmer, you <em>have to be</em> a good programmer. That means you have to know programming very well to see through the stuff that is said and done in the interview, and you have to know what questions to ask. </p> <p>I have seen candidates given the wrong answer at the interview, but their explanation have shown that they knew the subject (and therefore could easily get the right answer by searching the net). To see that, you have to know the subject you are asking question about very well. </p> <p>Another thing is to avoid questions about details that could easily be googled. Those question only shows how good the candidate is to remember things, not if he or she really have the knowledge and understanding you are looking for.</p> <p>My recommendation is to get help from someone that knows a great deal of programming, and have good people skills, to help out with the interviews.</p> <p>Edit: I also wrote a comment about interviews <a href="http://stackoverflow.com/questions/194543/for-interviews-how-do-you-gauge-whether-the-candidate-would-be-a-good-coworker#285594">here</a>.</p> http://stackoverflow.com/questions/293954/should-employees-be-tested-after-completing-technical-training/294055#294055 1 Answer by Eigir for Should employees be tested after completing technical training? Eigir 2008-11-16T16:21:06Z 2008-11-16T16:21:06Z <p>I would not recommend testing, but instead let those taking technical training hold an internal training session for their co-worker where they focus on the highlights from the training they received themselves. </p> <p>That may lead to them focusing more when they receive the training (not showing up drunk) and already there try to find good points they have to take back to their co-workers.</p> <p>Another benefit is that the whole team learn something when one from the team is sent away for the training. </p> http://stackoverflow.com/questions/292797/overnormalization/292850#292850 0 Answer by Eigir for Overnormalization Eigir 2008-11-15T18:06:44Z 2008-11-15T18:14:19Z <p>My take on this:</p> <p>Always normalize as much as you are able to do. I usually go crazy on normalization, and try to design something that could handle every thinkable future extensions. What I end up with is a database design that is extremely flexible... and impossible to implement.</p> <p>Then the real job starts: De-normalization. Here you solve what you know would be problematic to implement and/or would slow the queries down because of too many joins.</p> <p>This way you know what you scarify for make the design usable.</p> <p>Edit: Documentations! I forgot to mention that documenting the de-normalization is very important. It is extremely helpful when you take over a project to know the reason behind the choices.</p> http://stackoverflow.com/questions/289914/executing-shell-command-from-mysql/289943#289943 0 Answer by Eigir for Executing shell command from MySQL Eigir 2008-11-14T12:38:31Z 2008-11-14T12:38:31Z <p>According to <a href="http://forums.mysql.com/read.php?10,198595,198899#msg-198899" rel="nofollow">this post</a> at the forums.mysql.com, the solution is to use the <a href="http://forge.mysql.com/wiki/MySQL_Proxy" rel="nofollow">MySQL_Proxy</a>. </p> http://stackoverflow.com/questions/289502/did-you-ever-get-an-unexpected-answer-during-interview/289532#289532 1 Answer by Eigir for Did you ever get an unexpected answer during interview? Eigir 2008-11-14T08:54:47Z 2008-11-14T11:06:02Z <p>Not any questions, but I was once told that I had to hold a presentation about the company after he had given me information about it. Made me really pay attention to what he told me about the job and organization (I got the job).</p> <p>I have also been doing a lot of interviews and hired several of my co-worker, something I wrote about for this question:</p> <p><a href="http://stackoverflow.com/questions/194543/for-interviews-how-do-you-gauge-whether-the-candidate-would-be-a-good-coworker#285594">http://stackoverflow.com/questions/194543/for-interviews-how-do-you-gauge-whether-the-candidate-would-be-a-good-coworker#285594</a></p> http://stackoverflow.com/questions/289645/example-packets/289776#289776 0 Answer by Eigir for Example packets Eigir 2008-11-14T10:59:16Z 2008-11-14T10:59:16Z <p>If you can't use well tested libraries and have to write everything yourself, there is no way around actually stiffing, analyzing and understanding the details of the packets yourself. </p> <p>Also keep in mind that different implementations may yield different results. That is how fingerprinting is done, by examining how the packet is formed paired up with knowledge on how the different implementations generates them.</p> <p>As Chad says in a reply here, wireshark is the tool to use, and I want to add that you should analyze packets from more than one system/configuration. </p> http://stackoverflow.com/questions/285775/how-to-deal-with-sql-column-names-that-look-like-sql-keywords/285913#285913 0 Answer by Eigir for How to deal with SQL column names that look like SQL keywords? Eigir 2008-11-13T00:21:26Z 2008-11-13T00:21:26Z <p>Your question seems to be well answered here, but I just want to add one more comment to this subject.</p> <p>Those designing the database should be well aware of the reserved keywords and avoid using them. If you discover someone using it, inform them about it (in a polite way). The keyword here is <em>reserved</em> word.</p> <p>More information:</p> <blockquote> <p>"Reserved keywords should not be used as object names. Databases upgraded from earlier versions of SQL Server may contain identifiers that include words not reserved in the earlier version, but that are reserved words for the current version of SQL Server. You can refer to the object by using delimited identifiers until the name can be changed." <a href="http://msdn.microsoft.com/en-us/library/ms176027.aspx" rel="nofollow">http://msdn.microsoft.com/en-us/library/ms176027.aspx</a></p> </blockquote> <p>and</p> <blockquote> <p>"If your database does contain names that match reserved keywords, you must use delimited identifiers when you refer to those objects. For more information, see Identifiers (DMX)." <a href="http://msdn.microsoft.com/en-us/library/ms132178.aspx" rel="nofollow">http://msdn.microsoft.com/en-us/library/ms132178.aspx</a></p> </blockquote> http://stackoverflow.com/questions/194543/for-interviews-how-do-you-gauge-whether-the-candidate-would-be-a-good-coworker/285594#285594 2 Answer by Eigir for For interviews, how do you gauge whether the candidate would be a good coworker? Eigir 2008-11-12T22:20:16Z 2008-11-12T22:20:16Z <p>I have been doing a lot of interviews and hired several of my co-workers. The things I am looking for are: Basic technical knowledge, humor and communication skills.</p> <p>We never expect to find someone who are experts, and always plans with a long period of both internal and external training. But the basic knowledge has to be there. Since knowledge of network protocols are important to us, we almost always as the candidate to explain a three way handshake, the difference between TCP and UDP and what protocols are involved in a HTTP GET request (all the layers). They don't have to give a 100% correct answer, but they have to show us that they know the basics.</p> <p>Humor is important. The work environment can be both stressful and frustrating at times, so being able to relax and have fun is important. Nothing is gained by running around waving their hands in the air while screaming. :) One question we used to use a while back was: "Unfortunately there are not many girls working for us... are you willing to change sex?". The reaction reveal if their sense of humor is compatible with ours. :)</p> <p>We also pay close attention to how they communicate with us (in our native language) and we always do a part of the interview in english.</p> <p>From time to time we also do a "stress test". That is, we give them a scenario and ask what they would do in that situation. Depending on the answer(s) we add information that indirectly indicate that their response was wrong. Their answers here are less important than their reaction: Do they stick to their original answer even when it seems to be wrong, do they try to get more information about the scenario or the worst kind: Do they start arguing?</p> <p>We try to avoid question that could be easily googled, like details about parameters to programming functions or command line commands. If they need it, they can google it. Or ask a co-worker. :)</p> <p>So far, we have a great working environment with enthusiastic and self-going people... and we have a lot of fun.</p> http://stackoverflow.com/questions/285289/exit-codes-in-python/285451#285451 3 Answer by Eigir for exit codes in python Eigir 2008-11-12T21:31:23Z 2008-11-12T21:31:23Z <p>Quote from <a href="http://www.wingware.com/psupport/python-manual/2.6/library/sys.html" rel="nofollow">http://www.wingware.com/psupport/python-manual/2.6/library/sys.html</a> (about sys.exit())</p> <blockquote> <p>"The optional argument arg can be an integer giving the exit status (defaulting to zero), or another type of object. If it is an integer, zero is considered “successful termination” and any nonzero value is considered “abnormal termination” by shells and the like. Most systems require it to be in the range 0-127, and produce undefined results otherwise. Some systems have a convention for assigning specific meanings to specific exit codes, but these are generally underdeveloped; Unix programs generally use 2 for command line syntax errors and 1 for all other kind of errors."</p> </blockquote> <p>One example where exit codes are used are in shell scripts. In bash you can check the special variable $? for the last exit status:</p> <pre><code>me@mini:~$ echo mike@mini:~$ echo $? 0 me@mini:~$ eccho -bash: eccho: command not found me@mini:~$ echo $? 127 </code></pre> <p>Personally I try to use the exit codes I find in /usr/include/asm-generic/errno.h (on a linux system), but I don't know if this is the right thing to do.</p> http://stackoverflow.com/questions/208193/why-should-i-use-an-ide/285204#285204 2 Answer by Eigir for Why should I use an IDE? Eigir 2008-11-12T20:21:04Z 2008-11-12T20:44:07Z <p>I have used Emacs as my primary environment for both development and mail/news for about 10 year (1994-2004). I discovered the power of IDEs when I forced myself to learn Java in 2004, and to my surprise that I actually liked the IDE (IntelliJ).</p> <p>I will not go into specific reasons since a lot of them have already been mentioned here -- just remember that the different people love different features. Me and a colleague used the same IDE, both of us used just a fraction of the features available, and we disliked each others way of using the IDE (but we both liked the IDE itself).</p> <p>But there is one advantage with IDEs over Emacs/Vim related environments I want to focus on: You spend less time installing/configuring the features you want.</p> <p>With WingIDE (for python) I'm ready to start developing 15-20 minutes after installation. No idea how many hours I would need to get the features I use up and running with Emacs/Vim. :)</p> http://stackoverflow.com/questions/284662/how-do-you-normalize-a-file-path-in-bash/284690#284690 -3 Answer by Eigir for how do you normalize a file path in bash? Eigir 2008-11-12T17:28:30Z 2008-11-12T17:28:30Z <p>One way to do it with sed:</p> <pre><code>echo "/foo/bar/jalla" | sed -e 's/^\(\/[^\/]*\).*$/\1/' </code></pre> http://stackoverflow.com/questions/673119/detaching-a-process-from-terminal-entirely/673140#673140 Comment by Eigir on detaching a process from terminal, entirely Eigir 2009-03-23T12:08:52Z 2009-03-23T12:08:52Z &quot;disown&quot; don't seem to be an internal bash command (not available on my machine, and I use bash). &quot;nohup&quot;, as Ben suggested, might be a much better (and standard) way of doing this. http://stackoverflow.com/questions/673016/bash-how-to-do-a-variable-expansion-within-an-arithmetic-expression Comment by Eigir on Bash: How to do a variable expansion within an arithmetic expression? Eigir 2009-03-23T11:27:33Z 2009-03-23T11:27:33Z That script works without any errors here (and I copy/pasted it from your question): $ WEEKDAY=$(date +'%u') $ echo $WEEKDAY 1 $ DAYS_TO_WEDNESDAY=$((3-$WEEKDAY)) $ echo $DAYS_TO_WEDNESDAY 2 http://stackoverflow.com/questions/353148/making-python-default-to-another-version-installed-on-a-shared-host/353200#353200 Comment by Eigir on Making Python default to another version installed on a shared host. Eigir 2008-12-09T15:49:59Z 2008-12-09T15:49:59Z Hehe... I was just about to post the exact same solution. You was 5 sec faster than me. :-) http://stackoverflow.com/questions/102714/what-was-your-first-home-computer/102821#102821 Comment by Eigir on What was your first home computer? Eigir 2008-12-09T15:37:25Z 2008-12-09T15:37:25Z Ah! I borrowed one of these whan I was 14 years old. It had one floppy drive and one 300 baud modem. My mother asked me why I connected the &quot;thing&quot; to the phone, and my excuse was that it used power from it. Was a sad day for me when the phone bill came... :-) http://stackoverflow.com/questions/285289/exit-codes-in-python/285451#285451 Comment by Eigir on exit codes in python Eigir 2008-11-20T11:10:33Z 2008-11-20T11:10:33Z From another post I found this link: <a href="http://tldp.org/LDP/abs/html/exitcodes.html" rel="nofollow">tldp.org/LDP/abs/html/exitcodes.html</a> Might be usefull. :) http://stackoverflow.com/questions/304769/how-to-recognize-a-good-programmer/304789#304789 Comment by Eigir on How to recognize a good programmer? Eigir 2008-11-20T10:06:38Z 2008-11-20T10:06:38Z Gius: If you are lucky, you find programmers who understands that humans are biological computers, and therefore interested in how we work/think. Those have often developed good people skills too, since they are interested in improving themselves in that area too. http://stackoverflow.com/questions/304769/how-to-recognize-a-good-programmer/304796#304796 Comment by Eigir on How to recognize a good programmer? Eigir 2008-11-20T09:48:42Z 2008-11-20T09:48:42Z I like the idea of actually giving them a coding task (can be done before the interview) and then use the code as a subject at the interview. Make them explain why they choose the different solutions and so on... http://stackoverflow.com/questions/292797/overnormalization/292807#292807 Comment by Eigir on Overnormalization Eigir 2008-11-16T16:35:29Z 2008-11-16T16:35:29Z A very nice statement vfilby. It summarizes my comment below in one clear and simple sentence. :) http://stackoverflow.com/questions/292797/overnormalization/292850#292850 Comment by Eigir on Overnormalization Eigir 2008-11-16T16:29:31Z 2008-11-16T16:29:31Z I understand what you mean, but I believe that the design of the DBMS is the most fundamental part of a project. Mistakes done on that level are the most difficult ones to correct later, since a redesign of the database has a high chance of breaking large parts of the code.