Shog9

23,152
Reputation
3165 views

Registered User

Name Shog9
Member for 1 year
Seen 4 hours ago
Website
Location Colorado, USA, The Earth
Age 29
Poke...
8h
accepted How might I use jQuery to show the first 8 elements?
9h
revised How might I use jQuery to show the first 8 elements?
Heh... myopic.; added 1 characters in body; added 1 characters in body
9h
revised How might I use jQuery to show the first 8 elements?
clarify title, tags
9h
answered How might I use jQuery to show the first 8 elements?
1d
revised How might I set the bottom 3 bytes of a 4-byte long while leaving the top byte intact?
Formatting, clean up title
1d
revised How can I capture the enter key in Firefox 3.5 and redirect the page using Window.Location?
formatting, grammar, spelling, tags
1d
comment How to convert salary to hourly rate?
@Mark: shrm.org maybe? Normally, i'd link to the "where can I ask questions that aren't programming related" FAQ, but this is waaay off-topic.
1d
revised What Java framework might I use to provide a robust document conversion service?
"see question for more info" - REALLY!
1d
comment Does using a framework prevent me from mastering JavaScript?
I like this answer now. Still too damn long, but oh well. It's the only one here I really agree with. Good work actually reading the question... (but see where that got you ;-P )
1d
revised Why doesn’t my JavaScript XML processing code work in Safari?
formatting, grammar, tags
1d
comment Does using a framework prevent me from mastering JavaScript?
@Dmitriy: I agree wholeheartedly with that comment. If your answer had consisted of nothing but that last sentence, I would be up-voting it as well!
1d
comment Does using a framework prevent me from mastering JavaScript?
@Abel: actually, I doubt most of those newbies even bothered to learn the language. There's a long tradition of using JavaScript by hacking on terrible example code first, asking questions second, and reading documentation only as a last resort... But I do agree with Bob's point regarding the cluelessness surrounding jQuery - in fact, I attribute this to the proliferation of actual frameworks leading newbies to view them as the only proper form of library. Which is a shame.
1d
comment Does using a framework prevent me from mastering JavaScript?
@vsr: not necessarily. A framework designed to abstract away browser differences might help with this, but there are plenty of frameworks that don't. Conversely, libraries such as jQuery can go a long way toward smoothing over browser differences without providing any real framework.
1d
comment Does using a framework prevent me from mastering JavaScript?
jQuery isn't a framework. It's a library, a rather popular library, and some folks wish it was a framework... I, for one, am glad it is not: I enjoy being able to add and use jQuery in any JS project, without worrying about restructuring the whole thing to fit the mental model of some framework designer.
1d
comment Does using a framework prevent me from mastering JavaScript?
Yeah... Framework use and DOM knowledge are orthogonal, unless you're relying on a framework that abstracts away the DOM entirely.
1d
revised Does using a framework prevent me from mastering JavaScript?
clarify title, tags, question (which seems a bit leading, but...)
1d
comment Staying Relevant As a Programmer
Yeah, don't really get that. I voted to close as a duplicate... FWIW, the actual question you ask isn't a question at all: you're just soliciting anecdotes from whoever happens by; SO isn't a discussion site. The question i suspect you meant to ask has been asked many times before in various forms... See also: stackoverflow.com/questions/482037/… stackoverflow.com/questions/104011/… stackoverflow.com/questions/637133/…
1d
comment Does using a framework prevent me from mastering JavaScript?
See also: stackoverflow.com/questions/215589/… ...and: stackoverflow.com/questions/122902/…
1d
comment Staying Relevant As a Programmer
See also: stackoverflow.com/questions/201189/…
2d
revised How should I use FormatMessage() properly in C++?
Fix link - I had linked to a specific version of the _com_error documentation; they've since improved it (slightly)
2d
revised How to smooth a histogram?
tags, formatting
Nov
25
comment How important is Windows?
See: stackoverflow.com/questions/422645/…
Nov
22
revised How can I show UI hints for form controls like the Stack Overflow Career CV form does?
examples
Nov
22
revised When is a CDATA section necessary within a script tag?
descriptive title, tags
Nov
19
awarded  Guru
Nov
18
revised How might I display a web page in a window with a transparent background using C#?
title, tags
Nov
18
revised Are there any guidelines as to when links should open in a new window?
grammar
Nov
18
comment What is optimal method for accessing function parameters in javascript?
Heh, yeah, it'll decrease performance; whether the decrease is significant or not depends on your program. I would love to see a non-contrived example where it actually matters...
Nov
18
revised How does protobuf-net achieve respectable performance?
title, tags, grammar, spelling, link
Nov
17
revised How might I change the Form loading at start-up to another form?
grammar, formatting, tags, title
Nov
17
revised How should I persist order data over time without tying it to underlying product pricing data that is subject to change?
Increase specificity of title to match that of question
Nov
17
revised How might I clear a hiddenfield value when the page is refresh in ASP.NET?
title, grammar, spelling, formatting, tags
Nov
16
comment Is JavaScript ‘s “new” Keyword Considered Harmful?
If you're worried about performance - and actually have reason to be - then don't do the check at all. Either remember to use new, or use a wrapper function to remember it for you. I suspect that if you're at the point where it matters, you've already exhausted other optimizations such as memoization, so your creation calls will be localized anyway...
Nov
16
comment Is JavaScript ‘s “new” Keyword Considered Harmful?
@meandmycode: you could assume that. But then it would break if window wasn't the global object for some reason... or if this referenced some other context. Also, it's a bit distracting for an example, since the point of the test (whether implicit or explicit) is to verify that the context object is an instance of the constructor function itself.
Nov
16
revised How can I provide a SSH password to SVN on the command line?
deleted 40 characters in body; edited tags; edited title
Nov
16
revised How can Java code be quickly converted to .NET (specifically, ASP.NET)?
grammar, tags, title
Nov
16
revised How can ASP.NET code be quickly converted to Java?
grammar, tags
Nov
16
comment What is the rationale behind Most-Recent-Order for tab switching?
Tried to clean this up a bit - was worded argumentatively and (as Kip noted) appeared to poll for agreement with the author's personal preferences rather than asking for help understanding a particular UI design pattern.
Nov
16
revised What is the rationale behind Most-Recent-Order for tab switching?
title, grammar, spelling, formatting, tags; added 1 characters in body
Nov
16
revised Why does my Python program average only 33% CPU per process? How can I make Python use all available CPU?
grammar, tags, title
Nov
16
comment How can I ensure that changes to a form DOM are complete before POSTing?
FWIW: According to MSDN, you can't change the type of an input element once it's been added to the document (in Internet Explorer). So you might want to re-think this entire strategy... (ref: msdn.microsoft.com/en-us/library/… )
Nov
16
revised How can I ensure that changes to a form DOM are complete before POSTing?
title, tags, code formatting
Nov
14
revised Is it possible to choose a C++ generic type parameter at runtime?
Fix title, spelling, tags
Nov
14
accepted Why doesn’t my AJAX script work?
Nov
14
comment Why doesn’t my AJAX script work?
Updated answer. I'd missed that you were passing in the form fields as parameters somehow, as well as the missing return. Don't forget to extract the value of the form fields (as you were doing originally) and pass them through encodeURIComponent() before submission...
Nov
14
comment Why doesn’t my AJAX script work?
@Elliott: HA! Add return false; to the end of check_login() to prevent the form from being submitted... This should fall apart in IE as well, but perhaps FF is just a bit quicker at reloading the page...
Nov
14
answered Why doesn’t my AJAX script work?
Nov
13
comment Is Google building operating system using Go? Would you?
Double whammy: anyone with time to burn can answer the hypothetical question posed last without being wrong, and anyone with a Magic Eight Ball can answer the former without being... anymore wrong than everyone else who isn't party to Google's secret internal plans.
Nov
13
comment Is this the best use of the Adapter pattern?
I don't see any properties. Just fields. But sure, if you had an interface defined purely by properties, then adapting anything to that interface would require an adapter that exposed those properties...
Nov
10
comment Google Maps, array + GLatLng + GPolyline
Shouldn't matter - yes, the variable will be re-used (scoped to the outer function), but the value will be a new GPolyline object each time through the loop (same as the values of points, ShipID)...