User e-satis - Stack Overflow most recent 30 from stackoverflow.com 2009-12-05T03:33:41Z http://stackoverflow.com/feeds/user/9951 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/473109/one-big-mysql-db-or-a-thousand-little-sqlite-databases 7 One big MySQL DB or a thousand little SQLite databases? e-satis 2009-01-23T14:38:51Z 2009-12-04T12:15:08Z <p>Hi all,</p> <p>I am working on a Web based organisation tool. I am not aiming the same market as the wonderful Basecamp, but let's say the way users and data interact look like the same. </p> <p>I will have to deal with user customisation, file uploads and graphical tweaks. There is a fora for each account as well. And I'd like to provide a way to backup easily each account.</p> <p>I have been thinking how to create a reasonable architecture and have been trained to use beautifully normalized data in a single (yet distributed if needed) MySQL DB. Recently I have been wondering : is it possible to think about using one SQLITE DB to store the data for each account and only use MYSQL for the general web site management ?</p> <p><strong>The pro :</strong></p> <ul> <li>backing up is straightforward : set version, zip, upload.</li> <li>don't bother if each account use a massive fora : the mess is in one file for every one of them.</li> <li>SQLITE is lightening fast, no expensive connection time...</li> <li>Table scheme is much simplier : no need to make any distinction between account every times</li> </ul> <p><strong>The cons :</strong></p> <ul> <li>don't know if it's scalable</li> <li>don't know if the hard drive will keep up</li> <li>don't know if there is a way for SQLITE to not be stored in RAM since it would be quickly a disaster</li> <li>lots of dir and subdirs : will this be ok ?</li> <li>maintenance issue : upgrading the live site means upgrading all the db one by one</li> <li>dev issue : setting a dev / pre prod / prod env will be quite hard</li> <li>commom data will still require using mysql, so we would end end with 2 DB connections for each page, arg</li> </ul> <p>More cons that pros, still, it makes me wonder (zepplin style).</p> <p>What do you say ?</p> http://stackoverflow.com/questions/473109/one-big-mysql-db-or-a-thousand-little-sqlite-databases/473134#473134 3 Answer by e-satis for One big MySQL DB or a thousand little SQLite databases? e-satis 2009-01-23T14:46:23Z 2009-12-04T12:15:08Z <p>I gave it more thoughts, and I see more problems :</p> <ul> <li>If I want to use a common area for all the forum, I am smoked</li> <li>If I want to search trough all the web sites, it will be apocalyptic</li> <li>If I want stats, God save my soul</li> </ul> <p>This was a bad idea.</p> <p>Anyway, writing it on SO forced me to think seriously about it. Better to have a clear mind before starting.</p> <p>If one day, somebody is as foolish as me, hope he'll hit the page, so it can help him to reconsider</p> <p>Love this site (even if it's ASP :-p) : quickest way to help yourself, while still helping others.</p> http://stackoverflow.com/questions/1826824/os-kill-not-raising-an-oserror-however-i-do-not-see-the-given-pid-running/1826935#1826935 1 Answer by e-satis for os.kill not raising an OSError, however I do not see the given pid running e-satis 2009-12-01T15:31:14Z 2009-12-01T15:31:14Z <p>Try installing htop (sudo apt-get install htop), it sometimes displays process that ps doesn't.</p> http://stackoverflow.com/questions/1815613/what-next-generation-low-level-language-is-the-best-bet-to-migrate-the-code-base 8 What next generation low level language is the best bet to migrate the code base ? e-satis 2009-11-29T14:02:39Z 2009-12-01T12:25:55Z <p>Let's say you have a company running a lot of C/C++, and you want to start planning migration to new technologies so you don't end up like COBOL companies 15 years ago.</p> <p>For now, C/C++ runs more than fine and there is plenty dev on the market for it.</p> <p>But you want to start thinking about it now, because given the huge running code base and the data sensitivity, you feel it can take 5-10 years to move to the next step without overloading the budget and the dev teams. </p> <p>You have heard about <a href="http://en.wikipedia.org/wiki/D%5F%28programming%5Flanguage%29" rel="nofollow">D</a>, starting to be quite mature, and <a href="http://en.wikipedia.org/wiki/Go%5F%28programming%5Flanguage%29" rel="nofollow">Go</a>, promising to be quite popular.</p> <p>What would be your choice and why?</p> http://stackoverflow.com/questions/1394076/how-to-fix-containing-working-copy-admin-area-is-missing-in-svn 2 How to fix "containing working copy admin area is missing" in SVN ? e-satis 2009-09-08T13:36:31Z 2009-12-01T10:44:03Z <p>I deleted manually a directory I just added, offline, in my repository. I can't restore the directory.</p> <p>Any attempt to do an update or a commit will fail with : </p> <pre><code>"blabla/.svn" containing working copy admin area is missing. </code></pre> <p>I understand why, but is there anyway to fix this.</p> <p>I don't want to checkout the entire repo and add my changes to it manually, it would take hours.</p> http://stackoverflow.com/questions/791070/what-tools-to-automatically-inline-css-style-to-create-email-html-code/1809009#1809009 1 Answer by e-satis for What tools to automatically inline CSS style to create email HTML code ? e-satis 2009-11-27T14:11:04Z 2009-11-30T14:36:50Z <p>EDIT: I ended up writing such a script myself : <a href="http://www.e-vidence.net/?p=360" rel="nofollow">Inline2Mail</a>.</p> <p><a href="http://github.com/MadRabbit/frontcompiler" rel="nofollow">Front compiler</a> does something like that but it implies javascript. Finally you have a <a href="http://www.peterbe.com/plog/premailer.py" rel="nofollow">Python</a> and a <a href="http://code.google.com/p/premailer/source/browse/trunk/bin/premailer.rb?r=87" rel="nofollow">Ruby</a> script to do it.</p> http://stackoverflow.com/questions/1815528/why-cant-i-sort-this-list/1815552#1815552 8 Answer by e-satis for Why can't I sort this list? e-satis 2009-11-29T13:27:22Z 2009-11-29T14:04:12Z <p>Use the <code>.sort</code> method for in place sorting:</p> <pre><code>statlist = [('abc',5,1), ('bzs',66,1), ... ] statlist.sort(key=lambda x: int(x[1])) </code></pre> <p>If you do want to use <code>sorted</code>, then reassign the variable:</p> <pre><code>statlist = [('abc',5,1), ('bzs',66,1), ... ] statlist = sorted(statlist, key=lambda x: int(x[1])) </code></pre> <p>For descending sort, use <code>reverse</code>:</p> <pre><code>statlist = [('abc',5,1), ('bzs',66,1), ... ] statlist = sorted(statlist, key=lambda x: int(x[1]), reverse=True) </code></pre> <p>Then, you'd better use <code>itemgetter</code> instead of a <code>lambda</code> :</p> <pre><code>import operator statlist = [('abc',5,1), ('bzs',66,1), ... ] statlist = sorted(statlist, key=operator.itemgetter(1), reverse=True) </code></pre> http://stackoverflow.com/questions/1815516/programming-language-with-native-code-support-no-framework-i-write-the-framewor/1815588#1815588 1 Answer by e-satis for Programming language with native code support, No framework (I write the framework) e-satis 2009-11-29T13:48:25Z 2009-11-29T13:48:25Z <p>Since we don't know what you want to do, I don't know what are the chances we success. Therefor, what about a language where you have to set the probability of your statement to fail :</p> <p>Meet <a href="http://99-bottles-of-beer.net/language-goto++-976.html" rel="nofollow">GOTO++</a>.</p> <p>Don't say "thanks you", it's on me.</p> http://stackoverflow.com/questions/1813394/why-should-i-use-wsgi 2 Why should I use WSGI ? e-satis 2009-11-28T18:54:51Z 2009-11-28T19:21:36Z <p>Been using mod_python for a while, I read more and more articles about how good WSGI is, without really understanding why.</p> <p>So why should I switch to it? What are the benefits? Is it hard, and is the learning curve worth it?</p> http://stackoverflow.com/questions/1813165/php-multithreaded-php-web-services/1813345#1813345 0 Answer by e-satis for PHP: Multithreaded PHP / Web Services? e-satis 2009-11-28T18:41:51Z 2009-11-28T18:41:51Z <p>You can follow Brent Baisley advice for a simple use case.</p> <p>If you want to build a robuts solution, then you need to :</p> <ul> <li>set up a representation of the actions in a table in database that will be your process queue;</li> <li>set up a script that pop this queue and process your action;</li> <li>set up a cron daemon that run this script every x.</li> </ul> <p>This way you can have 1000 PHP scripts running, using your OS parallelism capabilities and not hanging when ebay is taking to to respond.</p> <p>The real advantage of this system is that you can fully control the firepower you throw at your task by adjusting :</p> <ul> <li>the number of request one PHP script does;</li> <li>the order / number / type / priority of the action in the queue;</li> <li>the number or scripts the cron daemon runs.</li> </ul> http://stackoverflow.com/questions/1813290/how-to-stream-the-contents-of-a-file-live-to-a-browser/1813310#1813310 0 Answer by e-satis for How to stream the contents of a file live to a browser e-satis 2009-11-28T18:32:55Z 2009-11-28T18:32:55Z <p>The best way to do it is to use AJAX to pull the file content every x seconds, giving the illusion of real time.</p> <p>If you do want real time, you can use an XMPP server, but from what I can see, the first solution is far sufficient and does't require a lot of work.</p> http://stackoverflow.com/questions/1811940/i-want-to-develop-a-framework-in-python-for-desktop-based-applications-how-shoul/1813171#1813171 0 Answer by e-satis for I want to develop a framework in Python for desktop based applications. How should I go about it? e-satis 2009-11-28T17:38:24Z 2009-11-28T17:38:24Z <p>Well the best way to start is to look at the source code of the framework the other answers are talking about.</p> <p>First, try to use them all to build the same application with the functionalities you expect from a framework. Them, look at how it works under the hood.</p> <p>Secondly, build your framework, starting by writing your first widgets, then notice the problems with your current architecture, and re factor. Start again, until you have something stable and usable.</p> <p>Eventually, find out this was nice as training experience, but useless as a contribution to the software communities since you will never reach out the qualities of existing tools.</p> <p>Then give up and try to code your own MMORPG.</p> http://stackoverflow.com/questions/1808832/inline-css-javascript-into-a-html-file/1808966#1808966 1 Answer by e-satis for Inline CSS/Javascript into a HTML file e-satis 2009-11-27T14:04:39Z 2009-11-27T20:27:18Z <p><strong>EDIT : I wrote a little Python script for fun. It seems to work pretty well :</strong></p> <p><a href="http://www.e-vidence.net/?p=338" rel="nofollow">Inline2Mail</a></p> <p>Or you can still try with :</p> <p><a href="http://github.com/MadRabbit/frontcompiler" rel="nofollow">Front compiler</a> does something like that but it implies javascript. You have an online solution as well, with <a href="http://code.dunae.ca/premailer.web/" rel="nofollow">premailer</a>. Finally you have a <a href="http://www.peterbe.com/plog/premailer.py" rel="nofollow">Python</a> and a <a href="http://code.google.com/p/premailer/source/browse/trunk/bin/premailer.rb?r=87" rel="nofollow">Ruby</a> script to do it.</p> http://stackoverflow.com/questions/1801307/sqlite-and-python-floats/1806172#1806172 0 Answer by e-satis for Sqlite, and Python floats e-satis 2009-11-26T23:51:24Z 2009-11-26T23:51:24Z <p>Use <a href="http://docs.python.org/library/decimal.html" rel="nofollow">Decimal</a> to manipulate your figures, then use <a href="http://docs.python.org/library/pickle.html" rel="nofollow">pickle</a> to save it and load it from SQLite as text, since it doesn't handle numeric types.</p> <p>Finaly, use <a href="http://docs.python.org/library/unittest.html" rel="nofollow">unitest</a> and <a href="http://docs.python.org/library/doctest.html" rel="nofollow">doctest</a>, for financial operations, you want to ensure all the code does what it is suppose to do in any circonstances. You can't fix bugs on the way like with, let's say, a social network...</p> http://stackoverflow.com/questions/1806138/how-would-i-do-this-in-php/1806146#1806146 0 Answer by e-satis for How would I do this in php? e-satis 2009-11-26T23:43:04Z 2009-11-26T23:43:04Z <p>You don't, you use a <a href="http://techportal.ibuildings.com/2009/02/16/getting-started-with-memcached/" rel="nofollow">unified method</a> using PDO.</p> http://stackoverflow.com/questions/1803710/python-can-you-make-this-eq-easy-to-understand/1803908#1803908 3 Answer by e-satis for Python: Can you make this __eq__ easy to understand? e-satis 2009-11-26T14:16:35Z 2009-11-26T15:17:56Z <p><strong>Since it's about to make it easy to understand, not short or very fast :</strong></p> <pre><code>class Test(object): def __init__(self): self.metainfo = ["foo", "bar"] # adding a docstring helps a lot # adding a doctest even more : you have an example and a unit test # at the same time ! (so I know this snippet works :-)) def __eq__(self, other): """ This method check instances equality and returns True if both of the instances have the same attributs with the same values. However, the check is performed only on the attributs whose name are listed in self.metainfo. E.G : &gt;&gt;&gt; t1 = Test() &gt;&gt;&gt; t2 = Test() &gt;&gt;&gt; print t1 == t2 True &gt;&gt;&gt; t1.foo = True &gt;&gt;&gt; print t1 == t2 False &gt;&gt;&gt; t2.foo = True &gt;&gt;&gt; t2.bar = 1 &gt;&gt;&gt; print t1 == t2 False &gt;&gt;&gt; t1.bar = 1 &gt;&gt;&gt; print t1 == t2 True &gt;&gt;&gt; t1.new_value = "test" &gt;&gt;&gt; print t1 == t2 True &gt;&gt;&gt; t1.metainfo.append("new_value") &gt;&gt;&gt; print t1 == t2 False """ # Then, let's keep the code simple. After all, you are just # comparing lists : self_metainfo_val = [getattr(self, info, Ellipsis) for info in self.metainfo] other_metainfo_val = [getattr(other, info, Ellipsis) for info in self.metainfo] return self_metainfo_val == other_metainfo_val </code></pre> http://stackoverflow.com/questions/1799484/when-should-and-shouldnt-you-break-away-from-oop-for-speed-performance/1799611#1799611 2 Answer by e-satis for When should and shouldn't you break away from OOP for speed/performance? e-satis 2009-11-25T20:03:31Z 2009-11-25T20:03:31Z <p>Most of the time, you are not supposed to optimize before speed matters, <strong>but this time you should.</strong></p> <p>The main issue here is not speed, but battery.</p> <p>Now, Google indeed tell use to avoid getters and setters but only for an internal use, API should still expose only getters and setters. You should has well avoid object creation, better empty / clear one and reuse it if you can. And by all mean, avoid creating too many activities, view inflations are the most expensive process of all, with wireless connexion.</p> <p><strong>That said, you must be smart about it</strong>. You can't follow these advices all the time, your code would quickly become a mess, and we don't write Java to feel like coding in Fortran.</p> <p>A good balance is to first create a clean / standard code that works nicely on the emulator. Then, when it works great, choose ressource intensives parts, most of the times loops, where you reduce this. <strong>But do it before shipping your app on the android market.</strong> To many apps kill android phones already, mine don't stand a day even starting the morning with a full battery.</p> http://stackoverflow.com/questions/1792360/what-are-the-limits-of-python/1793767#1793767 20 Answer by e-satis for What are the limits of Python? e-satis 2009-11-24T23:45:23Z 2009-11-25T08:24:37Z <p>Some Python limits :</p> <p><strong>- Python is slow.</strong> It can be improved in many ways (see other answers) but the bare bone cPython is 100 slower that C/C++. </p> <p><strong>- Python is opened to anything.</strong> It's really hard to protect / obfuscate / limit Python code. </p> <p><strong>- Python is not hype.</strong> Unlike Ruby, there is no "cool wave" around Python, and it's still much harder to find a experienced Python coder, than, let's say, a Java or a PHP pro.</p> <p><strong>- After using Python, a lot of languages seems to be a pain to use.</strong> You'd think it's good, but believe me, not always. When you have to go Javascript after a Python project, your eyes are in tears for at least 3 days. Really hard to get started.</p> <p><strong>- It's harder to find web hosting than for popular solutions</strong>, such as PHP.</p> <p><strong>- As a dynamic language, you don't have the very handy refactoring tools</strong> you could get with Java and Eclipse or C# and VS.</p> <p><strong>- For the same reason, you can't rely on type checking as a safety net.</strong> This is why pythonistas tend to follow best practice and write unit tests more often than others.</p> <p><strike><strong>- It seems I just can't find an IDE with a decent code completion</strong>. PyDev, Gedit, Komodo, SPE, etc. just don't do it as good as it could be.</strike></p> <p><em>I just ran into <a href="http://code.google.com/p/ulipad/" rel="nofollow">ulipad</a> this morning : works great under Ubuntu and Windows, includes debuger, shell integration, autoindent, code folding, automatic syntax checking, unit test integration, TextMate-like snippets and <strong>a decent code completion</strong>. And it's sooooo fast. It's a young and perfectible (sometimes buggy) project and I know this is not the place to write this, but I've but searching that for years, so screw it :-)</em></p> <p><strong>- The best docs are still in English only.</strong> Some people don't deal well with it.</p> <p><strong>- You have to get use to the syntax.</strong> Not only you get spaces and line breaks instead of bracets, but you can forget about long lambdas, --i, and ternary operation (before 2.5).</p> <p>Now, to me, these are not reasons to not learn a tool that will make you produce more while having more fun. But maybe it's just me :-)</p> <p>Honestly, given that :</p> <ul> <li>C++ much harder to learn;</li> <li>You can do pretty much any thing you want with Python;</li> <li>You will get quicker result with Python in your projects.</li> </ul> <p>Unless you have professional issues involving C++, you'd better learn Python first, it's more motivating. You still can learn C++ later, it's a useful language for system programming, embedded devices and such.</p> <p>Don't try to learn both at the same times, multitasking rarely ends well.</p> http://stackoverflow.com/questions/213798/would-python-make-a-good-substitute-for-the-windows-command-line-batch-scripts/216285#216285 4 Answer by e-satis for Would python make a good substitute for the windows command line/batch scripts? e-satis 2008-10-19T11:14:49Z 2009-11-25T00:17:48Z <h2>Summury</h2> <p><strong>Windows</strong> : no need to think, use Python. <strong>Unix</strong> : quick or run-it-once scripts are for bash, serious and/or long life time scripts are for Python.</p> <h2>The big talk</h2> <p>In a windows env, Python is definitely the best choice since cmd is crappy and PowerShell has not really settled yet. What's more Python can run on several platform so it's a better investment. Finally, Python has a huge set of library so you will almost never hit the "god-I-can't-do-that" wall. Untrue with cmd and PowerShell.</p> <p>In a Linux env, this is a bit different. A lot of one liners are shorter, faster, more efficient and often more readable in pure bash. But if you know your quick and dirty script is going to stay around for a while or will need to be improved, go for Python since it's far easier to maintain and extend and <a href="http://www.google.fr/url?sa=t&amp;source=web&amp;ct=res&amp;cd=2&amp;url=http%3A%2F%2Fwww.dabeaz.com%2Fgenerators%2FGenerators.pdf&amp;ei=yRn7SJDYCIbS0QXFvq2JDw&amp;usg=AFQjCNE6b1w4feELQFUppm2-GFCzYyd2UQ&amp;sig2=nUjS8CM2Pd77W%5FHXUq4tRw" rel="nofollow">you will be able to do most of the task you can do with GNU tools with the standard library</a>. And if you can't, you can still call the command line from a Python script.</p> <p>And of course you can call python from the shell using -c option :</p> <pre><code>python -c "for line in open('/etc/fstab') : print line" </code></pre> <p>Some more literatur about Python used for sysadmin tasks :</p> <ul> <li><p><a href="http://www.ibm.com/developerworks/aix/library/au-python/" rel="nofollow">the IBM lab point of view</a></p></li> <li><p><a href="http://www.unixreview.com/documents/s=9083/sam0401d/" rel="nofollow">a nice example to compare bash and python to script report</a></p></li> <li><p><a href="http://www.samag.com/documents/s=8964/sam0312a/0312a.htm" rel="nofollow">the basics</a></p></li> <li><p><a href="http://rads.stackoverflow.com/amzn/click/0596515820" rel="nofollow">the must-have book</a></p></li> </ul> http://stackoverflow.com/questions/1011431/python-things-one-must-avoid/1321075#1321075 18 Answer by e-satis for Python - Things one MUST avoid e-satis 2009-08-24T08:17:25Z 2009-11-24T23:54:35Z <p><strong>Using index to loop over a sequence</strong></p> <p>Don't :</p> <pre><code>for i in range(10) : print tab[i] </code></pre> <p>Do :</p> <pre><code>for elem in tab : print elem </code></pre> <p><em>For</em> will automate most iteration operation for you.</p> <p><strong>Use "==" to check against <em>True</em> or <em>False</em></strong> </p> <p>Don't :</p> <pre><code>if (var == True) : # do something if (var != True) : # do something if (var == False) : # do something if (var == None) : # do something </code></pre> <p>Do :</p> <pre><code>if var : # do something if not var : # do something if var is None : # do something </code></pre> <p>Any object has a boolean value. For built-in types : False, {}, [], "" and 0 are considered False. The rest is True. "Is" let you check for identity, and since None is a Singleton, you should use it.</p> <p><strong>Do not check if you can, do it and handle the error</strong></p> <p>Pythonistas usually say "It's easier to ask for forgiveness than permission".</p> <p>Don't :</p> <pre><code>if os.path.isfile(file_path) : file = open(file_path) else : # do something </code></pre> <p>Do :</p> <pre><code>try : file = open(file_path) except : # do something </code></pre> <p>Or even better with python 3 :</p> <pre><code>with open(file_path) as file : </code></pre> <p><strong>Do not check against type</strong> </p> <p>Python is dynamically typed, therefore checking for type makes you lose flexibility. Instead, use duck typing by checking behavior. E.G, you expect a string in a function, then use str() to convert any object in a string. You expect a list, use list() to convert any iterable in a list.</p> <p>Don't :</p> <pre><code>def foo(name) : if isinstance(name, str) : print name.lower() def bar(listing) : if isinstance(listing, list) : listing.append("test") </code></pre> <p>Do :</p> <pre><code>def foo(name) : print str(name).lower() def bar(listing) : list(listing).append("test") </code></pre> <p>Using the last way, foo will accept any object. Bar will accept strings, tuples, sets, lists and much more. Cheap DRY :-)</p> <p><strong>Don't mix spaces and tabs</strong></p> <p>Just don't. You would cry.</p> <p><strong>Use <em>object</em> as first parent</strong></p> <p>This is tricky, but it will bite you as your program grows. There are old and new classes in Python. The old ones are, well, old. They lack some features, and can have awkward behavior with inheritance. To be usable, any of your class must be of the "new style". To do so, make it inherit from "object" :</p> <p>Don't :</p> <pre><code>class Father : pass class Child(Father) : pass </code></pre> <p>Do :</p> <pre><code>class Father(object) : pass class Child(Father) : pass </code></pre> http://stackoverflow.com/questions/1792602/what-is-the-fool-proof-way-to-convert-some-string-utf-8-or-else-to-a-simple-asc/1793458#1793458 1 Answer by e-satis for What is the fool proof way to convert some string (utf-8 or else) to a simple ASCII string in python e-satis 2009-11-24T22:42:26Z 2009-11-24T23:03:10Z <p>I'd try to normalize the string then encode it. What about :</p> <pre><code>import unicodedata s = u"éèêàùçÇ" print unicodedata.normalize('NFKD',s).encode('ascii','ignore') </code></pre> <p><strong>This works only if you have unicode as input.</strong> Therefor, you must know what can of encoding the function ouputs and decode it. If you don't, there are encoding detection heuristics, but on short strings, there are not reliable.</p> <p>Of course, <strong>you could have luck</strong> and the function outputs rely on various unknow encodings but using ascii as a code base, therefor they would allocate the same value for the bytes from 0 to 127 (like utf-8). </p> <p>In that case, you can just get rid of the unwanted chars by filtering them using <a href="http://code.activestate.com/recipes/528878/" rel="nofollow">OrderedSets</a> :</p> <pre><code>import string.printable # asccii chars print "".join(OrderedSet(string.printable) &amp; OrderedSet(s)) </code></pre> <p>Or if you want blanks instead :</p> <pre><code>print("".join(((char if char in string.printable else " ") for char in s ))) </code></pre> <p>"translate" can help you to do the same.</p> <p>The only way to know if your are this lucky is to try it out... Sometimes, a big fat lucky day is what any dev need :-)</p> http://stackoverflow.com/questions/1783994/python-strip-all-drive-letters-from-csv-file-and-replace-with-z/1784420#1784420 1 Answer by e-satis for Python - Strip all drive letters from csv file and replace with Z: e-satis 2009-11-23T16:47:33Z 2009-11-23T16:59:15Z <p>I can see you use some pythonic snippets, with smart uses of path.join and a commented code. This can get even better, let's rewrite a few things so we can solve your drive letters issue, and gain a more pythonic code on the way :</p> <pre><code>#!/usr/bin/env python # -*- coding= UTF-8 -*- # Firstly, modules can be documented using docstring, so drop the comments """ Create the videos directory in the current directory If the directory exists ignore it. Moves all files with the .wmv extension to the videos folder for file structure Crawl the videos directory then change to videos directory create the videos.csv file in the videos directory create output.csv replace any drive letter A:-Y: with Z: """ # not useful to import os and os.path as the second is contain in the first one import os import shutil import csv # import glob, it will be handy import glob import ntpath # this is to split the drive # don't really need to use a function # Here, don't bother checking if the directory exists # and you don't need add any slash either directory = "videos" ext = "*.wmv" try : os.mkdir(directory) except OSError : pass listDirectory = [] # creating a buffer so no need to list the dir twice for file in glob.glob(ext): # much easier this way, isn't it ? shutil.move(file, os.path.join(directory, file)) # good catch for shutil :-) listDirectory.append(file) os.chdir(directory) # you've smartly imported the csv module, so let's use it ! f = open("videos.csv", "w") vid_csv = csv.writer(f) w = open('output.csv', 'w') out_csv = csv.writer(w) # let's do everything in one loop for file in listDirectory : file_path = os.path.abspath(file) # Python includes functions to deal with drive letters :-D # I use ntpath because I am under linux but you can use # normal os.path functions on windows with the same names file_path_with_new_letter = ntpath.join("Z:", ntpath.splitdrive(file_path)[1]) # let's write the csv, using tuples vid_csv.writerow((file_path, )) out_csv.writerow((file_path_with_new_letter, )) </code></pre> http://stackoverflow.com/questions/787313/is-there-any-python-like-interactive-console-for-java 1 Is there any Python-like interactive console for Java ? e-satis 2009-04-24T19:50:55Z 2009-11-23T11:15:29Z <p>I spent a lot of time programming in Java recently, and one thing I miss from scripting languages was the ability to test them in a console. </p> <p>To quickly test a java program, I have to edit a file, then turn it to bytecode and execute it. Even using an IDE, it loses its fun after the 372 th time.</p> <p>I would like to know if there is a product out there that features anything like an interactive console (I bet you need a JIT compiler) and some autocompletion (with relexivity, I suppose it's possible). </p> <p>Maybe that's something very common that I just don't know about or something completely impossible, but its worst asking :-)</p> http://stackoverflow.com/questions/100003/what-is-a-metaclass-in-python 48 What is a metaclass in Python? e-satis 2008-09-19T06:10:46Z 2009-11-23T11:09:44Z <p>I´ve mastered almost all the Python concepts (well, let´s say there are just OO concepts :-)) but this one is tricky.</p> <p>I know it has something to do with introspection but it´s still unclear to me.</p> <p>So what are metaclasses? What do you use them for? </p> <p>Concrete examples, including snippets, much appreciated!</p> http://stackoverflow.com/questions/1778670/when-should-i-drop-support-for-python2-4-on-my-public-python-library/1778792#1778792 1 Answer by e-satis for When should I drop support for python2.4 on my public python library? e-satis 2009-11-22T14:04:18Z 2009-11-22T14:04:18Z <p>You don't have to drop anything, what works on 2.4, works on 2.5 and 2.6. You can easily avoid incompatibilities skipping "with", the ternary operation, et "import <strong>future</strong>".</p> <p>Now, once you have a very stable and full featured version of your code and need to make a big achitectural change, start writting for Python 3.0. No rush, it won't be massively used before one year or two.</p> <p>A good indicator is to focus on project that have the same audience as yours. When do they switch on the roadmap ? </p> <ul> <li>GNOME ?</li> <li>Django ?</li> <li>Inkscape ?</li> </ul> http://stackoverflow.com/questions/1766474/should-javascript-code-always-be-loaded-in-the-head-of-an-html-document/1766615#1766615 2 Answer by e-satis for Should javascript code always be loaded in the head of an html document? e-satis 2009-11-19T21:14:26Z 2009-11-19T22:48:02Z <p>There is no rule : if you want the Js to be loaded first, you put it in the head. If you want it to be the last thing the browser load, you put it at the bottom.</p> <p>For websites getting usuable with JS, you probably want to put it at the top, in head. For web sites that degrade nicely, you'll follow Yahoo! recommandations and let the page render, then load the script.</p> <p><strong>N.B : this has nothing to do with executing the script before or after the DOM is loaded. This issue is not a real one, most of the time you use onload or a $.ready equivalent. This is about when the file is actually loaded, not executed.</strong></p> http://stackoverflow.com/questions/1766863/php-readdir-with-european-characters/1767011#1767011 1 Answer by e-satis for PHP readdir with european characters e-satis 2009-11-19T22:23:50Z 2009-11-19T22:42:57Z <p>If it works with strings but not with arrays, just applies it on strings :-)</p> <pre><code>$search = array('š','á','ž','í','ě','é','ř','ň','ý','č',' '); $replace = array('s','a','z','i','e','e','r','n','y','c','-'); len = count($safe_files) for ($i=0; $i&lt;len; $i++) $safe_files[$i] = str_replace($search, $replace, $safe_files[$i]); </code></pre> <p>I think <a href="http://php.net/manual/en/function.str-replace.php" rel="nofollow">str_replace</a> accept arrays only for the 2 first params, and not the last. I may be wrong, but anyway this should work.</p> <p>If by any mean, you have a real encoding problem, it could just be that you OS use a single byte encoding while your source file use another, probably UTF-8.</p> <p>In that case, do something like :</p> <pre><code>$search = array('š','á','ž','í','ě','é','ř','ň','ý','č',' '); $replace = array('s','a','z','i','e','e','r','n','y','c','-'); $code_encoding = "UTF-8"; // this is my guess, but put whatever is yours $os_encoding = "CP-1250"; // this is my guess, but put whatever is yours len = count($safe_files) for ($i=0; $i&lt;len; $i++) { $safe_files[$i] = iconv($os_encoding , $code_encoding, $safe_files[$i]); // convert before replace /* ALternatively : $safe_files[$i] = mb_convert_encoding($safe_files[$i], $code_encoding , $os_encoding ); */ $safe_files[$i] = str_replace($search, $replace, $safe_files[$i]); } </code></pre> <p>mb_convert_encoding() require the ext/mbstring extension and iconv() require ext/iconv.</p> http://stackoverflow.com/questions/1755706/converting-re-code-from-php-to-python/1755811#1755811 0 Answer by e-satis for Converting RE code from PHP to Python e-satis 2009-11-18T13:02:05Z 2009-11-18T13:02:05Z <p>In python, you must use the "re" module to do that. Unlike in PHP, you don't need to place delimitors, so strip the "/" you have at the begining and the end of the pattern.</p> <p>The Python idiom would then be :</p> <pre><code>import re string="Input values" for match in re.findall('[0-9]+.{10,25}[^0-9]*[0-9]{5,6}\s',string) : print match </code></pre> <p>We rarely use some pretty print tools such as "print_r" in Python because most of the time, iterators and str() do the trick. So here, a simple for loop will do the job.</p> http://stackoverflow.com/questions/1748020/can-we-create-onclick-popup-without-javascript-in-css/1748245#1748245 2 Answer by e-satis for Can we create onclick popup without Javascript in CSS? e-satis 2009-11-17T11:34:19Z 2009-11-17T11:34:19Z <p>You cannot, but you can create tooltips using CSS only. <a href="http://www.webcssdesign.com/demos/css%5Ftooltip.html" rel="nofollow">It can do the trick</a> :</p> <p>You set a proper markup :</p> <pre><code>&lt;div id="example"&gt; Result : &lt;a href="#" class="tooltip"&gt; Article 1 &lt;span&gt;Article 1's Title, Article 1's description.&lt;/span&gt; &lt;/a&gt;. &lt;/div&gt; </code></pre> <p>Then style it with hover :</p> <pre><code>#example { float:left; width:400px; padding:15px; background-color:#FFFFFF; } a { background-color:#FFFFFF; color:#000000; text-decoration:underline; } a:hover { background-color:#ffffff; text-decoration:none; } /* background-color for IE6*/ /* hiding the tooltip*/ a.tooltip span { display:none; /* if you have accessibility issues, you may choose other hiding tricks*/ padding:2px 3px; margin-left:10px; width:150px; } /* display on hover*/ a.tooltip:hover span{ display:inline; position:absolute; border:1px solid #cccccc; background:#ffffff; color: #000; } </code></pre> http://stackoverflow.com/questions/357219/whats-your-favourite-character/1743245#1743245 0 Answer by e-satis for What's your favourite character? e-satis 2009-11-16T16:24:26Z 2009-11-16T16:24:26Z <p>I tend to like "¤", which is a <a href="http://en.wikipedia.org/wiki/Currency%5F%28typography%29" rel="nofollow">generical currency sign</a> you can type easily on almost any keyboard (in the French one, it's AtlGr + $, like "€", "}" or "#").</p> <p>I tend to use it in regular expressions in order to replace <code>.*</code> with <code>[^¤]*</code> when speed matters. </p> <p>When in doubt, I use non-printable characters for the same purpose. I especially like the ring bell character you can get using chr(7) which is unlikely to be typed by mistake and pretty silent as long as you don't output it :-)</p> http://stackoverflow.com/questions/473109/one-big-mysql-db-or-a-thousand-little-sqlite-databases/596470#596470 Comment by e-satis on One big MySQL DB or a thousand little SQLite databases? e-satis 2009-12-04T12:16:33Z 2009-12-04T12:16:33Z I'm not really looking for massive concurrency. http://stackoverflow.com/questions/1826859/is-there-ever-a-good-reason-to-use-eval/1826964#1826964 Comment by e-satis on Is there ever a good reason to use eval() ? e-satis 2009-12-01T15:39:32Z 2009-12-01T15:39:32Z +1, only real good example I've seen so far. http://stackoverflow.com/questions/1826859/is-there-ever-a-good-reason-to-use-eval/1826879#1826879 Comment by e-satis on Is there ever a good reason to use eval() ? e-satis 2009-12-01T15:38:13Z 2009-12-01T15:38:13Z @stodola : there are dedicated lib for that, and it's much safer than using eval. e.g : jquery.json http://stackoverflow.com/questions/1826859/is-there-ever-a-good-reason-to-use-eval/1826879#1826879 Comment by e-satis on Is there ever a good reason to use eval() ? e-satis 2009-12-01T15:37:24Z 2009-12-01T15:37:24Z +1 to the comment http://stackoverflow.com/questions/1826851/how-to-merge-this-two-specific-arrays-in-php/1826929#1826929 Comment by e-satis on How to merge this two specific arrays in PHP? e-satis 2009-12-01T15:35:27Z 2009-12-01T15:35:27Z Nope, he didn't read the question. http://stackoverflow.com/questions/1826851/how-to-merge-this-two-specific-arrays-in-php Comment by e-satis on How to merge this two specific arrays in PHP? e-satis 2009-12-01T15:26:59Z 2009-12-01T15:26:59Z Does &quot;orange&quot; and &quot;apple&quot; have the same number of items ? http://stackoverflow.com/questions/698/is-there-an-ide-that-provides-code-completion-for-python/779826#779826 Comment by e-satis on Is there an IDE that provides code completion for Python e-satis 2009-11-30T14:38:21Z 2009-11-30T14:38:21Z Really really really good actually. http://stackoverflow.com/questions/1815613/what-next-generation-low-level-language-is-the-best-bet-to-migrate-the-code-base Comment by e-satis on What next generation low level language is the best bet to migrate the code base ? e-satis 2009-11-29T19:55:00Z 2009-11-29T19:55:00Z Lol. Of course, but cutting edge and COBOL are indeed oxymoron http://stackoverflow.com/questions/818159/what-are-some-bad-programming-habits-to-look-out-for-and-avoid/818171#818171 Comment by e-satis on What are some bad programming habits to look out for and avoid? e-satis 2009-11-29T16:39:44Z 2009-11-29T16:39:44Z -1, I learned more using copy and paste than in HighSchooL http://stackoverflow.com/questions/1815516/programming-language-with-native-code-support-no-framework-i-write-the-framewor/1815588#1815588 Comment by e-satis on Programming language with native code support, No framework (I write the framework) e-satis 2009-11-29T16:35:26Z 2009-11-29T16:35:26Z Wow, even funnier with your question edited. Why not directly make a MMORPG ? <a href="http://metamagick.net/images/mmorpg.gif" rel="nofollow">metamagick.net/images/mmorpg.gif</a> http://stackoverflow.com/questions/1815516/programming-language-with-native-code-support-no-framework-i-write-the-framewor/1815588#1815588 Comment by e-satis on Programming language with native code support, No framework (I write the framework) e-satis 2009-11-29T16:32:46Z 2009-11-29T16:32:46Z So why do I smile ? http://stackoverflow.com/questions/1815613/what-next-generation-low-level-language-is-the-best-bet-to-migrate-the-code-base Comment by e-satis on What next generation low level language is the best bet to migrate the code base ? e-satis 2009-11-29T16:32:10Z 2009-11-29T16:32:10Z Or maybe I am a TV show character, maybe I am a Monthy Python Flying circus character. And maybe I'm going for something completely different. http://stackoverflow.com/questions/1815613/what-next-generation-low-level-language-is-the-best-bet-to-migrate-the-code-base Comment by e-satis on What next generation low level language is the best bet to migrate the code base ? e-satis 2009-11-29T16:30:05Z 2009-11-29T16:30:05Z I have absolutely no reason to do so, I make a living coding in Python. The &quot;Let's say you have a company&quot; is clearly an hypothetical case, I don't talk about me like a tv show character would to his shrink :-) http://stackoverflow.com/questions/1815613/what-next-generation-low-level-language-is-the-best-bet-to-migrate-the-code-base Comment by e-satis on What next generation low level language is the best bet to migrate the code base ? e-satis 2009-11-29T16:18:54Z 2009-11-29T16:18:54Z COBOL is still here, very much here, and alone, that's the problem. In my country, the entire postal pay system is written in Cobol. And it's true for the USA as well : <a href="http://www.careerjet.com/cobol-jobs.html" rel="nofollow">careerjet.com/cobol-jobs.html</a>. But nobody wants to code in COBOL anymore, nobody even dream of learning it, no matter how well payed can be the job, and some offers are outrageous. http://stackoverflow.com/questions/1815528/why-cant-i-sort-this-list/1815541#1815541 Comment by e-satis on Why can't I sort this list? e-satis 2009-11-29T14:47:04Z 2009-11-29T14:47:04Z Original Poster. Since SO works like a wiki, we refer to the very first user this way, this differentiate what he wrote from what has been corrected.