User Angel - Stack Overflowmost recent 30 from stackoverflow.com2009-12-20T03:34:04Zhttp://stackoverflow.com/feeds/user/23285http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/393223/tools-for-a-lone-developer-setup/393310#3933102Answer by Angel for Tools for a lone developer setup?Angel2008-12-26T00:10:03Z2008-12-26T00:10:03Z<p>I'm my last job we were fans of <a href="http://trac.edgewall.org/" rel="nofollow">Trac</a>. It has a bug tracker and a wiki for documentation fully integrated, you can reference bugs by id in the wiki system and wiki pages in the bug system. It runs on various Linux distributions, Mac OS X, FreeBSD, NetBSD and MS Windows.</p>
http://stackoverflow.com/questions/373212/close-an-easygui-python-script-with-the-standard-close-button/373267#3732670Answer by Angel for Close an easygui Python script with the standard 'close' buttonAngel2008-12-17T00:24:29Z2008-12-17T00:24:29Z<p>I don't know right now, but have you tried something like this?:</p>
<pre><code>root.protocol('WM_DELETE_WINDOW', self.quit)
</code></pre>
<p>or </p>
<pre><code>root.protocol('WM_DELETE_WINDOW', self.destroy)
</code></pre>
<p>I haven't tried, but google something like <code>"Tkinter protocol WM_DELETE_WINDOW"</code></p>
http://stackoverflow.com/questions/369284/how-bad-is-it-to-take-a-year-off/369485#3694853Answer by Angel for How bad is it to take a year off?Angel2008-12-15T19:43:19Z2008-12-15T19:43:19Z<p>I'm doing it right now. Two weeks ago I left my company because I was fed up. I've been working there for 7 years. First of all, as Ben Blank said, you have to think of financial sustainability. My intention is not to take a year off, but to reroute my career as a developer because I became sort of a consultant, which to me it means the kind of people who doensn't develope anymore and disrespect developers. At least that's what I see when I look around and I don't want to be that way. I like developing, I hate wasting time doing useless piles of documents.</p>
<p>Now I will have time to selfteach new things I want to try and then find a job about what I like. I think it's a good idea to stop and think for a while. Not everybody realizes that. It is important to take charge of one's career.</p>
http://stackoverflow.com/questions/369065/offline-source-control/369421#3694210Answer by Angel for Offline source controlAngel2008-12-15T19:22:45Z2008-12-15T19:22:45Z<p>My advice is trying <a href="http://bazaar-vcs.org/" rel="nofollow">Bazaar</a> or <a href="http://www.selenic.com/mercurial/wiki/" rel="nofollow">Mercurial</a>. Git needs Cygwin for running on Windows, so it doesn't seem natural to me for your environment. A friend of mine recommended me Mercurial, which is available for Win, Mac, Linux. Bazaar is being promoted heavily now. It is simple to use and it allows you to have a centralized or a distributed repository. The deal-breaker will be the Windows integration tools you can find, and I think Mercurial is the winner of these two ones.</p>
<p>Suerte!</p>
http://stackoverflow.com/questions/351373/creating-an-eclipse-distribution/351452#3514521Answer by Angel for Creating an Eclipse "Distribution"?Angel2008-12-09T00:44:54Z2008-12-09T00:44:54Z<p>I think that what you are looking for is Yoxos On Demand:</p>
<p><a href="http://ondemand.yoxos.com/geteclipse/start" rel="nofollow">http://ondemand.yoxos.com/geteclipse/start</a></p>
http://stackoverflow.com/questions/305378/get-list-of-tables-db-schema-dump-etc-in-python-sqlite3/306783#3067831Answer by Angel for get list of tables, db schema, dump etc in Python sqlite3Angel2008-11-20T20:38:33Z2008-11-20T20:38:33Z<p>Check out <a href="http://svn.python.org/projects/python/trunk/Lib/sqlite3/dump.py" rel="nofollow">here</a> for dump. It seems there is a dump function in the library sqlite3.</p>
http://stackoverflow.com/questions/302270/what-is-the-best-book-for-learning-about-algorithms/306741#3067412Answer by Angel for What is the best book for learning about Algorithms?Angel2008-11-20T20:22:53Z2008-11-20T20:22:53Z<p>How about a classic? <a href="http://rads.stackoverflow.com/amzn/click/0130224189" rel="nofollow">Algorithms + Data Structures = Programs</a> by Niklaus Wirth.</p>
http://stackoverflow.com/questions/306313/python-is-operator-behaves-unexpectedly-with-integers/306603#3066038Answer by Angel for Python "is" operator behaves unexpectedly with integersAngel2008-11-20T19:50:11Z2008-11-20T20:13:40Z<p>As you can check <a href="http://svn.python.org/projects/python/trunk/Objects/intobject.c" rel="nofollow">here</a> Python caches small ints for eficiency. Everytime you create a reference to a small int, you are referring the cached small int, not a new object. 257 is not an small int, so it is calculated as a different object.</p>
<p>It is better to use "==" for that purpose.</p>
http://stackoverflow.com/questions/306460/how-do-you-take-criticism/306570#3065701Answer by Angel for How Do You Take Criticism?Angel2008-11-20T19:35:57Z2008-11-20T19:35:57Z<p>There is a lot of forms of criticism, but if it is ground on a solid reasoning, it is always welcome. Then it has 2 results: You learn something new (new point of view, more knowledge, etc) and also you learn to respect the person that criticezes you.</p>
http://stackoverflow.com/questions/306316/determine-if-two-rectangles-overlap-each-other/306518#3065180Answer by Angel for Determine if two rectangles overlap each other?Angel2008-11-20T19:17:12Z2008-11-20T19:17:12Z<p>Asuming the points for all rectangles are always set in this order:</p>
<pre><code>P1----P2
| |
P3----P4
</code></pre>
<p>then, the problem is just only to check if the point P1 of the second rectangle falls into the first rectangle, that is:</p>
<pre><code>def Intersects (Rect1, Rect2)
return (Rect1.P1.x < Rect2.P1.x < Rect1.P2.x) and (Rect1.P1.y > Rect2.P1.y > Rect1.P3.y)
</code></pre>
<p>You can get an idea.</p>
http://stackoverflow.com/questions/53757/which-compiles-to-faster-code-n-3-or-nn2/304032#3040321Answer by Angel for Which compiles to faster code: "n * 3" or "n+(n*2)"?Angel2008-11-20T01:00:08Z2008-11-20T01:00:08Z<p>It doesn't care. I think that there are more important things to optimize. How much time have you invested thinking and writing that question instead of coding and testing by yourself? </p>
<p>:-)</p>
http://stackoverflow.com/questions/303832/should-a-method-ignore-illegal-input-or-raise-an-exception/304021#3040213Answer by Angel for Should a method ignore illegal input or raise an exception?Angel2008-11-20T00:55:03Z2008-11-20T00:55:03Z<p>I think that it <strong>depends on the context or layer of abstraction</strong> you are working on. The most important thing is to be consistent. If you are throwing exceptions in that level, go ahead and throw your exception too. If not, check how the layer is behaving and do the same. </p>
http://stackoverflow.com/questions/303018/your-personal-successful-coding-practices/304015#3040153Answer by Angel for Your personal, successful coding practices.Angel2008-11-20T00:51:33Z2008-11-20T00:51:33Z<p><strong>Consistent object naming and well documented source code</strong>. It's not a problem of anybody else reading your code after some months, that person might be you and sometimes you don't know why you did something that way or how something works.</p>
http://stackoverflow.com/questions/303876/what-is-your-best-programming-experience/304006#3040069Answer by Angel for What is your best programming experience?Angel2008-11-20T00:43:29Z2008-11-20T00:43:29Z<p>When some friends and I won a computer game programming contest organized by PC World maganize in Spain. We gave the floppy to the organization 1 hour before the deadline and the next month the magazine was published with all the games people submitted. Everybody interested could play all the games and vote for the game they liked the most. 2 months after that, the organization called us and said we were the winners.</p>
<p>But the most important point wasn't winning the contest. There was no Internet available for the people at home, but we received a lot of postal mail asking us for more levels of the game, greeting us and telling how much they liked the game. That was the best part.</p>
http://stackoverflow.com/questions/223897/defining-moment-or-event-when-you-knew-programming-was-for-you/303972#3039720Answer by Angel for Defining moment (or event) when you knew programming was for you.Angel2008-11-20T00:30:54Z2008-11-20T00:30:54Z<p>I was 13 and a friend of mine told me about a ZX Spectrum, so we went to a mall to check it out and they were showing a game. There were some Atari games already, and PacMan and Space Invaders. But when I saw that there were also games for computers (I think it was Manic Miner the first game I saw) I thought "Man, I want to play it but <strong>I want to know how to make a thing like that</strong>". Getting to know how anybody could program a videogame was more important to me that the possibility to play it. And I was conscious of it in that precise moment.</p>
http://stackoverflow.com/questions/305378/get-list-of-tables-db-schema-dump-etc-in-python-sqlite3/306783#306783Comment by Angel on get list of tables, db schema, dump etc in Python sqlite3Angel2008-11-20T20:47:16Z2008-11-20T20:47:16ZI'm trying:
import sqlite3
con = sqlite3.connect("test.db")
con.dump()
It fails... I keep checking