| bio | website | kamilkisiel.net |
|---|---|---|
| location | Vancouver, Canada | |
| age | 29 | |
| visits | member for | 4 years, 8 months |
| seen | 5 hours ago | |
| stats | profile views | 640 |
I've been Linux user for over 10 years, and been computing since around age 11. I got my start in programming by learning Perl on my Debian machine in high school. Since then I've learned numerous languages including C, C++, and Python. I've also dabbled in Java and assembly.
I have a bachelors degree in Computer Engineering from Simon Fraser University in Burnaby, BC, Canada.
I've worked in Japan as a CAD software developer in C++ on Windows. Not my favorite environment, but an interesting project never the less.
I'm currently employed by a Vancouver-based biotech startup working primarily on systems level projects but doing my fair share of software development.
My favorite programming language is Python and I use it nearly every day. My recent interests lie in virtualization, hpc, and large-scale systems management. I'm an active contributor to the Bcfg2 project.
|
Aug 1 |
awarded | Nice Question |
|
Jul 31 |
awarded | Popular Question |
|
Jun 8 |
awarded | Caucus |
|
Jun 4 |
comment |
Python subprocess module much slower than commands (deprecated) The real question is why aren't you using the socket module to communicate with the server instead of shelling out to nc? |
|
May 24 |
comment |
Should I keep a socket open during a long running process? I haven't actually finished the implementation yet :) I'm likely going to go with just opening a new socket each time. |
|
May 21 |
comment |
too many indentation when checking a string with many regular expressions serially in python Instead of 'if not result' you can use an 'else' block in the for loop. |
|
May 13 |
comment |
Python: wrapping recursive functions actually in your original example if you used foo = wrap(foo) and then called foo(5), it would also do the equivalent thing :) But decorator syntax is the clearer way to do that. |
|
May 13 |
answered | Python: wrapping recursive functions |
|
May 11 |
comment |
SQLAlchemy: Relation table with composite primary key Thanks, I think I get it now :) |
|
May 11 |
accepted | SQLAlchemy: Relation table with composite primary key |
|
May 11 |
awarded | Notable Question |
|
May 10 |
comment |
SQLAlchemy: Relation table with composite primary key Because the primary key for an action is a composite of its name and workflow_id. If the workflow_id was not in action_dependencies, there'd be no way to tell which workflow's actions the dependency was referring to. |
|
May 9 |
asked | SQLAlchemy: Relation table with composite primary key |
|
May 5 |
awarded | Nice Answer |
|
Apr 12 |
comment |
Multithreaded MD5 Checksum in Python The reason you're not seeing a greater than 20% speedup might indicate your processing is IO bound instead of CPU bound. You should do some profiling to see if this is the case, since in theory you should be able to get 100% efficiency on the compute portion. |
|
Apr 12 |
revised |
Pandas DataFrame - desired index has duplicate values Updated github issue links. |
|
Apr 11 |
revised |
Should I keep a socket open during a long running process? edited tags |
|
Apr 11 |
asked | Should I keep a socket open during a long running process? |
|
Apr 10 |
comment |
Explain Python entry points? Where is the 'my_ep_func' name used in all this process? It doesn't seem to be used for anything by the pkg_resources iterator. |
|
Mar 12 |
awarded | Necromancer |