orip

6,794
Reputation
275 views

Registered User

Name orip
Member for 1 year
Seen 11 hours ago
Website
Location
Age
11h
comment Which programming language meets these criteria for GUI app development?
@JB King - the JVM as a platform actually meets all of his requirements, and Groovy is one of the few good mixed dynamically- and statically-typed language. It's like Java, but good. An amazing fit for his list.
12h
answered What are solid NMaven or build server for .NET alternatives?
17h
comment running application on client machine
Delete this answer and edit your own post with the question
17h
answered Centering all HTML form elements using CSS
1d
comment Firefox opens a download dialog box when a page is opened.
+1, check the HTTP Content-Type. I've been burned by this before.
1d
comment git-svn clone Errors using git 1.5.1 and 1.6.5 and Subversion 1.4.2
Try git-svn clone -s file:///home/foo/bar
1d
revised disable click event for all links except the links inside a div
added missing paren
1d
answered disable click event for all links except the links inside a div
1d
answered jQuery Ajax on Different Port
2d
comment Running average in Python
+1, completely awesome
2d
accepted Running average in Python
2d
awarded  Nice Answer
2d
comment Running average in Python
In order to get a good comparison with the generator-expression solution, run list((sum/(i+1) for (i,sum) in enumerate(running_sum(nums)))) (nums instead of cauchy_numbers())
2d
comment Running average in Python
For the summing, your solution with enumerate instead of count+=1 should be faster than the simple generator I showed
2d
comment Running average in Python
You're still not generating the numbers. I timed just the numbers generation on my machine (no running sum), and it's clearly what's taking the most time: [9.3933679211354502, 9.4039924096689447, 9.3787265585455089]
2d
comment Running average in Python
I timed the simpler LC solution including generating the Cauchy numbers (which is what these 2 generator solutions do), and got slower numbers than the generators - see my comment below.
2d
comment Running average in Python
The timings I get: your LC solution (with generating the numbers each time): [16.687758600203807, 16.715932782820914, 16.738767166880578], my first generator solution: [14.070051607753044, 14.052854863427882, 14.081863001340764], my generator expression: [15.121694400936235, 15.14989374874375, 15.192127309105331]
2d
comment Running average in Python
Did you re-generate the Cauchy numbers each time, like the solution above? If not, you're timing the generation of the numbers as well as the running average.
2d
revised Running average in Python
marking the neat part like the little kid I am
2d
comment Running average in Python
Yes, you could use it like that, or you could use itertools.islice like in the second example: for avg in itertools.islice(running_average(), 10):
2d
revised How to search Google for HTML on a page
fixed google code search link
2d
revised Running average in Python
Added neat-o generator expression solution
2d
answered Running average in Python
2d
comment Standard way to embed version into python package?
nice (+1), but wouldn't you prefer numbers instead of strings? e.g. __version_info__ = (1,2,3)
2d
revised Adding Version Control / Numbering (?) to Python Project
fixed == typo
2d
revised Adding Version Control / Numbering (?) to Python Project
fixed __version__ formatting
2d
answered Adding Version Control / Numbering (?) to Python Project
2d
revised Independent MVC structure… need an advice
formatting and grammar fixes
Nov
23
accepted Junit REST tests?
Nov
19
answered Why do you prefer char* instead of string, in C++?
Nov
19
comment std::string equivalent for data with NULL characters?
Try std::vector<char> instead
Nov
19
comment std::string equivalent for data with NULL characters?
-1, you don't even know if the internal representation is in contiguous memory (depends on the implementation), so data() is very dangerous
Nov
17
awarded  Necromancer
Nov
17
answered Fastest way to search 1GB+ a string of data for the first occurence of a pattern in Python.
Nov
16
comment A language that doesn’t use ‘C’ ?
All the Python implementations boil down to a C-based interpreter or virtual machine
Nov
16
comment Syncing Rails development environments on my two computers
bitbucket.org gives you 1 free private Mercurial repository
Nov
16
comment Syncing Rails development environments on my two computers
Take the plunge and teach yourself version control. I use it even on one machine.
Nov
16
comment Jquery get Hex value rather RGB
+1, You could use Number.toString(16) - at least for each hex digit (or pad with 0 if under 16)
Nov
15
comment Great programming quotes
Really awesome quote, thanks
Nov
15
accepted “Add Controller” / “Add View” in a hybrid MVC/WebForms ASP.NET application
Nov
15
answered “Add Controller” / “Add View” in a hybrid MVC/WebForms ASP.NET application
Nov
15
revised C#: Downloading a URL with timeout
Mentioning WebClient solution
Nov
15
accepted C#: Downloading a URL with timeout
Nov
15
answered C#: Downloading a URL with timeout
Nov
15
revised c# HttpWebRequest POST’ing failing
fixed extra indentation
Nov
13
awarded  Yearling
Nov
11
comment Microsoft .NET vs. LAMP for startups
@asbjornu - certainly possible, but you can get ricochets by having such a difference between environments. Like AnonJr said, you don't want to spend time futzing.
Nov
11
comment Microsoft .NET vs. LAMP for startups
@Murph - you assume that an MS stack is cheaper to run disregarding license. My personal experience has been that it's similar for small deployments, and cheaper on Linux with large deployments. I'm sure other people have a different story, but I prefer not to present opinion and personal experience as fact.
Nov
11
comment Microsoft .NET vs. LAMP for startups
@blowdart: {Biz,Web}Spark is time-limited. "Easily scriptable" (with WMI, for example) is not the same as simple config files, which can be shared, versioned, diff'd, etc.. I maybe be giving IIS 7's config file an undeserving bad rap (IIS 6's metabase was terrible). We end up installing a large bunch of *nix-like utilities to do things like automate FTP, SSH, and SCP actions, and more. On Linux, you use your favorite scripting environment for automation, on Windows it's optimized for PowerShell. All of these can be overcome - obviously - but why pretend they're not there?
Nov
11
answered Microsoft .NET vs. LAMP for startups