User e-satis - Stack Overflowmost recent 30 from stackoverflow.com2009-12-05T03:33:41Zhttp://stackoverflow.com/feeds/user/9951http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/473109/one-big-mysql-db-or-a-thousand-little-sqlite-databases7One big MySQL DB or a thousand little SQLite databases?e-satis2009-01-23T14:38:51Z2009-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#4731343Answer by e-satis for One big MySQL DB or a thousand little SQLite databases?e-satis2009-01-23T14:46:23Z2009-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#18269351Answer by e-satis for os.kill not raising an OSError, however I do not see the given pid runninge-satis2009-12-01T15:31:14Z2009-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-base8What next generation low level language is the best bet to migrate the code base ?e-satis2009-11-29T14:02:39Z2009-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-svn2How to fix "containing working copy admin area is missing" in SVN ?e-satis2009-09-08T13:36:31Z2009-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#18090091Answer by e-satis for What tools to automatically inline CSS style to create email HTML code ?e-satis2009-11-27T14:11:04Z2009-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#18155528Answer by e-satis for Why can't I sort this list?e-satis2009-11-29T13:27:22Z2009-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#18155881Answer by e-satis for Programming language with native code support, No framework (I write the framework)e-satis2009-11-29T13:48:25Z2009-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-wsgi2Why should I use WSGI ?e-satis2009-11-28T18:54:51Z2009-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#18133450Answer by e-satis for PHP: Multithreaded PHP / Web Services?e-satis2009-11-28T18:41:51Z2009-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#18133100Answer by e-satis for How to stream the contents of a file live to a browsere-satis2009-11-28T18:32:55Z2009-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#18131710Answer by e-satis for I want to develop a framework in Python for desktop based applications. How should I go about it?e-satis2009-11-28T17:38:24Z2009-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#18089661Answer by e-satis for Inline CSS/Javascript into a HTML filee-satis2009-11-27T14:04:39Z2009-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#18061720Answer by e-satis for Sqlite, and Python floatse-satis2009-11-26T23:51:24Z2009-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#18061460Answer by e-satis for How would I do this in php?e-satis2009-11-26T23:43:04Z2009-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#18039083Answer by e-satis for Python: Can you make this __eq__ easy to understand?e-satis2009-11-26T14:16:35Z2009-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 :
>>> t1 = Test()
>>> t2 = Test()
>>> print t1 == t2
True
>>> t1.foo = True
>>> print t1 == t2
False
>>> t2.foo = True
>>> t2.bar = 1
>>> print t1 == t2
False
>>> t1.bar = 1
>>> print t1 == t2
True
>>> t1.new_value = "test"
>>> print t1 == t2
True
>>> t1.metainfo.append("new_value")
>>> 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#17996112Answer by e-satis for When should and shouldn't you break away from OOP for speed/performance?e-satis2009-11-25T20:03:31Z2009-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#179376720Answer by e-satis for What are the limits of Python?e-satis2009-11-24T23:45:23Z2009-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#2162854Answer by e-satis for Would python make a good substitute for the windows command line/batch scripts?e-satis2008-10-19T11:14:49Z2009-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&source=web&ct=res&cd=2&url=http%3A%2F%2Fwww.dabeaz.com%2Fgenerators%2FGenerators.pdf&ei=yRn7SJDYCIbS0QXFvq2JDw&usg=AFQjCNE6b1w4feELQFUppm2-GFCzYyd2UQ&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#132107518Answer by e-satis for Python - Things one MUST avoide-satis2009-08-24T08:17:25Z2009-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#17934581Answer by e-satis for What is the fool proof way to convert some string (utf-8 or else) to a simple ASCII string in pythone-satis2009-11-24T22:42:26Z2009-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) & 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#17844201Answer by e-satis for Python - Strip all drive letters from csv file and replace with Z:e-satis2009-11-23T16:47:33Z2009-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-java1Is there any Python-like interactive console for Java ?e-satis2009-04-24T19:50:55Z2009-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-python48What is a metaclass in Python?e-satis2008-09-19T06:10:46Z2009-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#17787921Answer by e-satis for When should I drop support for python2.4 on my public python library?e-satis2009-11-22T14:04:18Z2009-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#17666152Answer by e-satis for Should javascript code always be loaded in the head of an html document?e-satis2009-11-19T21:14:26Z2009-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#17670111Answer by e-satis for PHP readdir with european characterse-satis2009-11-19T22:23:50Z2009-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<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<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#17558110Answer by e-satis for Converting RE code from PHP to Pythone-satis2009-11-18T13:02:05Z2009-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#17482452Answer by e-satis for Can we create onclick popup without Javascript in CSS?e-satis2009-11-17T11:34:19Z2009-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><div id="example">
Result :
<a href="#" class="tooltip">
Article 1
<span>Article 1's Title, Article 1's description.</span>
</a>.
</div>
</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#17432450Answer by e-satis for What's your favourite character?e-satis2009-11-16T16:24:26Z2009-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#596470Comment by e-satis on One big MySQL DB or a thousand little SQLite databases?e-satis2009-12-04T12:16:33Z2009-12-04T12:16:33ZI'm not really looking for massive concurrency.http://stackoverflow.com/questions/1826859/is-there-ever-a-good-reason-to-use-eval/1826964#1826964Comment by e-satis on Is there ever a good reason to use eval() ?e-satis2009-12-01T15:39:32Z2009-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#1826879Comment by e-satis on Is there ever a good reason to use eval() ?e-satis2009-12-01T15:38:13Z2009-12-01T15:38:13Z@stodola : there are dedicated lib for that, and it's much safer than using eval. e.g : jquery.jsonhttp://stackoverflow.com/questions/1826859/is-there-ever-a-good-reason-to-use-eval/1826879#1826879Comment by e-satis on Is there ever a good reason to use eval() ?e-satis2009-12-01T15:37:24Z2009-12-01T15:37:24Z+1 to the commenthttp://stackoverflow.com/questions/1826851/how-to-merge-this-two-specific-arrays-in-php/1826929#1826929Comment by e-satis on How to merge this two specific arrays in PHP?e-satis2009-12-01T15:35:27Z2009-12-01T15:35:27ZNope, he didn't read the question.http://stackoverflow.com/questions/1826851/how-to-merge-this-two-specific-arrays-in-phpComment by e-satis on How to merge this two specific arrays in PHP?e-satis2009-12-01T15:26:59Z2009-12-01T15:26:59ZDoes "orange" and "apple" have the same number of items ?http://stackoverflow.com/questions/698/is-there-an-ide-that-provides-code-completion-for-python/779826#779826Comment by e-satis on Is there an IDE that provides code completion for Pythone-satis2009-11-30T14:38:21Z2009-11-30T14:38:21ZReally really really good actually.http://stackoverflow.com/questions/1815613/what-next-generation-low-level-language-is-the-best-bet-to-migrate-the-code-baseComment by e-satis on What next generation low level language is the best bet to migrate the code base ?e-satis2009-11-29T19:55:00Z2009-11-29T19:55:00ZLol. Of course, but cutting edge and COBOL are indeed oxymoronhttp://stackoverflow.com/questions/818159/what-are-some-bad-programming-habits-to-look-out-for-and-avoid/818171#818171Comment by e-satis on What are some bad programming habits to look out for and avoid?e-satis2009-11-29T16:39:44Z2009-11-29T16:39:44Z-1, I learned more using copy and paste than in HighSchooLhttp://stackoverflow.com/questions/1815516/programming-language-with-native-code-support-no-framework-i-write-the-framewor/1815588#1815588Comment by e-satis on Programming language with native code support, No framework (I write the framework)e-satis2009-11-29T16:35:26Z2009-11-29T16:35:26ZWow, 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#1815588Comment by e-satis on Programming language with native code support, No framework (I write the framework)e-satis2009-11-29T16:32:46Z2009-11-29T16:32:46ZSo why do I smile ?http://stackoverflow.com/questions/1815613/what-next-generation-low-level-language-is-the-best-bet-to-migrate-the-code-baseComment by e-satis on What next generation low level language is the best bet to migrate the code base ?e-satis2009-11-29T16:32:10Z2009-11-29T16:32:10ZOr 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-baseComment by e-satis on What next generation low level language is the best bet to migrate the code base ?e-satis2009-11-29T16:30:05Z2009-11-29T16:30:05ZI have absolutely no reason to do so, I make a living coding in Python. The "Let's say you have a company" 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-baseComment by e-satis on What next generation low level language is the best bet to migrate the code base ?e-satis2009-11-29T16:18:54Z2009-11-29T16:18:54ZCOBOL 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#1815541Comment by e-satis on Why can't I sort this list?e-satis2009-11-29T14:47:04Z2009-11-29T14:47:04ZOriginal 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.