Miles

5,352
reputation
381 views

Registered User

name Miles
member for 10 months
seen 10 hours ago
website
location
age
Dec
18
answered A positive number from 1 to 2^31 -1 in regex
Dec
11
answered How to win this game?
Dec
8
accepted Which Python language rule allows the descriptor to be found first?
Dec
8
answered Which Python language rule allows the descriptor to be found first?
Dec
6
awarded  Mortarboard
Nov
17
comment More efficient method for this calculation?
i, r = divmod(a, d)
Oct
30
answered Do Javascript prototypes have something equivalent to Lua’s __index & __newindex?
Oct
19
comment What separates a Ruby DSL from an ordinary API
oreillynet.com/onlamp/blog/…
Oct
16
revised Ajax, back button and DOM updates
added 218 characters in body; added 10 characters in body
Oct
14
awarded  Cleanup
Oct
14
comment fastest way to detect if duplicate entry exists in javascript array?
Mask: post a new question, instead of changing this one to a completely different question.
Oct
12
accepted Can I determine what the default state of a checkbox was at pageload (or what value reset() reset it to.)
Sep
26
comment Changing environment variable in UNIX
... because it's not a subprocess, it's being interpreted by the shell in the same process.
Sep
26
revised Cleanest way to define classes in Python?
added 2 characters in body; edited tags
Sep
24
accepted Python ctypes: copying Structure’s contents
Sep
24
comment Python ctypes: copying Structure’s contents
It shouldn't; it's pretty easy to make mistakes or accidentally use old variables in an interactive session though.
Sep
24
revised Python ctypes: copying Structure’s contents
example; added 48 characters in body; deleted 1 characters in body
Sep
24
revised Python ctypes: copying Structure’s contents
added 100 characters in body; deleted 10 characters in body
Sep
24
comment Python ctypes: copying Structure’s contents
Those functions aren't supposed to be passed pointers, they're supposed to be the ctypes structure objects. If you want a function analogous to your C copy_point, do dst[0] = src[0].
Sep
24
answered Python ctypes: copying Structure’s contents
Sep
12
comment Is header(’Content-Type:text/plain’); necessary at all?
Your browser doesn't use text/html as default: PHP does.
Sep
11
comment Set function signature in Python
No, it's still not clear. What do you mean by "create a function"? What is that function supposed to do?
Sep
8
awarded  Enlightened
Aug
30
revised Code Golf: Morse code
deleted 218 characters in body; added 3 characters in body
Aug
30
comment Code Golf: Morse code
+1: nice solution to the problem of making the data long enough to handle punctuation
Aug
30
answered Code Golf: Morse code
Aug
29
revised Java equivalent of Python repr()?
less confusing title
Aug
25
revised Are /regex/ Literals always RegExp Objects?
added 925 characters in body
Aug
25
accepted Are /regex/ Literals always RegExp Objects?
Aug
25
answered Are /regex/ Literals always RegExp Objects?
Aug
25
comment Are /regex/ Literals always RegExp Objects?
Not exactly, with regards to special characters and escaping. With a regex literal, to match a single backspace, you do /\\/; with the constructor, you need "\\\\".
Aug
23
comment Combining two lists and removing duplicates, without removing duplicates in original list
"its" is possessive, and does not use an apostrophe, like all possessive pronouns ("his" and "her"). Stefano's edit is grammatically correct.
Aug
21
comment concrete example breaking xor encryption with five bits
How about a concrete problem?
Aug
8
comment How to get a JavaScript Object’s Class?
That should probably be func.prototype (yes, functions are objects, but the prototype property is only relevant on function objects).
Aug
7
revised subclassing int to attain a Hex representation
deleted 112 characters in body
Aug
7
answered How do you construct a read-write pipe with lua?
Aug
7
answered subclassing int to attain a Hex representation
Aug
3
revised Is there a way to modify a class in a class method in Python?
fix example
Jul
31
awarded  Enlightened
Jul
31
awarded  Nice Answer
Jul
31
revised moving values in a list in python
added 347 characters in body
Jul
31
accepted moving values in a list in python
Jul
31
answered moving values in a list in python
Jul
30
comment What is the best way to check if an object is an array or not in Javascript?
You're making your life harder than it needs to be. I would consider it better style if the function always returns an array.
Jul
30
accepted How to run a excutable file from a web page?
Jul
30
comment How to run a excutable file from a web page?
The poster wants to run the desktop program that the user has already installed (which basically constitutes explicit permission), not an arbitrary command. I'm not saying it's a good idea, or that there aren't better ways to go about it. I'm just saying it's possible.
Jul
30
answered How to run a excutable file from a web page?
Jul
30
comment How to run a excutable file from a web page?
Surprise! It is possible.
Jul
30
revised Inheritance in Javascript - protoyping not in definition-part?
added 66 characters in body; added 91 characters in body
Jul
30
answered Inheritance in Javascript - protoyping not in definition-part?