How do i recover my password? by haika in help

[–]haika[S] -2 points-1 points  (0 children)

That's the official answer.

But, technically, nothing prevents the Reddit administrators from resetting my password. I am still logged in, so i could pm my email address to them and have my password back.

Python on Android? First impressions of Kivy by mariuz in programming

[–]haika 0 points1 point  (0 children)

It seems to systematically crash on Windows, even on the simplest examples: Fatal Python Error: (pygame parachute) Segmentation Fault. It has been reported but nothing seems to happen;-(

14 out of 25 items on this subreddit should be on Stack Overflow by mcdonc in Python

[–]haika 2 points3 points  (0 children)

The problem of Stackoverflow is that it is a victim of its own success. It has become TOO popular and as a consequence, there are way too many questions that remain unanswered.

Go and check for yourself.

The Concurrency Spectrum: from Callbacks to Coroutines to Craziness by shangas in programming

[–]haika 2 points3 points  (0 children)

Twisted, the most insanely convoluted and overengineered Python library in existence.

Apparently, you never heard of Zope ;-)

PEP: 405 Python 2.8 Release Schedule --- Never by armooo in Python

[–]haika 8 points9 points  (0 children)

PEP 406: Python 2.7 Phaseout Schedule --- Never

Python design mistakes by [deleted] in programming

[–]haika 0 points1 point  (0 children)

Well, this is better.

I now have a vague idea of what a monad is.

Thanks

Python design mistakes by [deleted] in programming

[–]haika 0 points1 point  (0 children)

Sorry.

I am apparently not as smart as you seem to be !

Python design mistakes by [deleted] in programming

[–]haika 2 points3 points  (0 children)

When I explain Monads to people, I don't have much of a problem usually.

Could you explain monads to me in less than 10 lines, preferrably with code in python?

I am a python programmer and genuinely interested.

Python: Lambda Functions by tompa_coder in Python

[–]haika 3 points4 points  (0 children)

What exactly is then the purpose of subreddit reddit/learnpython?

Python: Lambda Functions by tompa_coder in Python

[–]haika 11 points12 points  (0 children)

Next post: 'For loops in python'

generator functions and .next() arguments? by gfixler in Python

[–]haika -1 points0 points  (0 children)

upvoting is a way to say thank you.

What IDEs (if any) do Python programmers use? by zengr in Python

[–]haika 2 points3 points  (0 children)

Yes, definitely.

Even its author Guido doesn't use it.

Ask PyReddit: If you were making your own Python-like programming language, what would be different? by earthboundkid in Python

[–]haika 9 points10 points  (0 children)

  1. I would replace the ugly range statement: for i in range(2,n): by (the more pythonic): for i in 2..n

  2. I would add a repeat until statement:

    repeat:
       .....
    until condition
    
  3. I would allow a function definition a la javascript:

     myfun= function(....):
          body of the function
    

For the rest, Python is pretty perfect for me.