codeape

5,696
Reputation
440 views

Registered User

Name codeape
Member for 1 year
Seen 14 hours ago
Website
Location Oslo, Norway
Age 35
Python programmer. + a little .NET
19h
revised What is paste script ?
added 313 characters in body
19h
revised What is paste script ?
added 340 characters in body; edited body
19h
answered What is paste script ?
Nov
17
revised use random functions (python)
improved formatting
Nov
17
answered use random functions (python)
Nov
17
comment Integration Testing for a Wep App
Selenium supports several browsers for running tests, see seleniumhq.org/about/platforms.html#browsers/… . It is only the recording of tests (using Selenium IDE) that is FF only.
Nov
17
awarded  Necromancer
Nov
17
accepted how can I filter on the second element in a tuple of tuples?
Nov
17
answered how can I filter on the second element in a tuple of tuples?
Nov
6
comment Is it OK for a process to be CPU intensive for a prolonged period of time?
OK, it seems I need to investigate a bit further. Will try to figure out if it is in fact the I/O that is causing the problems.
Nov
6
comment Is it OK for a process to be CPU intensive for a prolonged period of time?
On 1.: I agree abt. premature optimization. But here it is an actual issue. Customer's systems have become unresponsive.
Nov
6
comment Is it OK for a process to be CPU intensive for a prolonged period of time?
This seems like exactly the problem that I am describing (it's not on medical equipment, luckily...). Most commenters/answers claim that the OS handles a CPU intensive process OK. Your experiences goes against that.
Nov
6
comment Is it OK for a process to be CPU intensive for a prolonged period of time?
Great, thanks. I had forgotten about the arguments to `start.exe`.
Nov
6
comment Is it OK for a process to be CPU intensive for a prolonged period of time?
I am not sure abt. the processors, will check on the customer systems after the weekend. The program is single threaded.
Nov
6
revised Is it OK for a process to be CPU intensive for a prolonged period of time?
added 320 characters in body
Nov
6
comment Is it OK for a process to be CPU intensive for a prolonged period of time?
@Michael Petrotta: Yes, but the pattern is: 1. read a single file 2. process the file 3. write the output file. 4. goto 1. Time is mostly spent on step 2.
Nov
6
comment Is it OK for a process to be CPU intensive for a prolonged period of time?
Thanks, I will try that.
Nov
6
comment Is it OK for a process to be CPU intensive for a prolonged period of time?
But then: Is it not a safe assumption that a process that basically only does a lot of regexp matching is CPU bound? If I read @Godeke right: If I am CPU bound, it would not have caused those problems I describe?
Nov
6
comment Is it OK for a process to be CPU intensive for a prolonged period of time?
Hmm. I will indeed do as @Michael Petrotta suggests. Perhaps my assumptions are wrong.
Nov
6
comment Is it OK for a process to be CPU intensive for a prolonged period of time?
I am quite confident that there is very little IO load. The program reads the entire file into memory, then does the regexp matching stuff, which builds an in-memory result, then writes the result to disk. There is no way that the single read and single write would cause the CPU to peak.
Nov
6
asked Is it OK for a process to be CPU intensive for a prolonged period of time?
Oct
27
revised In django, how to write a query that selects all possible combinations of four integers?
added 381 characters in body
Oct
27
answered In django, how to write a query that selects all possible combinations of four integers?
Oct
27
comment What is the pythonic way to detect the last element in a python ‘for’ loop?
Related: stackoverflow.com/questions/323750/…
Oct
27
revised How to find length of an element in a list?
added 94 characters in body
Oct
27
answered How to find length of an element in a list?
Oct
27
revised python script to match C function signature in multiple lines
improved formating
Oct
27
revised python script to match C function signature in multiple lines
added 152 characters in body
Oct
27
revised python script to match C function signature in multiple lines
added 275 characters in body
Oct
27
answered python script to match C function signature in multiple lines
Oct
23
accepted Was it bad practice for an application to install a 3rd party assembly in the GAC without asking?
Oct
22
revised Load different modules without changing the logic file
typo
Oct
22
comment django syncdb and an updated model
+1 South works great. Have used it in production.
Oct
21
revised Python Console Website
added 15 characters in body
Oct
21
comment Python Console Website
The site uses Silverlight (or Moonlight 2) to run IronPython in the browser
Oct
21
answered Python Console Website
Oct
20
accepted Problem with calling a run file from c# Application
Oct
20
revised F# List.map equivalent in C#?
added 32 characters in body
Oct
20
answered F# List.map equivalent in C#?
Oct
20
answered Problem with calling a run file from c# Application
Oct
20
revised How do I return a value from a console application to a service in .NET?
added 2 characters in body
Oct
20
comment Is it pythonic to import inside functions?
@becomingGuru: Sure, but comments can get out of sync with reality...
Oct
19
answered How do I return a value from a console application to a service in .NET?
Oct
19
comment php vs python. scalability
Check out this blog post blog.curiasolutions.com/2009/09/… . Some perf. comparisons between PHP and Python. For instance, mod_wsgi is able to serve more requests per second than PHP.
Oct
19
comment plotting time in python with matplotlib
"... on conversion to datetime, the year is set to 1990": Could you please post the code you use to convert from string to datetime? Something might be wrong with the conversion. Re. the formatting of chart labels, see the date_demo1 link provided by J. K. Seppänen. The matplot lib documentation is excellent, BTW. matplotlib.sourceforge.net/index.html
Oct
15
accepted plotting time in python with matplotlib
Oct
15
comment Going Open (almost): Moving from MS/ASP to LIN/Py
related: stackoverflow.com/questions/819056/…
Oct
15
answered plotting time in python with matplotlib
Oct
14
comment Python: imports at the beginning of the main program & PEP 8
Related: stackoverflow.com/questions/1024049/…
Oct
14
comment Where to find documentation to python’s library’s inner workings
Read the source. Then contribute a patch to the Python documentation, where you explain how Queue.join_with_timeout works.