Posts tagged python

Jul13

Python Remote Debugger Announcement

python debugging remote cherrypy | comments

Recently, I desired to have a simple Python function I could call with as little fuss as possible that would start up some kind of server that I could use to tell what is going on inside my program at a later date, without resorting to some kind of logging system or console output.

Continue reading »

Jun13

Bypassing the Python GIL with ctypes

python programming gil ctypes c | comments

I recently read an interesting article (actually, the slides linked to) about the horror that is the Global Interpreter Lock in Python, especially with multicore CPUs. And I agree — in these cases, the GIL is painful.

Continue reading »

Feb16

The perfect programming language

ruby python programming c c++ gcc | comments

I’ve been doing a lot of programming lately, and in a multitude of different languages. For the most part, these are pretty “decent” languages: C, Python, Ruby, etc. However, none of the languages really makes me happy.

Continue reading »

Dec13

Python 3.0

python programming | comments

There are lots of things I dislike about Python 3.0. I dislike the removal of the

print
statement (I would have much preferred allowing Ruby-like function calling without parenthesis, and transparently changing the statement to a function). I dislike the fact that
map
and friends return iterators instead of, you know, mapping things.

Continue reading »

Oct21

Python 2.6? Shows promise, but I can't switch yet

programming python | comments

Python 2.6 was recently released, with 3.0 coming out soon. Python 2.6 is meant to be sort of a stepping stone between the trusty old 2.x series and the hot, scary 3.0 series. So, naturally, I downloaded 2.6 to play with.

Continue reading »

Jun05

Some scipy stuff

matlab programming python scipy | comments

It’s been quiet here lately. I’ve had a lot of projects going on that occupy most of my time in the evenings and on weekends.

Continue reading »