Chris Noe

3,382
reputation
605 views

Registered User

name Chris Noe
member for 1 year
seen Dec 18 at 19:28
website
location Northern VA
age
Currently toiling away on: J2EE, Oracle, iBATIS, Jasper Reports, JavaScript, XSL, XSL-FO, XPath, CSS, UML
Dec
6
awarded  Mortarboard
Nov
30
awarded  Nice Answer
Nov
18
awarded  Nice Answer
Nov
11
comment Passing a shortcut to a batch script
Well then I guess my batch file can generate the .vbs file on the fly, and then execute it. Yeah! Ugh!
Nov
6
comment Disable highlighting in an HTML SELECT box
A Picklist is that UI mechanism where items are selected from a list/tree, (usually on the left), by copying/moving them to an accumulator list, (usually on the right), by dragging or by clicking arrows. My question concerns the accumulator list.
Nov
4
comment Disable highlighting in an HTML SELECT box
Concur, disabling carries other visual baggage. So styling the select color is what I guess I'm looking to do. But how?
Nov
4
asked Disable highlighting in an HTML SELECT box
Nov
3
asked Passing a shortcut to a batch script
Nov
2
awarded  Good Answer
Oct
20
awarded  Popular Question
Oct
5
awarded  Notable Question
Sep
24
awarded  Nice Question
Sep
18
awarded  Nice Answer
Sep
18
awarded  Yearling
Sep
10
awarded  Stellar Question
Aug
28
awarded  Nice Answer
Aug
27
awarded  Notable Question
Aug
26
comment Does every web request send the browser cookies?
Is this true with HTTP 1.1, which is a multiplexing scheme? I.e., the requests are bundled into a single TCP connection. Of course every request is received with a copy of the cookie attached. But if the concern is lots of transmission duplication, HTTP 1.1 is in a position to optimize. Though I don't know if it actually does...
Aug
20
comment How do you place Stackoverflow Flair on Facebook?
No way to do it without using an application? I'm a luddite, I don't trust applications.
Aug
11
comment Debugging autoproxy (PAC) javascript with alert()?
It occurs to me that alert() probably requires a Window object, and being a network-level operation, there certainly is no Window object yet. There's not even a TCP connection yet, since the PAC script is helping decide how we're going to connect...
Aug
4
answered Underused features of Windows batch files
Jul
29
awarded  Popular Question
Jul
20
revised firefox 3 address bar auto-complete dependency
added 144 characters in body
Jul
20
awarded  Good Answer
Jul
15
answered How to Initialise a static Map in Java
Jul
6
comment Underused features of Windows batch files
However, if you want a subroutine to set an errorlevel, you will need to use exit /b. For example: exit /b 3
Jul
6
revised Underused features of Windows batch files
Added expanded explanation and example
Jul
1
comment Can eclipse monitor an arbitrary log file in the Console view?
@VonC, thanks NTail looks good. Perhaps a little too easy to truncate the underlying log file, but a nice little analog to the builtin Console view.
Jul
1
asked Can eclipse monitor an arbitrary log file in the Console view?
Jun
30
comment What’s the Hi/Lo Algorithm
Are the hi & lo values typically then composed into a single integer value, or as a two-part business key?
Jun
30
comment What’s the Hi/Lo Algorithm
Are you saying that "low ranges" are coordinated within the client, while the "high sequence" corresponds to a DB sequence?
Jun
29
revised Debugging autoproxy (PAC) javascript with alert()?
made question title more self-explanatory
Jun
26
comment Debugging autoproxy (PAC) javascript with alert()?
Interesting. I wonder why they unilaterally convert alerts to log dumps. I suppose popping alerts during such a low-level operation is considered unacceptable.