Kip

10,777
reputation
1115 views

Registered User

name Kip
member for 1 year
seen 16 mins ago
website
location Charlotte, NC, US
age 28
Got my start writing programs on my TI-83 in precalculus class during junior year of high school (go Red Devils!). Senior year I took Visual Basic (6.0) and C++ courses at the local community college. (Fortunately, by now I've forgotten nearly everything I knew about Visual Basic.)

The next four years were spent at North Carolina State University (go Wolfpack!), getting a mostly-Java-based Computer Science education (with a fair bit of C++, and a little assembly, Perl, and Lisp thrown in along the way).

The next four and a half years were spent at Dassault Systemés, perhaps best known for Catia and SolidWorks CAD software. Then Dassault decided to throw me and my coworkers out in the cold.

Fortunately, I landed on my feet as a ColdFusion developer at another company. (Yeah, ColdFusion. I didn't think anyone still used it either. It's actually not all that bad, once you get used to it.)

And that brings us up to date.
2d
comment How do I find/replace � (unicode replacement character) in ColdFusion?
Is it necessary to use the NoCase variant?
Dec
15
comment How Can I get the URL parameter & Value in Coldfusion?
@Tomalak what clan? :)
Dec
15
comment What non-programming books should programmers read?
I get that this book was highly influential, but I read it for the first time this year and just could not get into his writing style, plus a lot of it is quite dated. I read this because I had heard that it basically invented the cyberpunk genre, and I liked Snow Crash, so I thought this would be similar. Maybe if I had read it for the first time in the 80s or early 90s I would have gotten more out of it. Oh well. :-/
Dec
14
revised What non-programming books should programmers read?
Added link
Dec
14
revised What non-programming books should programmers read?
use amazon link for SO referral
Dec
14
revised What non-programming books should programmers read?
use amazon link for so referral
Dec
14
revised What non-programming books should programmers read?
use amazon link for link love
Dec
14
revised What non-programming books should programmers read?
use amazon link for SO link love...
Dec
14
revised What non-programming books should programmers read?
use amazon link so SO might get some moneys
Dec
13
awarded  Popular Question
Dec
12
awarded  Notable Question
Dec
10
comment How to Initialise a static Map in Java
any idea what performance hit there might be from using an anonymous class as opposed to a concrete class?
Dec
9
awarded  Nice Answer
Dec
9
revised Java multiline string
i like the +'s lined up on the left better...
Dec
9
accepted Changing parent window’s URL from IFrame
Dec
8
awarded  Nice Question
Dec
7
revised Changing parent window’s URL from IFrame
added 10 characters in body
Dec
7
revised Changing parent window’s URL from IFrame
better title
Dec
7
comment Cross Domain JavaScript parent location setting firefox error
Thanks Jeff. It should be noted that window.postMessage that you link to works in all modern browsers, but the syntax in IE is a little different. I posted a question similar to this and ended up answering it myself. Here is my answer which has a simple cross-browser example implementation: stackoverflow.com/questions/1860470/…
Dec
7
answered Changing parent window’s URL from IFrame
Dec
7
asked Changing parent window’s URL from IFrame
Dec
6
awarded  Mortarboard
Dec
4
comment Regular expression to remove one parameter from query string
@MarkByers: this will change something like foobar=123 to bar=123. You need the non-matching (?=&|$) at the end of the left half, and (&|$) at the end of the right half.
Dec
3
revised Regular expression to remove one parameter from query string
deleted 11 characters in body
Dec
3
comment Regular expression to remove one parameter from query string
Accepted this because the solution I got working to all my test cases (see edit to my question) was modified version of this idea: /&foo(\=[^&]*)?(?=&|$)|^foo(\=[^&]*)?(&|$)/
Dec
3
comment Regular expression to remove one parameter from query string
yeah i thought about leaving the extra &, but it looked a little sloppy to me. This regex will leave a trailing ampersand on the result. i.e. \bfoo\=[^&]+&? -> bar=456&. to get it to work with foo or foo=, and not with xfoo or foox, I modified it to this: /\bfoo(\=[^&]*)?(&|$)/
Dec
3
revised Regular expression to remove one parameter from query string
updated with solution
Dec
3
comment Regular expression to remove one parameter from query string
fails for these inputs: bar=456&foo, bar=456&foo=, bar=456&foo=123
Dec
3
comment Regular expression to remove one parameter from query string
@Mark Byers: empty string. I'm going to put a more complete sample output up in a few minutes, when i get my test script presentable...
Dec
3
comment Regular expression to remove one parameter from query string
having some problems with this one, but i'm working on it. yes, there is no \?, my string is only the query string
Dec
3
comment Regular expression to remove one parameter from query string
@Roger Pate: both is valid input, but you only want to match exactly one of them (because i'm replacing whatever is matched with empty string)
Dec
3
comment Regular expression to remove one parameter from query string
@Roger Pate: thanks, didn't think about that. also foobar=123, foobar, and foobar=, to ensure that the check for foo doesn't hit them
Dec
3
asked Regular expression to remove one parameter from query string
Dec
1
revised How to calculate percentage with a SQL statement
to prevent wrapping...
Dec
1
comment What does 4j mean?
Why would this be CW? It asks a direct question which has a single, unambiguous answer.
Dec
1
comment What does 4j mean?
+1 from me. This is certainly a valid question on this site. It helps people to understand something about libraries just from their names. I'm a native speaker and I never made this connection before.
Nov
28
awarded  Enlightened
Nov
28
awarded  Nice Answer
Nov
28
revised Where does ‘Hello world’ come from?
edited tags
Nov
26
comment What does the following javascript code do?
Not sure I understand all the downvotes... you get +1 from me... no question should be too simple for SO!
Nov
24
revised Why must delegation to a different constructor happen first in a Java constructor?
no-op edit (post was truncated)
Nov
24
comment Why must delegation to a different constructor happen first in a Java constructor?
thanks for the well-written response and clear example code
Nov
24
comment Table in Jasper IReport
@Ben Fransen: it is really a question, but not a programming question
Nov
16
revised Problem with jQuery data() function in GreaseMonkey
simplified example code even more
Nov
16
asked Problem with jQuery data() function in GreaseMonkey
Nov
16
comment What is the rationale behind Most-Recent-Order for tab switching?
This is no more appropriate on superuser than it is on SO (SuperUser is not your trash bin meta.stackoverflow.com/questions/4679/…). If the question is about how he should design some software he's writing, then the question needs to be worded as such. Right now, it is just taking a poll of what people's preferences are.
Nov
16
comment WPF DataGrid control: adding the most recent row on top.
don't know, this would be my advice, so you get a +1 from me
Nov
16
revised WPF DataGrid control: adding the most recent row on top.
better wording...
Nov
13
comment Using SELECT TOP from one column, then sorting on a different column
you can edit your answer to reflect what you meant
Nov
11
comment Using SELECT TOP from one column, then sorting on a different column
doesn't work. the secondary sort by vendor name will only happen if two vendors share exactly the same order total (which will rarely happen)