occupywallst.org is looking for Python programmers

2011-11-12 Thread Harald Armin Massa
just got this from Richard: Justine told me they are looking for Python programmers. (It involves Django also.) so, if anyone is interested to help them out, please contact Justine. Best wishes Harald -- Harald Armin Massa no fx, no carrier pigeon - -- http://mail.python.org/mailman

Europython 2006 call for proposals

2006-05-18 Thread Harald Armin Massa
Hello, I am writing this supporting the Python in Business Track. We are looking for talks proposals concerning the usage of Python in doing business. So, if you have a story to tell... Maybe you have written a webcrawler in Python and founded a search engine? Or you are using Python to organize

Re: lines of code per functional point

2006-05-09 Thread Harald Armin Massa
Bryan, at the end of the paper there is a reference to: http://page.mi.fu-berlin.de/~prechelt/documents/jccpp_tr.pdf In chapter 5.6 on page 19 of this publication you can find Figure 10, Displaying program length in comparison. I read the graphics (looking at the yellow boxes) that most of the

Re: Cheese Shop: some history for the new-comers

2006-03-16 Thread Harald Armin Massa
Tim, > For most people 'developers' would mean people developing *with* python, > not developing python. one of the richest people on earth did define what developers are: http://www.ntk.net/ballmer/mirrors.html people developing with something. So, unless we get /F or BDFL to do an even more a

Re: cx_Oracle and UTF8

2006-02-27 Thread Harald Armin Massa
Gerhard, thanks, that import os os.environ["NLS_LANG"] = "German_Germany.UTF8" import cx_Oracle con = cx_Oracle.connect("me/[EMAIL PROTECTED]") really helped. At least now the query returns something encoded differently. I dared not to believe that there is no "direct encoding change api" withou

Re: cx_Oracle and UTF8

2006-02-23 Thread Harald Armin Massa
Dietz, thank you for your answer. > It's called NLS (national language support), >and it is like a locale-setting in python/C. I'm too lazy to google right Sad thing: I allready googled that and had to learn: you CAN definitely change some parameters, that is sort order and language for error me

cx_Oracle and UTF8

2006-02-22 Thread Harald Armin Massa
Hello, I am looking for a method to convince cx_Oracle and oracle to encode it's replies in UTF8. For the moment I have to... cn=cx_Oracle.connect("user","password", "database") cs=cn.Cursor() cs.execute("select column1, column2, column3 from table") for row in cs.fetchall(): t=[] for i

Re: How many web framework for python ?

2006-02-19 Thread Harald Armin Massa
Bruno, >In fact, there are actually too much *good* python web frameworks. I tended to share that opinion, just because there are more web frameworks then keywords in Python. But we should stop thinking of this as a bug; it is a feature. Because everyone and his girlfriend creates an own web fra

Re: Python vs. Lisp -- please explain

2006-02-19 Thread Harald Armin Massa
>>OK, but then we should change , >>which starts with "Python is an interpreted, interactive, >>object-oriented programming language." I second this motion. Even tried to persuade the site maintainer before. We should really, really change it. The perceived spee

Re: - E04 - Leadership! Google, Guido van Rossum, PSF

2005-12-27 Thread Harald Armin Massa
ges and got faster and faster and faster. Maybe only mediocre and less ideas need a great leader. Maybe a great idea can lead for itself? Harald -- GHUM Harald Massa persuadere et programmare Harald Armin Massa Reinsburgstraße 202b 70197 Stuttgart 0173/9409607 -- http://mail.python.org/mailman/listinfo/python-list

Re: Guido at Google

2005-12-21 Thread Harald Armin Massa
> It seems that our master Guido van Rossum had an offer from google and > he accepted it!! Isn't Guido-Sans official title BDFL? *wink* whatever, if it's true, congratulations and best wishes. Now there is one *bot and the BDFL at google, we have still 3 bots in the wild, do we? Suggesting to n

Re: reddit.com rewritten in Python

2005-12-05 Thread Harald Armin Massa
Yeah! Another web framework for Python! Now we can proudly say: Python: the only language with more web frameworks than keywords Harald -- http://mail.python.org/mailman/listinfo/python-list

Re: reddit.com rewritten in Python

2005-12-05 Thread Harald Armin Massa
Yeah! Another web framework for Python! Now we can prouldy say: Python: the only language with more web frameworks than keywords Harald -- http://mail.python.org/mailman/listinfo/python-list

Re: python speed

2005-11-30 Thread Harald Armin Massa
>Faster than assembly? LOL... :) why not? Of course, a simple script like "copy 200 bytes from left to right" can be handoptimized in assembler and run at optimum speed. Maybe there is even a special processor command to do that. I learned that there was one generation of CPUs which had effective

Re: python speed

2005-11-30 Thread Harald Armin Massa
Dr. Armin Rigo has some mathematical proof, that High Level Languages like esp. Python are able to be faster than low level code like Fortran, C or assembly. I am not wise enough to understand that proof. Maybe I understood those papers totally wrong and he was saying something totally different.

Re: Application Plugin Framework

2005-11-22 Thread Harald Armin Massa
Ron, > I'm attempting to develop a plugin framework for an application that I'm > working on. I wish to develop something in which all plugins exist in a > directory tree. The PIL of the effbot is doing exactly this. (Python Image Library). I know it, because I had to work around that dynamic

Re: Announce: PythonD 2.4.2 r 1.0 for DJGPP/DOS/Windows

2005-11-18 Thread Harald Armin Massa
Claudio, maybe it's because PythonD is running within DOS? (which, for archaelogical completeness, is an ancient operating system) Harald -- http://mail.python.org/mailman/listinfo/python-list

migrate from ZODB 3.3.1 --- to where, and how?

2005-10-25 Thread Harald Armin Massa
Hello, I am using ZODB "standalone" in version 3.3.1 within some application. Now I learn that the 3.3.x branch of ZODB is "retired". No problem so far, everything is running fine. BUT... "retired" gives me the hint that nothing GREAT will be done to this branch anymore :) Now I am questioning

Re: Python vs Ruby

2005-10-21 Thread Harald Armin Massa
Casey, > I have heard, but have not been able to verify that if a program is > about > 10,000 lines in C++ > it is about > 5,000 lines in Java > and it is about > 3,000 lines in Python (Ruby to?) BTW: it is normally only 50 lines in Perl. Not that you could read it, though Harald -- http://ma

Re: Python's Performance

2005-10-10 Thread Harald Armin Massa
Fredrik, but still some very valuable people write: """ What is Python? Python is an interpreted, interactive, object-oriented programming language. It is often compared to Tcl, Perl, Scheme or Java. """ taken from http://www.python.org/doc/Summary.html maybe someone could update that??? Haral

multiple replaces

2005-09-16 Thread Harald Armin Massa
again, and again ... another try of templating txt=""" whatever the machine with bing 10% of boo is foo """ h1=txt.replace("%","%%") h2=h1.replace("","%(tree)s") h3=h2.replace("","%(house)s") house="something awfull" tree="something beautifull" print h3 % locals() --> the approach allows

Re: Dabo in 30 seconds?

2005-08-01 Thread Harald Armin Massa
Cliff (who has a love/hate relationship with Twisted) wrote: > Twisted, for one, can't be used without knowing Python. In fact, > without knowing Python quite well. For that matter, it can't easily be > used . Is "using" really a verb that is fitting for working with twisted? As much as I read

Re: PEP on path module for standard library

2005-07-22 Thread Harald Armin Massa
>Having path descend from str/unicode is extremely useful since I can >then pass a path object to any function someone else wrote without >having to worry about whether they were checking for basestring. I use path.py from Jason to encapsulate a lot of the windows plattform specialities of path dea

Re: PEP on path module for standard library

2005-07-22 Thread Harald Armin Massa
> When you try to 'freeze' an application module, >and Jason's 'path' module is present in any of the directories that are >looked at by freeze's module finder (your app doesn't have to import >it), freeze goes into an infinite loop of imports, eventually getting a >'maximum recursion depth' except

Re: How do you program in Python?

2005-07-05 Thread Harald Armin Massa
Peter, > I do all my work using Scite Me too! > So, any time I need to test the changes, I hit four keys (which at this > point is understandably more like a "chord" that I hit without direct > awareness of it) and I'm done. Sounds pretty close to old-style BASIC > and since I've come that route

Re: Considering moving from Delphi to Python [Some questions]

2005-07-05 Thread Harald Armin Massa
> I want some feedback on folllwing: > anybody who has experience in writing SOAP servers in Python and data > entry heavy web applications. > Any suggestions? > darkcowherd > I have never written SOAP Servers. But I have very very good experience in creating entry heavy web application using Pytho