Musatov wrote:
> I am thinking about a program where the only user input is win/loss.
>
> The program let's you know if you have won
> more than 31% of the time or not.
>
> Any suggestions about how to approach authoring
> such a program? Thanks.
The following results are from a python to
On 2018-12-08 17:54, Avi Gross wrote:
> This may be a bit awkward.
ICWYDT. "awk"ward. :wide-eyed_gaping_grin_with_finger-guns:
You seem to have your knickers in a knot.
> Your solution in AWK assumes lots of things. You assume the data
> is either on stdin or comes from automatically opening fi
: Re: Program to keep track of success percentage
On 2018-12-08 10:02, Musatov wrote:
> I am thinking about a program where the only user input is win/loss.
> The program let's you know if you have won more than 31% of the time
> or not. Any suggestions about how to approach au
On 2018-12-08 10:02, Musatov wrote:
> I am thinking about a program where the only user input is
> win/loss. The program let's you know if you have won more than 31%
> of the time or not. Any suggestions about how to approach authoring
> such a program? Thanks. --
Can be done with an awk one-liner
On Sat, Dec 8, 2018 at 1:22 PM Alister via Python-list
wrote:
>
> On Sat, 08 Dec 2018 10:02:41 -0800, Musatov wrote:
>
> > I am thinking about a program where the only user input is win/loss. The
> > program let's you know if you have won more than 31% of the time or not.
> > Any suggestions about
I am thinking about a program where the only user input is win/loss. The
program let's you know if you have won more than 31% of the time or not. Any
suggestions about how to approach authoring such a program? Thanks.
--
https://mail.python.org/mailman/listinfo/python-list
On Sat, 08 Dec 2018 10:02:41 -0800, Musatov wrote:
> I am thinking about a program where the only user input is win/loss. The
> program let's you know if you have won more than 31% of the time or not.
> Any suggestions about how to approach authoring such a program? Thanks.
To start describe how
On Fri, May 11, 2018 at 1:38 PM, Cameron Simpson wrote:
> Returning to system() versus the subprocess module, there are other reasons
> to prefer the subprocess module. The biggest is that os.system() runs a
> shell command, a string passed to the programme /bin/sh. As such, that
> string is subje
return 1
if func() == 1:
# indicate success as an exit status
sys.exit(0)
else:
# indicate failure as an exit status
sys.exit(1)
Your script doesn't call sys.exit(), and as such, unless it outright aborts
(for example, from an exception) Python itself returns a 0 exit stat
On Thu, May 10, 2018, 22:31 Rob Gaddi
>
>
> By not using os.system, it's been superseded for reasons exactly like
> yours. https://docs.python.org/3/library/subprocess.html is your friend.
>
Can someone please help me understand this better for me with a program .
Will the returncode of subproc
On 05/10/2018 09:48 AM, Ganesh Pal wrote:
I have to test a standalone tool from a python script and I am using
os.system() to run the tool . I need to take decision based on the return
value of the standalone tool .
But since os.system merely throws the output value to STDOUT & returns the
exit
"
else:
print "The standalone tool returned True. Successful"
1# python test_standalone_tool.py
None
0
The standalone tool returned True. Successful
True
0
The standalone tool returned True. Successful
The above problem is because we are referring to the exit st
On 3/30/2015 8:24 PM, Mario Figueiredo wrote:
On Mon, 30 Mar 2015 19:28:16 -0400, Terry Reedy
wrote:
So I suggested going ahead and testing PyBrain by using it. This
appears to have worked out well. I believe the only 2-3 issue she ran
into was a '/' that needed to become '//', that either 2
On Mon, 30 Mar 2015 19:28:16 -0400, Terry Reedy
wrote:
>
>So I suggested going ahead and testing PyBrain by using it. This
>appears to have worked out well. I believe the only 2-3 issue she ran
>into was a '/' that needed to become '//', that either 2to3 or I missed
>in the initial conversion
Last summer, a college student, who prefers Python to Java and Racket
(her other CS course languages), wanted to do a year-long AI research
project using PyBrain (for the ai part), numpy (required for PyBrain),
and pygame (for animated displays). We both preferred 3.x. That was
not an issue f
On 07/03/2014 10:03 AM, Wolfgang Maier wrote:
On 07/03/2014 06:09 AM, Terry Reedy wrote:
- what is happening to the stderr output when run in IDLE ? I guess it
is caught and suppressed somewhere, but to add to your observations the
check_output call doesn't hang on IDLE, but finishes eventually
On 07/03/2014 06:09 AM, Terry Reedy wrote:
Yes, but what puzzled me is that running
subprocess.check_output(r'pyflakes c:\programs\python34\lib')
in the regular interpreter *does* produce output instead of the error
message. My guess is that it fills up the pipe, so that check_output
starts read
On 7/2/2014 7:22 PM, Wolfgang Maier wrote:
Finally found out what the problem is:
When I'm running your command using the cmd console, I get this output:
c:\python34\lib\turtle.py:571: local variable 'rgb' is assigned to but never
used
c:\python34\lib\turtle.py:2936: local variable 'a21' is ass
On 07/02/2014 04:22 PM, Wolfgang Maier wrote:
So, everything's just fine except that it may be more convenient to use
Popen().communicate() to avoid raising the error in the first place :)
Nice sleuthing! :)
--
~Ethan~
--
https://mail.python.org/mailman/listinfo/python-list
Terry Reedy udel.edu> writes:
>
> On 7/2/2014 12:33 AM, Tim Roberts wrote:
> > Terry Reedy udel.edu> wrote:
> >>
> > You need to use
> > s.check_output("pyflakes c:\\programs\\python34\\lib\\turtle.py")
> > or
> > s.check_output(r"pyflakes c:\programs\python34\lib\turtle.py")
>
> Now
On 7/2/2014 1:37 PM, Wolfgang Maier wrote:
On 02.07.2014 19:31, Wolfgang Maier wrote:
I am not 100% sure whether that is the problem, but from what I gather
from the subprocess module docs the args string is passed to the Windows
CreateProcess function as a single string.
To me this seems to im
On 02.07.2014 19:31, Wolfgang Maier wrote:
I am not 100% sure whether that is the problem, but from what I gather
from the subprocess module docs the args string is passed to the Windows
CreateProcess function as a single string.
To me this seems to imply that it is passed as the lpCommandLine
p
On 02.07.2014 11:05, Terry Reedy wrote:
On 7/2/2014 12:33 AM, Tim Roberts wrote:
Terry Reedy wrote:
You need to use
s.check_output("pyflakes c:\\programs\\python34\\lib\\turtle.py")
or
s.check_output(r"pyflakes c:\programs\python34\lib\turtle.py")
Now I get "Command 'pyflakes c:\pr
On 7/2/2014 12:33 AM, Tim Roberts wrote:
Terry Reedy wrote:
It does not work on Windows. As I reported on
http://bugs.python.org/issue8631, msg222053,
subprocess.check_output("pyflakes -h")
works in the interpreter and Idle shell, while
s.check_output("pyflakes c:\programs\python34\lib\turt
Terry Reedy wrote:
>
>It does not work on Windows. As I reported on
>http://bugs.python.org/issue8631, msg222053,
> >>> subprocess.check_output("pyflakes -h")
>works in the interpreter and Idle shell, while
> >>> s.check_output("pyflakes c:\programs\python34\lib\turtle.py")
>gives bizarre output
t in the interpreter and hangs in the idle shell, as
does the code above.
My question is whether anyone reading that has had success getting
subprocess output capture to work consistently on Windows?
--
Terry Jan Reedy
--
https://mail.python.org/mailman/listinfo/python-list
Hello guys
On Following the development of my ADC (Analog-to-Digital converter
Residue function transference) i already got some progress with the
plot problem and (much thanks to colleagues who help me in this forum
and not only) i would like to show you all the progress that has
already got and
WHEN You Make A Sale
# FREE & Just ONE Click To Obtain Success With Click2Sell.
--
http://mail.python.org/mailman/listinfo/python-list
2010/1/14 Novocastrian_Nomad :
> Why is it so many, so called high tech companies, insist on the 19th
> century practice of demanding an employee's physical presence in a
> specific geographic location.
Pair programming and co-location with your end users both hugely
increase real productivity, in
Paul Rubin wrote:
> Novocastrian_Nomad writes:
>> I know whereof I speak, I have been fortunate enough to work remotely
>> (across the country) for the last ten years, for two different employers.
>
> Some like working remotely, others don't. I had to work remotely for my
> last couple of jobs.
ract, and perhaps there
> might be opportunities for you in this regard. Nevertheless, I
> obviously wish you success in your employment search.
>
As encouragement, or at least corroboration:
http://pythonide.blogspot.com/2008/10/how-to-make-money-with-free-software.html
regards
Steve
--
Steve
Paul Rubin wrote:
> a...@pythoncraft.com (Aahz) writes:
>> Incidentally, my company has had a fair amount of difficulty finding
>> Python programmers -- anyone in the SF area looking for a job near
>> Mountain View?
>
> I'm surprised there aren't a ton of Python programmers there, given
> that's w
Novocastrian_Nomad writes:
> I know whereof I speak, I have been fortunate enough to work remotely
> (across the country) for the last ten years, for two different employers.
Some like working remotely, others don't. I had to work remotely for my
last couple of jobs. I hated it. I want to actu
Aahz wrote:
In article <6a12ed15-e7f9-43ab-9b90-984525808...@o28g2000yqh.googlegroups.com>,
Novocastrian_Nomad wrote:
Why is it so many, so called high tech companies, insist on the 19th
century practice of demanding an employee's physical presence in a
specific geographic location.
Because
thing well can be completely oblivious of the ways of another thing.
Sometimes, it seems to pay to be knowledgeable in two different kinds
of endeavour whose practitioners rarely interact, and perhaps there
might be opportunities for you in this regard. Nevertheless, I
obviously wish you success i
In article <6a12ed15-e7f9-43ab-9b90-984525808...@o28g2000yqh.googlegroups.com>,
Novocastrian_Nomad wrote:
>
>Why is it so many, so called high tech companies, insist on the 19th
>century practice of demanding an employee's physical presence in a
>specific geographic location.
Because it works be
Why is it so many, so called high tech companies, insist on the 19th
century practice of demanding an employee's physical presence in a
specific geographic location.
This is the 21st century with climate change, carbon footprints,
broadband internet, telecommuting, tele-presence, telephones, fax
m
In article <7x4omosdly@ruckus.brouhaha.com>,
Paul Rubin wrote:
>a...@pythoncraft.com (Aahz) writes:
>>
>> Incidentally, my company has had a fair amount of difficulty finding
>> Python programmers -- anyone in the SF area looking for a job near
>> Mountain View?
>
>I'm surprised there aren't
In article ,
Robert Kern wrote:
>On 2010-01-14 13:14 PM, Paul Rubin wrote:
>> a...@pythoncraft.com (Aahz) writes:
>>>
>>> Incidentally, my company has had a fair amount of difficulty finding
>>> Python programmers -- anyone in the SF area looking for a job near
>>> Mountain View?
>>
>> I'm surpri
Paul Rubin wrote:
a...@pythoncraft.com (Aahz) writes:
Incidentally, my company has had a fair amount of difficulty finding
Python programmers -- anyone in the SF area looking for a job near
Mountain View?
I'm surprised there aren't a ton of Python programmers there, given
that's where
On 2010-01-14 13:14 PM, Paul Rubin wrote:
a...@pythoncraft.com (Aahz) writes:
Incidentally, my company has had a fair amount of difficulty finding
Python programmers -- anyone in the SF area looking for a job near
Mountain View?
I'm surprised there aren't a ton of Python programmers there, giv
a...@pythoncraft.com (Aahz) writes:
> Incidentally, my company has had a fair amount of difficulty finding
> Python programmers -- anyone in the SF area looking for a job near
> Mountain View?
I'm surprised there aren't a ton of Python programmers there, given
that's where Brand G is and so forth.
Andrew Jonathan Fine wrote:
I was laid off by Honeywell several months after I had made my
presentation in the 2005 Python Conference.
Since then I have been unable to find work either as a software
engineer or in any other capacity, even at service jobs. I've sent
resumes and have been consi
In article ,
Andrew Jonathan Fine wrote:
>
>I was laid off by Honeywell several months after I had made my
>presentation in the 2005 Python Conference.
>
>Since then I have been unable to find work either as a software
>engineer or in any other capacity, even at service jobs. I've sent
>resumes
Please, if there is anyone out there who needs a highly creative and
highly skilled software designer for new and completely original work,
then for the love of God I implore you to contact me.
You don't write if you are willing to relocate, and if yes, if outside
the USA is an option.
We hir
Andrew Jonathan Fine writes:
> On Dec 28, 9:20 am, webtourist wrote:
>> Andrew I'm very sorry to hear your situation.
>> This is, I don't know how else to put it, so hard to believe - that
>> someone like you has been jobless since 2005,
>> well over 2 years before the "big bust".
>> Good luck t
Move to NYC, Chicago, or Boston and try to land a job working in the
financial industry they're always hiring and Python is getting very popular
amongst the quantitative and computation finance sectors.
You may need to use head hunters two I recommended are Connections NY, Open
Systems, and Tek Sy
On Dec 28, 6:21 am, Steve Holden wrote:
> Andrew Jonathan Fine wrote:
> > To whom it may concern,
>
> > I am the author of "Honeywell Avoids Documentation Costs with Python
> > and other Open Standards!"
>
> > I was laid off by Honeywell several months after I had made my
> > presentation in the 2
On Dec 28, 1:32 am, Andrew Jonathan Fine
wrote:
> To whom it may concern,
>
> I am the author of "Honeywell Avoids Documentation Costs with Python
> and other Open Standards!"
>
> I was laid off by Honeywell several months after I had made my
> presentation in the 2005 Python Conference.
>
> Since
d on age/race/area of
residence/an out-of-the-norm CV.
So just in case you want to consider the part shown in the book,
here's the link:
http://www.troubleshooters.com/bookstore/rl.htm
Much of Mr. Litt-s job-searching-philosophy is also presented in
several articles on his website, but in you
er.com/blogs/tayseer
From: Steve Holden
To: python-list@python.org
Sent: Mon, December 28, 2009 3:21:38 PM
Subject: Re: Author of a Python Success Story Needs a Job!
Andrew Jonathan Fine wrote:
> To whom it may concern,
>
> I am the author of "Honeywell Avoids Documentation Costs with
Andrew Jonathan Fine wrote:
> To whom it may concern,
>
> I am the author of "Honeywell Avoids Documentation Costs with Python
> and other Open Standards!"
>
> I was laid off by Honeywell several months after I had made my
> presentation in the 2005 Python Conference.
>
> Since then I have been
On Dec 28, 12:32 pm, Andrew Jonathan Fine
wrote:
> To whom it may concern,
>
> I am the author of "Honeywell Avoids Documentation Costs with Python
> and other Open Standards!"
>
> I was laid off by Honeywell several months after I had made my
> presentation in the 2005 Python Conference.
>
> Sinc
To whom it may concern,
I am the author of "Honeywell Avoids Documentation Costs with Python
and other Open Standards!"
I was laid off by Honeywell several months after I had made my
presentation in the 2005 Python Conference.
Since then I have been unable to find work either as a software
engin
nocent" may have a significant cost (e.g. resolving obj.name), and what
looks complicated may be fairly fast (e.g. a list comprehension).
It is then I decided to write up here this as a success story, as I am
very newcomer to Python but come up with a nearly commercial product
in a ve
efore. Just one note
about optimizing Python code: do not optimize Python code based on
your assumptions, just go and test if it really runs faster. I don't
want to go to details of this hint, but believe me making Python code
optimized may be very very tricky.
It is then I decided to write
Thanks for your advice Gerdus, but I have tried your suggestion with no
success. It has at least been beneficial to discover a tool which I did
not know about in 'Dependency Walker'; all dependencies appear okay.
HOWEVER (!!!) I HAVE JUST HAD SUCCESS IN LOADING THE DLL !!! In
has any one out there succeeded in compiling/installing mod_python for apache2
and python 2.5. I am using python 2.5 on cygwin.
thanks in advance
Edwin
The information contained in this message and any attachment may be
proprietary, confidential, and privileged or subject to the work
produc
Someone wrote:
I'm just curious whether this
argument against dynamic typing - that you end up doing the job of a
static compiler in test code - holds in practice.
I suspect that, although some of the things caught
by the tests would be caught by static typing, the
very *same* tests are also ca
New jewelry fashions need several factors going for them if they are
to succeed. These include aesthetics, price, timing, and maybe even
just sheer, plain luck. Threader earrings seem to have all these
qualities in abundance. Also known as earthreads or ear strings,
threader earrings have a very la
On Apr 30, 10:47 am, [EMAIL PROTECTED] wrote:
> > A rather off-topic and perhaps naive question, but isn't a 1:4
> > production/test ratio a bit too much ? Is there a guesstimate of what
> > percentage of this test code tests for things that you would get for
> > free in a statically typed language
>
> A rather off-topic and perhaps naive question, but isn't a 1:4
> production/test ratio a bit too much ? Is there a guesstimate of what
> percentage of this test code tests for things that you would get for
> free in a statically typed language ? I'm just curious whether this
> argument against
On Apr 29, 2:25 pm, Fuzzyman <[EMAIL PROTECTED]> wrote:
> There are around 30 000 lines of Python in the production code and
> about 120 000 lines of Python code in the test framework.
A rather off-topic and perhaps naive question, but isn't a 1:4
production/test ratio a bit too much ? Is there a
On Apr 22, 11:25 am, azrael <[EMAIL PROTECTED]> wrote:
> Hy guys,
> A friend of mine i a proud PERL developer which always keeps making
> jokes on python's cost.
>
> Please give me any arguments to cut him down about his commnets
> like :"keep programing i python. maybe, one day, you will be able t
In article <[EMAIL PROTECTED]>,
azrael <[EMAIL PROTECTED]> wrote:
>
>Which big aplications are written in python.
YouTube
--
Aahz ([EMAIL PROTECTED]) <*> http://www.pythoncraft.com/
Why is this newsgroup different from all other newsgroups?
--
http://mail.python.org/mailman
On 2008-04-24, Istvan Albert <[EMAIL PROTECTED]> wrote:
> On Apr 23, 2:08 pm, Bob Woodham <[EMAIL PROTECTED]> wrote:
>
>> x = x++;
>>
>> has unspecified behaviour in C. That is, it is not specified
>> whether the value of x after execution of the statement is the
>> old value of x or one plus the
On 2008-04-24, AlFire <[EMAIL PROTECTED]> wrote:
> Bob Woodham wrote:
>
>>
>> x = x++;
>>
>> has unspecified behaviour in C.
>
> what about C++
To the extent that (historically) C++ was a superset of C, it was true of C++
as well. However, I haven't kept pace with the C++ standardization proces
En Wed, 23 Apr 2008 08:43:56 -0300, Paul Boddie <[EMAIL PROTECTED]>
escribió:
On 23 Apr, 11:12, Mark Wooding <[EMAIL PROTECTED]> wrote:
Gabriel Genellina <[EMAIL PROTECTED]> wrote:
> Because Python doesn't follow the "boxed variables" model.
Be careful here. `Boxed types' or `boxed objects'
On Apr 23, 2:08 pm, Bob Woodham <[EMAIL PROTECTED]> wrote:
> x = x++;
>
> has unspecified behaviour in C. That is, it is not specified
> whether the value of x after execution of the statement is the
> old value of x or one plus the old value of x.
unspecified means that the result could be anyt
Bob Woodham wrote:
x = x++;
has unspecified behaviour in C.
what about C++
--
http://mail.python.org/mailman/listinfo/python-list
On 2008-04-23, Mark Wooding <[EMAIL PROTECTED]> wrote:
> Python is actually one of the few to define one but not the other. (The
> other one I can think of is Acorn's BBC BASIC, for whatever that's
> worth; it too lacks `++'.)
You should've added it in Termite Basic then :-p
--
http://mail.python
Cristina Yenyxe González García wrote:
2008/4/23, Reedick, Andrew <[EMAIL PROTECTED]>:
IIRC, Python is used in games like Eve Online (SciFi MMO) and Vampire:
Bloodlines (RPG.) Years later, a dedicated fan is still fixing/updating
the Bloodlines python scripts that control the dialogue and scr
On 2008-04-22, Paul Hankin <[EMAIL PROTECTED]> wrote:
> On Apr 22, 5:50 pm, Jérémy Wagner <[EMAIL PROTECTED]> wrote:
>> Sure. Python is more readable than Perl, though I have found Python
>> to have a weird behavior regarding this little issue :
>>
>> How can you explain that Python doesn't support
Civilisation 4 uses Python everywhere and is the main tool used by
Modders of the game.
--
http://mail.python.org/mailman/listinfo/python-list
2008/4/23, Reedick, Andrew <[EMAIL PROTECTED]>:
>
> IIRC, Python is used in games like Eve Online (SciFi MMO) and Vampire:
> Bloodlines (RPG.) Years later, a dedicated fan is still fixing/updating
> the Bloodlines python scripts that control the dialogue and scripted
> events.
>
Now that you m
> -Original Message-
> From: [EMAIL PROTECTED] [mailto:python-
> [EMAIL PROTECTED] On Behalf Of azrael
> Sent: Tuesday, April 22, 2008 6:26 AM
> To: python-list@python.org
> Subject: Python Success stories
>
> Hy guys,
> A friend of mine i a proud PERL develope
On 23 Apr, 11:12, Mark Wooding <[EMAIL PROTECTED]> wrote:
> Gabriel Genellina <[EMAIL PROTECTED]> wrote:
> > Because Python doesn't follow the "boxed variables" model.
>
> Be careful here. `Boxed types' or `boxed objects' is a technical term
> essentially meaning `heap-allocated objects, probably
azrael <[EMAIL PROTECTED]> wrote:
> A friend of mine i a proud PERL developer which always keeps making
> jokes on python's cost.
There is only one sane way to deal with this situation: You need a
common enemy. Java comes to mind ;-)
cu
Philipp
--
Dr. Philipp Pagel
Lehrstuhl f. Genomori
Gabriel Genellina <[EMAIL PROTECTED]> wrote:
> Because Python doesn't follow the "boxed variables" model.
Be careful here. `Boxed types' or `boxed objects' is a technical term
essentially meaning `heap-allocated objects, probably with reference
semantics', which Python most definitely does use
Roy Smith wrote:
In article <[EMAIL PROTECTED]>,
Steve Holden <[EMAIL PROTECTED]> wrote:
Challenge him to a dual with dead kippers at twenty paces.
You gotta be careful about stuff like this. You might slap him with a dead
kipper only to discover he's got a dead camel in his pocket.
Of c
In article <[EMAIL PROTECTED]>,
Steve Holden <[EMAIL PROTECTED]> wrote:
> Challenge him to a dual with dead kippers at twenty paces.
You gotta be careful about stuff like this. You might slap him with a dead
kipper only to discover he's got a dead camel in his pocket.
Of course, there's alway
Ben Finney wrote:
Steve Holden <[EMAIL PROTECTED]> writes:
Challenge him to a dual with dead kippers at twenty paces.
Please, have some dignity!
Challenge him to a duel with live kippers. Live, *rabid* kippers. With
frickin' laser beams on their heads.
I like your style.
Though considerin
Steve Holden <[EMAIL PROTECTED]> writes:
> Challenge him to a dual with dead kippers at twenty paces.
Please, have some dignity!
Challenge him to a duel with live kippers. Live, *rabid* kippers. With
frickin' laser beams on their heads.
--
\ "A man's only as old as the woman he feels."
Nikita the Spider wrote:
In article
<[EMAIL PROTECTED]>,
azrael <[EMAIL PROTECTED]> wrote:
Which big aplications are written in python. I see its development,
But i can't come up with a big name. I know that there are a lot of
companys using python, but is there anythong big written only in
p
azrael wrote:
Hy guys,
A friend of mine i a proud PERL developer which always keeps making
jokes on python's cost.
Please give me any arguments to cut him down about his commnets
like :"keep programing i python. maybe, one day, you will be able to
program in VisualBasic"
This hurts. Please give
http://code.google.com/appengine/docs/whatisgoogleappengine.html
2008/4/22 Ivan Illarionov <[EMAIL PROTECTED]>:
> On 22 апр, 14:25, azrael <[EMAIL PROTECTED]> wrote:
> []
>
> > This hurts. Please give me informations about realy famous
> > aplications.
>
> What do you mean by "really famous
On 22 апр, 14:25, azrael <[EMAIL PROTECTED]> wrote:
[]
> This hurts. Please give me informations about realy famous
> aplications.
What do you mean by "really famous"?
Information is here:
http://www.python.org/about/quotes/
Are YouTube and Google famous enough?
--
Ivan
--
http://mail.pytho
On Apr 22, 3:25 am, azrael <[EMAIL PROTECTED]> wrote:
> Hy guys,
> A friend of mine i a proud PERL developer which always keeps making
> jokes on python's cost.
>
> Please give me any arguments to cut him down about his commnets
> like :"keep programing i python. maybe, one day, you will be able to
En Tue, 22 Apr 2008 13:50:54 -0300, Jérémy Wagner <[EMAIL PROTECTED]> escribió:
> Sure. Python is more readable than Perl, though I have found Python
> to have a weird behavior regarding this little issue :
>
> How can you explain that Python doesn't support the ++ opeator,
> whereas at the same t
On Apr 22, 12:50 pm, Jérémy Wagner <[EMAIL PROTECTED]> wrote:
> Sure. Python is more readable than Perl, though I have found Python
> to have a weird behavior regarding this little issue :
>
> How can you explain that Python doesn't support the ++ opeator,
> whereas at the same time it does support
On Apr 22, 5:50 pm, Jérémy Wagner <[EMAIL PROTECTED]> wrote:
> Sure. Python is more readable than Perl, though I have found Python
> to have a weird behavior regarding this little issue :
>
> How can you explain that Python doesn't support the ++ opeator,
> whereas at the same time it does support
Sure. Python is more readable than Perl, though I have found Python
to have a weird behavior regarding this little issue :
How can you explain that Python doesn't support the ++ opeator,
whereas at the same time it does support the += operator ???
No python developer I know has been able to answ
On 22 Apr, 16:02, Ben Finney <[EMAIL PROTECTED]>
wrote:
>
> What lesson is it intended to teach, other than that "Fuck you" is
> somehow a "retort"? I can't see that improving too many situations.
It isn't supposed to teach anything: it's a joke! It'd be more
relevant (yet somewhat surreal if deta
On Apr 22, 5:25 am, azrael <[EMAIL PROTECTED]> wrote:
> Hy guys,
> A friend of mine i a proud PERL developer which always keeps making
> jokes on python's cost.
>
> Please give me any arguments to cut him down about his commnets
> like :"keep programing i python. maybe, one day, you will be able to
cy
> programming systems.
>
> If you programm in Python, your applications become quite small. Only
> frameworks in Python are big.
So the fact that there are no big applications written in Python IS the
success story.
--
D'Arcy J.M. Cain <[EMAIL PROTECTED]> | Democ
ttp://www.tiobe.com/index.php/content/paperinfo/tpci/index.html
Also, you can enter the Python main site, on the right and very prominently you
have a link to many successful stories: http://www.python.org/about/success/
> But the real problem is not your friend - it's you. He hurts
> Which big aplications are written in python. I see its development,
There are no big applications written in Python.
Big applications are written in JAVA or COBOL or C# or other legacy
programming systems.
If you programm in Python, your applications become quite small. Only
frameworks in Pyth
"F**k you" -- is generally an indication of "creativity blackout"
followed by "frustration". Not exactly a clever retort.
On 4/22/08, Max Erickson <[EMAIL PROTECTED]> wrote:
> Ben Finney <[EMAIL PROTECTED]> wrote:
>
> > Carl Banks <[EMAIL PROTECTED]> writes:
> >
> >> Let me tell you a little stor
On Apr 22, 6:25 am, azrael <[EMAIL PROTECTED]> wrote:
> A friend of mine i a proud PERL developer which always keeps making
> jokes on python's cost.
> This hurts. Please give me informations about realy famous
> aplications.
you could show him what Master Yoda said when he compared Python to
Pe
azrael wrote:
Which big aplications are written in python. I see its development,
But i can't come up with a big name. I know that there are a lot of
companys using python, but is there anythong big written only in
python. I want him to fuck of with his perl once and for all time
Not really "bi
1 - 100 of 135 matches
Mail list logo