| bio | website | mike.axiak.net |
|---|---|---|
| location | Cambridge, MA | |
| age | 26 | |
| visits | member for | 3 years, 1 month |
| seen | Mar 10 at 0:58 | |
| stats | profile views | 460 |
All of my contributions to StackOverflow, unless otherwise noted, are released under the CC0 license, found at: http://creativecommons.org/publicdomain/zero/1.0
|
Apr 24 |
comment |
Transition from infix to prefix notation I usually start from the outside and work my way in. So I think about what I want and just walk backwards from that. |
|
Apr 24 |
comment |
can httplib (python) interact with a page and its javascript? If you go this route, I HIGHLY suggest splinter: splinter.cobrateam.info |
|
Apr 24 |
comment |
Transition from infix to prefix notation I think it's only idiomatic because it's what you're used to. The prefix notation is much more consistent than infix and so it can be easier to read once you get used to it. |
|
Apr 13 |
comment |
Why fractional iteration step compiles into different JavaScript than integer step For example, "asdf".charCodeAt(2) / 50 is also a constant expression. Math.sin(32) is a constant expression. |
|
Apr 13 |
comment |
Why fractional iteration step compiles into different JavaScript than integer step You have to realize that CoffeeScript is a source translator, not a compiler. It doesn't have nor want to have the machinery to detect that 1/2 is a constant expression (since to do that, it'd need a javascript interpreter). |
|
Apr 13 |
comment |
Get a list of names which start with certain letters What have you tried so far? |
|
Apr 12 |
comment |
PyBrain: When creating network from ground up how and where do you create a bias? Good detective work. Note the buildNetwork is just a shortcut and in the API documentation they discuss building a network (look at the docs for Network) |
|
Apr 10 |
comment |
Solving for the inverse of a function in R Ah, R isn't my primary language so I'm never sure what the style is... I'll fix it up. |
|
Mar 29 |
comment |
Python “except” comma? Also note that in Python 3 the comma becomes a more readable 'as': except Exception as ex |
|
Feb 17 |
comment |
Python: how do I call `print` from `eval` in a loop? Which version of python is this? |
|
Feb 9 |
comment |
Formatting in Python 2.7 That's because you're using python 2.6. This question specifically talks about 2.7. Stop downvoting for no good reason. |
|
Dec 8 |
comment |
Creating infinity and negative infinity in python for any object This is the correct answer, thanks! |
|
Jul 13 |
comment |
Trying to register default QuartzSchedulerMBean Thanks! Just what I needed. |
|
Jul 1 |
comment |
Oracle hash data across rows i meant to say columns, let me fix that, thanks. |
|
Jun 16 |
comment |
How to optimize for-comprehensions and loops in Scala? @OscarRyz - a for in scala behaves as the for ( : ) in java, for the most part. |
|
Apr 21 |
comment |
MYSQL table becoming large He said 100,000 rows / day. If my experience of MySQL is relevant, at that rate after a year the table is going to start performing very poorly (36 million rows). |
|
Apr 21 |
comment |
Why same works for windows and doesn't work for unix? ideone.com/fRdK7 |
|
Apr 21 |
comment |
Why same works for windows and doesn't work for unix? I ran this and it worked... |
|
Apr 20 |
comment |
Need a synonym for “don't care”, as in Decision Tables or K-Maps (not for apathy) Your explanation in the original post seems to imply that the stackexchange can do little more than behave as a thesaurus, which is patently false. There are smart people -- even programmers -- on the English Language stackexchange. And this question is appropriate there. Not here. |
|
Apr 20 |
comment |
Need a synonym for “don't care”, as in Decision Tables or K-Maps (not for apathy) Might I suggest english.stackexchange.com ? Programmers aren't known for their command of the english language. The people on the English Language & Usage stackexchange can give more information than just looking up a thesaurus. |