Nosredna

11,976
Reputation
4203 views

Registered User

Name Nosredna
Member for 9 months
Seen 16 hours ago
Website
Location Bend Oregon
Age 46

I can clap with one hand.

I got married in Mick Fleetwood's pants.

Gregg Keizer once had me edit an Orson Scott Card column.

A game Sega published was based on a dream I had.

I have an officially licensed Star Trek tunic from before the first film! Anyone know what that's worth?

9h
accepted Fast Random Generator
16h
comment Fast Random Generator
Well, then I think what I suggested would work great.
1d
revised Apply jQuery function to one element and *NOT* its descendants
edited title
1d
comment Prefered Javascript editor for Mac?
That looks great.
1d
comment Prefered Javascript editor for Mac?
Yeah the PHP change screwed me. I moved to Netbeans because of that.
1d
comment Can I use jQuery with node.js?
Have you tried asking on the google group? groups.google.com/group/envjs
1d
revised Is it bad practice to change state inside of an if statement?
added 102 characters in body
1d
answered Can I use jQuery with node.js?
1d
comment In Which Cases Is Better To Use Clojure?
Which probably makes JavaScript the most subversive of functional languages, teaching our kids functional programming right under our object oriented eyes!
1d
comment In Which Cases Is Better To Use Clojure?
Scheme in C clothing.
1d
comment How to verify if the Web Service caller is my web site?
And note that the HTTP header is tragically misspelled as "referer". Ugh.
1d
comment Comparing character arrays with an == operator in C
Yeah that's a string pool optimization. I wouldn't count on it.
1d
comment Comparing character arrays with an == operator in C
Yes, I know. :-) I meant with the comparison operators. :-)
1d
answered Comparing character arrays with an == operator in C
1d
comment Can firebug tell me the javascript name of an object?
In JavaScript, even functions can be anonymous. Can you explain with some code what you're having trouble doing?
1d
comment Is it bad practice to change state inside of an if statement?
I would not doubt that. :-)
1d
comment Is it bad practice to change state inside of an if statement?
@David. A lot of people hate multiple returns. You could definitely get into a battle in a code review over that. (Not saying I do.)
1d
revised How to delete a contact from address book in iPhone using objective-c ?
deleted 1 characters in body; edited title
1d
revised How can I disable end user sorting of the XtraTreeList?
edited tags; edited title
1d
revised regular expression search, omit lines
edited title
1d
answered Is it bad practice to change state inside of an if statement?
1d
comment When NOT to use AJAX in web application development?
Since you don't have JavaScript running, you can't use JavaScript to check. Instead, take a look at the HTML noscript tag.
1d
answered When NOT to use AJAX in web application development?
1d
revised jQuery ajax images preload
added 140 characters in body; added 111 characters in body; added 18 characters in body
1d
answered jQuery ajax images preload
1d
comment jQuery ajax images preload
Problem: load is notoriously unreliable.
1d
comment Why wasn’t code “managed” from the start?
This is a great answer. Even today, games on the Wii don't run managed code. It's simply a matter of prerequisites.
1d
comment What do you do to write better code?
@streetparade: A humility exercise.
1d
comment How can I compact/minimize/pack my javascript?
I wouldn't use packer anymore, as there is a cost in unpacking on every page load.
1d
answered What do you do to write better code?
1d
comment EBNF for ECMAScript?
Yeah. I just think no one is very interested in EBNF for scripting languages. Dynamic languages don't lend themselves to recursive descent compilation. What good is a traditional compiler when you can build functions out of strings on the fly? Speeding up JS is all about Forth-like TILs, runtime analysis of common pathways, tokenization, etc.
1d
comment Fast Random Generator
Answering the question also answers it for the people in the future who actually need faster.
1d
comment Chrome OS - do you think the future is realy only on the web?
Does serverfault encourage philosophical discussions?
1d
revised how to create a table with javascript ?
added 114 characters in body
2d
revised Login via cURL to Javascript Page?
added 256 characters in body; added 106 characters in body; added 41 characters in body
2d
answered Login via cURL to Javascript Page?
2d
revised Compare dates in Javascript
edited title
2d
answered how to create a table with javascript ?
2d
comment Fast Random Generator
It's amazing how many of SO answers decide to argue about the needs of the asker instead of answering the question.
2d
comment Fast Random Generator
There are many possibilities. Imagine that you've set up a 4k buffer of random numbers for a range (say, 0-100). Use a random number generator to choose an offset and grab, say 16 bytes from your list. Then generate another offset and grab another 16 bytes. This won't be fantastically random, but it may be sufficiently random. Despite my asking, you haven't told me what you're willing to give up to get the speed. What will you be doing with all these numbers?
2d
comment Closure/scope JavaScript/jQuery
The preferred way is without the quotes. What error message did you get, exactly?
2d
comment Is there a template engine for Node.js?
I just found out that JavaScript V8 engine is faster than Ruby, PHP, and Python. Amazingly fast for a dynamic language. Slower than Java and C#, though.
2d
answered Closure/scope JavaScript/jQuery
2d
comment Closure/scope JavaScript/jQuery
I'd use setInterval(crossfade,5000);
2d
comment Add something after the “n” element using jQuery
Remember that eq() starts with 0 and nth-child() starts at 1, or you will become very angry.
2d
comment How to achieve library-agnosticism when building a javascript framework ?
Either way, it's a lot of work. Much more code to write and be debugged. I'd just target jQuery, since it seems to be the overwhelming popular favorite at the moment.
2d
comment Array.each outputs all methods
JavaScript doesn't have real associative arrays. You're setting properties of the array (which is legal), but JavaScript doesn't have special methods for this usage. It's better to use objects than arrays for this purpose.
2d
comment Array.each outputs all methods
That won't work for him, as he's misusing arrays (not using integer indices).
2d
revised Fast Random Generator
added 114 characters in body
2d
comment Win32.: How to scrape HTML without regular expressions?
Old school scraping. If you're doing this, you might as well use regex.