User edomaur - Stack Overflowmost recent 30 from stackoverflow.com2009-12-04T15:00:52Zhttp://stackoverflow.com/feeds/user/14262http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1650627/designing-the-storage-for-a-very-large-game-world/1660894#16608941Answer by edomaur for Designing the storage for a very large game world.edomaur2009-11-02T12:02:29Z2009-11-02T12:02:29Z<p>I am using non-relationnal database to store big amounts of datas. If you can work on a 64 bits hardware, <a href="http://www.mongodb.org" rel="nofollow">MongoDB</a> with its <a href="http://pypi.python.org/pypi/pymongo/" rel="nofollow">Python driver</a> is really very good. I do not know if this is ok with Stackless, but it is a possiblity.</p>
http://stackoverflow.com/questions/1448343/how-to-set-different-username-by-repository-in-mercurial1How to set different username by repository in Mercurial ?edomaur2009-09-19T11:11:11Z2009-09-19T11:19:26Z
<p>I am working on projects for different clients using Mercurial as a VCS. I know how to set a default user, but is there a mean to set a <em>different</em> user for each project ? </p>
http://stackoverflow.com/questions/1375942/strong-database-names-on-database-server/1417783#14177831Answer by edomaur for Strong database names on database serveredomaur2009-09-13T13:46:35Z2009-09-13T13:46:35Z<p>We are using container isolation to run different instances/multiples version of the databases (postgres and mysql) but the naming scheme problem is still the same. We follow the next one :</p>
<p>Customer name + product ID + task kind (prod, staging, test, accounting, etc.)</p>
<p>eg : nuxil_erp_test, nuxil_erp_prod, nuxil_erp_accountingTraining.</p>
<p>However, we'll probably let go off that naming scheme because customers have the ability to creating new databases, and they all have their own ideas about naming databases. </p>
http://stackoverflow.com/questions/574613/how-to-come-up-with-a-fun-project-name/1417705#14177051Answer by edomaur for How to come up with a fun project name?edomaur2009-09-13T13:03:48Z2009-09-13T13:03:48Z<p>My magical recipe to come up with a funny project name : My English is not very good but I'm quite fluent in French (langue maternelle, entre autres raisons) and I like to make really bad puns and plays on words, and try to translate them... Do I need to explain further ? It's a kind of confusion based name generation. If it makes me laugh and look pretty, it is good.</p>
<p>Okay, an example :</p>
<p>Plyme, an experimental distributed and disconnected text editor built on Mercurial. The name came from "plume", which can be translated by "feather" or "fountain pen". Since it is for writing stories, that's better with the last interpretation. Then, it is written in Python, so the 'u' became an 'y', which have the same sound between French and Alemanish (Swiss German). And the un-intended joke : each writter can make "harvest" sheets of text (plys...) and browse through them (to ply...) (Well, project disbanded because Dropbox is better suited...)</p>
http://stackoverflow.com/questions/1410328/what-are-the-pros-and-cons-of-pyro-and-rpyc-python-libs1What are the pros and cons of PyRo and RPyC python libs ?edomaur2009-09-11T11:20:11Z2009-09-11T15:02:58Z
<p>I am looking for a remote procedure call engine for Python and I've found that <a href="http://pyro.sourceforge.net/" rel="nofollow">PyRo (Python Remote Object)</a> and <a href="http://rpyc.wikidot.com/" rel="nofollow">RPyC (Remote Python Call) </a> are both the kind of thing I am searching for.</p>
<p>However, I am curious to know how they compare to each other and what are their pros and cons ?</p>
http://stackoverflow.com/questions/1321396/what-are-the-required-functionnalities-of-etl-frameworks0What are the required functionnalities of ETL frameworks ?edomaur2009-08-24T09:41:16Z2009-08-24T22:25:53Z
<p>I am writing an ETL (in python with a mongodb backend) and was wondering : what kind of standard functions and tools an ETL should have to be called an ETL ? </p>
<p>This ETL will be as general purpose as possible, with a scriptable and modular approach. Mostly it will be used to keep different databases in sync, and to import/export datasets in different formats (xml and csv) I don't need any multidimensional tools, but it is a possibility that it'll needed later.</p>
http://stackoverflow.com/questions/228910/interactive-fiction-what-are-the-existing-tools-and-programming-language6Interactive Fiction : what are the existing tools and programming language ?edomaur2008-10-23T08:13:14Z2009-07-17T17:04:47Z
<p>I'm looking to write an interactive fiction à la Zork, but with my own silliness... </p>
<p>The question I want to ask is: what are the tools and languages existing to do that and what are the features and advantages of each?</p>
<p>For example what are the differences between TADS 2, TADS 3, Inform 6 and Inform 7, and why use one instead of another? Cross-platform support is highly desirable, but not mandatory.</p>
<p>Tool list:</p>
<ul>
<li><a href="http://www.tads.org/" rel="nofollow">TADS 2 & TADS 3</a></li>
<li><a href="http://www.inform-fiction.org/inform6.html" rel="nofollow">Inform 6</a> & <a href="http://www.inform-fiction.org" rel="nofollow">Inform 7</a></li>
<li><a href="http://www.adrift.org.uk/cgi/new/adrift.cgi" rel="nofollow">Adrift</a></li>
</ul>
http://stackoverflow.com/questions/195177/how-to-update-contacts-in-zimbra-by-scripting0How to update contacts in Zimbra by scripting ?edomaur2008-10-12T07:12:02Z2009-04-17T02:25:42Z
<p>I have a Zimbra installation and I need to programmaticaly update contacts in it. It seems that its REST interface is only working to add new contacts, but I need to update existing ones. Is there a way, tool or something, open-source, to do that ?</p>
http://stackoverflow.com/questions/312096/good-python-library-for-designing-a-mmo-actor-based-design/321042#3210422Answer by edomaur for Good python library for designing a mmo? Actor based designedomaur2008-11-26T15:12:16Z2008-11-26T15:12:16Z<p>Initially <a href="http://twistedmatrix.com/trac/" rel="nofollow">Twisted Python</a> was designed to write MMOs, but it not really easy to use. I don't know if there is an Actor implementation for it, perhaps in the <a href="https://launchpad.net/tx" rel="nofollow">tx project in Launchpad</a> ?</p>
http://stackoverflow.com/questions/286958/any-aop-support-library-for-python2Any AOP support library for Python ?edomaur2008-11-13T13:51:27Z2008-11-18T11:46:15Z
<p>I am trying to use some AOP in my Python programming, but I do not have any experience of the various libs that exists. So my question is :</p>
<p>What AOP support exists for Python, and what are the advantages of the differents libraries between them ?</p>
<p>Edit : I've found some, but I don't know how they compare :</p>
<ul>
<li><a href="http://www.aspyct.org" rel="nofollow">Aspyct</a></li>
<li><a href="http://www.cs.tut.fi/~ask/aspects/aspects.html" rel="nofollow">Lightweight AOP for Python</a></li>
</ul>
<p>Edit2 : In which context will I use this ? I have two applications, written in Python, which have typically methods which compute taxes and other money things. I'd like to be able to write a "skeleton" of a functionnality, and customize it at runtime, for example changing the way local taxes are applied (by country, or state, or city, etc.) without having to overload the full stack.</p>
http://stackoverflow.com/questions/121243/hidden-features-of-sql-server/138366#1383665Answer by edomaur for Hidden Features of SQL Serveredomaur2008-09-26T08:58:55Z2008-11-01T04:45:39Z<p>A stored procedure trick is that you can call them from an INSERT statement. I found this very useful when I was working on an SQL Server database. </p>
<pre><code>CREATE TABLE #toto (v1 int, v2 int, v3 char(4), status char(6))
INSERT #toto (v1, v2, v3, status) EXEC dbo.sp_fulubulu(sp_param1)
SELECT * FROM #toto
DROP TABLE #toto
</code></pre>
http://stackoverflow.com/questions/226135/scripting-library-for-delphi/228928#2289286Answer by edomaur for Scripting library for Delphiedomaur2008-10-23T08:19:34Z2008-10-24T06:32:15Z<p>When I was still working on a project in Delphi and beginning to look at Python, I used the <a href="http://mmm-experts.com/Products.aspx" rel="nofollow">Python for Delphi</a> components. </p>
http://stackoverflow.com/questions/225598/pretty-continuous-integration-for-python/225788#2257884Answer by edomaur for "Pretty" Continuous Integration for Pythonedomaur2008-10-22T13:46:55Z2008-10-22T13:46:55Z<p>Don't know if it would do : <a href="http://bitten.edgewall.org/" rel="nofollow">Bitten</a> is made by the guys who write Trac and is integrated with Trac. <a href="http://gump.apache.org/" rel="nofollow">Apache Gump</a> is the CI tool used by Apache. It is written in Python.</p>
http://stackoverflow.com/questions/184618/what-is-the-best-comment-in-source-code-you-have-ever-encountered/216159#2161595Answer by edomaur for What is the best comment in source code you have ever encountered?edomaur2008-10-19T07:59:33Z2008-10-19T07:59:33Z<pre><code>// Added because boss changed his mind : 20020111,20020501,20020820, ...
// Commented out because boss changed his mind : 20020201,20020614,20020908, ...
</code></pre>
<p>In an ETL script between a mostly hacked RPG database and an SQL Server one. I had something like 10 or 20 occurences of this comment...</p>
http://stackoverflow.com/questions/207517/why-did-you-start-using-python/207637#2076370Answer by edomaur for Why did you start using Python?edomaur2008-10-16T07:02:01Z2008-10-16T07:02:01Z<p>It was at the release of the 2.0 version. I was still in my quest of the ideal language, while at that time it was more a "quest of the language which suck less", and after years of Turbo Pascal and Delphi it was more logical than, say, Perl, C++ or Forth. Also, I needed a cross platform tool to write helping scripts for a deploiement platform and it was a good match.</p>
http://stackoverflow.com/questions/195177/how-to-update-contacts-in-zimbra-by-scripting/195708#1957081Answer by edomaur for How to update contacts in Zimbra by scripting ?edomaur2008-10-12T17:07:36Z2008-10-12T17:07:36Z<p>Well, I have an answer to my question : you may use the "zmmailbox" command. Under the Zimbra system user, it is possible to modify content in a mailbox. Since quite everything is stored in the Zimbra mailbox, contacts can be edited. I need now to find a way to use this :</p>
<pre><code>box$ zmmailbox help contact
autoComplete(ac) [opts] {query}
-v/--verbose verbose output
autoCompleteGal(acg) [opts] {query}
-v/--verbose verbose output
createContact(cct) [opts] [attr1 value1 [attr2 value2...]]
-i/--ignore ignore unknown contact attrs
-f/--folder <arg> folder-path-or-id
-T/--tags <arg> list of tag ids/names
deleteContact(dct) {contact-ids}
flagContact(fct) {contact-ids} [0|1*]
getAllContacts(gact) [opts] [attr1 [attr2...]]
-f/--folder <arg> folder-path-or-id
-v/--verbose verbose output
getContacts(gct) [opts] {contact-ids} [attr1 [attr2...]]
-v/--verbose verbose output
modifyContactAttrs(mcta) [opts] {contact-id} [attr1 value1 [attr2 value2...]]
-i/--ignore ignore unknown contact attrs
-r/--replace replace contact (default is to merge)
moveContact(mct) {contact-ids} {dest-folder-path}
tagContact(tct) {contact-ids} {tag-name} [0|1*]
</code></pre>
http://stackoverflow.com/questions/28302/free-network-monitor/190377#1903770Answer by edomaur for Free Network Monitoredomaur2008-10-10T07:11:01Z2008-10-10T07:11:01Z<p>Take a look at <a href="http://www.tcpdump.org" rel="nofollow">Tcpdump</a> It is not a full fledged GUI network analyzer (not at all) but it is usable in scripts. Since I am more a Linux person, I use it with Bash and Python, but you should be able to call it from powershell.</p>
http://stackoverflow.com/questions/186789/best-security-practices-in-linux/187160#1871601Answer by edomaur for Best security practices in Linuxedomaur2008-10-09T13:05:12Z2008-10-10T07:01:44Z<ul>
<li>Limit the software to the only ones you really use</li>
<li>Limit the rights of the users, through sudo, ACLs, kernel capabilities and SELinux/AppArmor/PaX policies</li>
<li>Enforce use of hard passwords (no human understandable words, no birthday dates, etc.)</li>
<li>Make chroot or vserver jails for the "dangerous" applications</li>
<li>Install some IDS, e.g. Snort for the network traffic and OSSEC for the log analysis</li>
<li>Monitor the server</li>
<li>Encrypt your sensible datas (truecrypt is a gift of the gods)</li>
<li>Patch your kernel with GRSecurity : this add a really nice level of paranoïa</li>
</ul>
<p>That's more or less what I would do.</p>
<p>Edit : I added some ideas that I previously forgot to name ...</p>
http://stackoverflow.com/questions/68372/what-is-your-single-most-favorite-command-line-trick-using-bash/171938#17193817Answer by edomaur for What is your single most favorite command-line trick using Bash?edomaur2008-10-05T13:02:11Z2008-10-05T13:02:11Z<p>How to list <em>only</em> subdirectories in the current one ?</p>
<pre><code>ls -d */
</code></pre>
<p>It's a simple trick, but you wouldn't know how much time I needed to find that one !</p>
http://stackoverflow.com/questions/68372/what-is-your-single-most-favorite-command-line-trick-using-bash/139674#1396741Answer by edomaur for What is your single most favorite command-line trick using Bash?edomaur2008-09-26T13:59:53Z2008-09-26T13:59:53Z<p>One of my favorites tricks with bash is the "tar pipe". When you have a monstrous quantity of files to copy from one directory to another, doing "cp * /an/other/dir" doesn't work if the number of files is too high and explode the bash globber, so, the tar pipe :</p>
<p><code>(cd /path/to/source/dir/ ; tar cf - * ) | (cd /path/to/destination/ ; tar xf - )</code></p>
<p>...and if you have netcat, you can even <a href="http://compsoc.dur.ac.uk/~djw/tarpipe.html" rel="nofollow">do the "netcat tar pipe" through the network !!</a></p>
http://stackoverflow.com/questions/131608/do-you-use-a-single-editor-well/131755#1317551Answer by edomaur for Do you use a single editor (well)?edomaur2008-09-25T06:46:47Z2008-09-25T06:46:47Z<p>I am using vim, notepad++ and kate. Vim because my fingers had to learn it, way back the time I was a student, and notepad++ and kate because syntax highlighting and GUI can be nice when trying to work out the nuts and bolts of other's programming skills.</p>
http://stackoverflow.com/questions/126753/is-there-a-good-free-python-ide-for-windows/127718#1277180Answer by edomaur for Is there a good, free Python IDE for Windows?edomaur2008-09-24T15:04:46Z2008-09-24T15:04:46Z<p>On Windows, I use <a href="http://notepad-plus.sourceforge.net/" rel="nofollow">Notepad++</a> with the appropriate settings.</p>
http://stackoverflow.com/questions/115844/recommended-python-publish-subscribe-dispatch-module/117563#1175630Answer by edomaur for Recommended Python publish/subscribe/dispatch module ?edomaur2008-09-22T20:52:03Z2008-09-24T13:56:27Z<p>There is also the libraries by PJ Eby, RuleDispatch and the PEAK project, specially Trellis. I don't know what their status actually but the mailing list is quite active.</p>
<p><a href="http://pypi.python.org/pypi/Trellis/0.7a2" rel="nofollow">Last version of Trellis on PyPi</a></p>
<p><a href="http://peak.telecommunity.com/DevCenter/Trellis" rel="nofollow">Trellis doc</a></p>
<p>I have also used the components from the <a href="http://edit.kamaelia.org/Home" rel="nofollow">Kamaelia project</a> of the BBC. Axon is an interesting approach, but more component than publisher-consumer inspired. Well, its website is somewhat not up-to-date at all... There was a project or 2 in the Google SoC 2008 and work is being done.</p>
<p>Don't know if it help :)</p>
<p>Edit : I just found <a href="http://home.gna.org/py-notify/tutorial.html" rel="nofollow">Py-notify</a> which is an "unorthodox" implementation of the Observer pattern. It has most of the functionalities that I need for my own tools.</p>
http://stackoverflow.com/questions/125893/is-there-an-alternative-to-ftp/126069#1260690Answer by edomaur for Is there an alternative to FTP?edomaur2008-09-24T08:45:22Z2008-09-24T08:45:22Z<p><a href="http://www.columbia.edu/kermit/" rel="nofollow">Kermit protocol ?</a> It's what is used to update the software of the space probes around there. </p>
http://stackoverflow.com/questions/115974/what-would-be-the-simplest-way-to-daemonize-a-python-script-in-linux5What would be the simplest way to daemonize a python script in Linux ?edomaur2008-09-22T16:39:09Z2008-09-23T00:46:04Z
<p>What would be the simplest way to daemonize a python script in Linux ? I need that this works with every flavor of Linux, so it should only use python based tools. </p>
http://stackoverflow.com/questions/115984/generate-pdf-from-structured-data/116007#1160071Answer by edomaur for Generate PDF from structured dataedomaur2008-09-22T16:44:30Z2008-09-22T16:44:30Z<p>I use the ReportLab python library for this. It could perhaps solve your problem, but you will need to do some work...</p>
http://stackoverflow.com/questions/1567371/wrapping-an-interactive-command-line-application-in-a-python-script/1567447#1567447Comment by edomaur on Wrapping an interactive command line application in a python scriptedomaur2009-10-15T15:10:33Z2009-10-15T15:10:33ZMore than just that, with Popen you can use a list of arguments as args !http://stackoverflow.com/questions/115974/what-would-be-the-simplest-way-to-daemonize-a-python-script-in-linuxComment by edomaur on What would be the simplest way to daemonize a python script in Linux ?edomaur2009-09-21T21:34:58Z2009-09-21T21:34:58ZYes, I agree (I'm using daemontools)http://stackoverflow.com/questions/1448343/how-to-set-different-username-by-repository-in-mercurial/1448358#1448358Comment by edomaur on How to set different username by repository in Mercurial ?edomaur2009-09-19T12:02:34Z2009-09-19T12:02:34Znifty ! thank you very much !http://stackoverflow.com/questions/1444077/bazaar-mercurial-or-other-for-single-user-version-control/1444133#1444133Comment by edomaur on Bazaar, Mercurial or other for single user version control?edomaur2009-09-19T11:14:18Z2009-09-19T11:14:18ZI am using Mercurial for about anything I do that need some version control. It is simple enough, and the TortoiseHG is really a treat to work with (IMHO)http://stackoverflow.com/questions/1401803/how-do-you-set-the-username-that-mercurial-uses-for-commits/1401821#1401821Comment by edomaur on How do you set the username that Mercurial uses for commits?edomaur2009-09-19T11:06:24Z2009-09-19T11:06:24Zis there a possibility to set a username by repository ?http://stackoverflow.com/questions/68372/what-is-your-single-most-favorite-command-line-trick-using-bash/171938#171938Comment by edomaur on What is your single most favorite command-line trick using Bash?edomaur2009-09-14T22:54:17Z2009-09-14T22:54:17ZIt is a bit tricky...
"ls -d" is similar to "ls -d ./" and "ls -d */" to "ls -d ./*/".
The '-d' switch set 'ls' tu list only directory entries, but if you give it no parameter, it use the current directory as a parameter, so it has <i>only</i> the "." directory to list... http://stackoverflow.com/questions/1711/what-is-the-single-most-influential-book-every-programmer-should-read/1055390#1055390Comment by edomaur on What is the single most influential book every programmer should read?edomaur2009-07-31T23:11:06Z2009-07-31T23:11:06ZA really interesting book. And a poetic and well written one too. http://stackoverflow.com/questions/286958/any-aop-support-library-for-pythonComment by edomaur on Any AOP support library for Python ?edomaur2008-11-14T06:35:23Z2008-11-14T06:35:23ZGood remark, I'll think about it and edit my question.http://stackoverflow.com/questions/262657/the-coolest-server-names/262837#262837Comment by edomaur on The Coolest Server Namesedomaur2008-11-05T13:04:04Z2008-11-05T13:04:04Zhad to upvote too :Dhttp://stackoverflow.com/questions/228910/interactive-fiction-what-are-the-existing-tools-and-programming-language/229099#229099Comment by edomaur on Interactive Fiction : what are the existing tools and programming language ?edomaur2008-10-23T09:36:24Z2008-10-23T09:36:24ZHow does it compare to the others tools ?http://stackoverflow.com/questions/3337/what-programming-language-do-you-wish-would-catch-on/3735#3735Comment by edomaur on What programming language do you wish would catch on?edomaur2008-10-23T08:08:27Z2008-10-23T08:08:27ZThat would be an interesting question, what are the difference between TADS 2, TADS 3, Inform 6 and Inform 7, and why use one instead of another ?http://stackoverflow.com/questions/157361/whats-a-good-non-programming-interview-question-when-hiring-a-programmer/157623#157623Comment by edomaur on What's a good non-programming interview question when hiring a programmer?edomaur2008-10-19T20:11:33Z2008-10-19T20:11:33ZAs an interviewee, I would now take these questions as a sign that I would not like to work there. This, because of having some experience with bad jobs who just happened to ask that kind of questions. I mean, the interviewer must be honest himself about the questions.http://stackoverflow.com/questions/687/keyboard-for-programmers/53726#53726Comment by edomaur on Keyboard for programmersedomaur2008-10-19T19:03:26Z2008-10-19T19:03:26ZSeconded. I use one of these too.http://stackoverflow.com/questions/195177/how-to-update-contacts-in-zimbra-by-scripting/204671#204671Comment by edomaur on How to update contacts in Zimbra by scripting ?edomaur2008-10-18T09:24:40Z2008-10-18T09:24:40ZThat's what I am doing now :-P I think I will write down a wsdl for the client web services (there is already something for the admin web services)http://stackoverflow.com/questions/80112/whats-the-difference-between-xml-rpc-and-soap/88893#88893Comment by edomaur on What's the difference between XML-RPC and SOAP?edomaur2008-10-18T07:34:06Z2008-10-18T07:34:06ZFor SOAP with Python, there is the ZSI package. It is quite good, but you absolutely need a wsdl.