Jacob

2,309
reputation
144 views

Registered User

name Jacob
member for 1 year
seen 2 hours ago
website
location New York City
age 24
I can has cheezburger?
Dec
13
accepted Does return inside an if() which is inside a for() - return from the if() or the for() ?
Dec
10
comment How can I programmatically limit my program’s CPU usage to below 70%?
In Windows, you ALWAYS have to put the UI on a separate thread.
Dec
2
comment SQL Query works quickly with 19 items in “IN” clause - much slower with 20. Why?
Is RecordID a primary key? If not, is there an index on it? What does Query Analyzer say about it?
Nov
25
revised Does this code prevent SQL injection?
this is the best answer
Nov
25
comment Does this code prevent SQL injection?
no, the clause WHERE Key = '1 OR 1=1' doesn't allow the user to get back everything because there are quote marks around the '1 OR 1=1'.
Nov
21
comment CSharpCodeProvider Compilation Performance
Supposedly csc.exe is being rewritten in C#, so in the future there may be a managed way that lets you pass an AST directly to the compiler. However, as .NET 3.5 stands now, there is currently no way to bypass the compiler frontend other than emitting the IL assembly or bytecode yourself.
Nov
9
comment Rewriting multiple if-statements
Nope, that will leave lower-point buttons enabled. You need both sides of the range in your rhs expression. ( rbn250Points.Enabled = totalPoints >= 250 && totalPoints < 400; )
Nov
6
comment How do you give a C# Auto-Property a default value?
You cannot access a field across AppDomain boundaries, either -- only a property or method.
Nov
6
comment javascript if alternative
"ternary" just means "function with arity of 3." ... ? .. : ... is the Conditional Operator.
Oct
28
awarded  Popular Question
Oct
23
comment Patterns in Binary Numbers
Didn't actually downvote you :) I'm glad you're the top answer for this question.
Oct
22
comment Patterns in Binary Numbers
-1 for not understanding the problem ;) "Any program that uses strings, arrays or recursion will receive a grade of 0."
Oct
21
comment Count parents backwords in one SQL Query?
@Byron Good catch; just me being sloppy.
Oct
21
revised Count parents backwords in one SQL Query?
"SQL Server" is irrelevant.
Oct
21
comment jQuery String Contains Manipulation?
You have a bug in this implementation: if the searched string starts with txt, it will return false. Use >= instead of >.
Oct
20
revised Count parents backwords in one SQL Query?
upsell!
Oct
20
answered Count parents backwords in one SQL Query?
Oct
19
comment How to create Gmail Chat? How to connect to AIM and allow for AIM chatting?
Pidgin is a GTK program that uses libpurple to communicate through the different protocols. On Mac OS X, Adium is a Cocoa GUI for libpurple. Meebo uses libpurple. developer.pidgin.im/wiki/WhatIsLibpurple
Oct
15
revised Does java have a using clause?
corrected spelling
Oct
15
revised Why is the output of cout << 7/9*9; is zero?
retagged
Oct
13
comment What’s the strangest corner case you’ve seen in C# or .NET?
I guess "loading an assembly" is a side effect, since you can observe it with BeforeAssemblyLoad!
Oct
13
awarded  Nice Answer
Oct
13
revised Best Kanban Tools
linky
Oct
13
answered Best Kanban Tools
Oct
13
answered Does return inside an if() which is inside a for() - return from the if() or the for() ?
Oct
12
accepted Visual Studio Magic Keywords in Comments
Oct
12
answered Visual Studio Magic Keywords in Comments
Oct
12
comment Interviewers expect job candidates for application development jobs to know hexadecimal arithmetic
Was it a left shift or a right shift?
Oct
3
comment SQL Statement Match Anything
I think the OP has a bunch of SELECT statements of the form seen in the question; since we need to replace {{REPLACEME}} with something, it should be the identity. Removing the WHERE clause would be better, but that's not what the OP asked for.
Oct
2
answered SQL Statement Match Anything
Sep
30
answered What is the Difference Between Convert.Int32() and Int32.Parse()?
Sep
30
comment Regular expression for excluding special characters
@Atomiton, Vietnamese (for example) has 11 vowel nuclei, each of which can have one of 5 accents (ex: ệ) as well as the letter đ. Polish has Ł Ź Ś Ę... Turkish has the dotted I, İ. There are hundreds of different accented letters.
Sep
28
revised What was your first programming language?
"it's" -> it is / "its" -> possessive of "it"
Sep
28
comment C/C++ Identify the digits in a given number.
This is completely wrong. You print the value of i 5 times: "123451234123121". Even if you print nextVal instead of i, you're doing it in the wrong order and will print "54321".
Sep
28
comment Efficient way to determine number of digits in an integer
In what base? 2? 10?
Sep
24
awarded  Good Answer
Sep
24
revised Have you ever crashed the compiler?
grammar
Sep
24
awarded  Nice Answer
Sep
22
comment What is the best comment in source code you have ever encountered?
@Clement No it doesn't. Read it out loud.
Sep
22
comment What was the strangest coding standard rule that you were forced to follow?
App hungarian would name these variables cApple and cPear, for "count of apples; count of pears"
Sep
22
comment What’s a quick way to familiarize myself with C#, .NET framework, etc?
That is the ONLY reference book on my desk.
Sep
14
comment How to determine .NET cookie path
That's what I was afraid of. Thanks.
Sep
11
asked How to determine .NET cookie path
Aug
27
awarded  Yearling
Aug
13
comment SQL - Is there a query that will do “foreach A in table, if !B, insert B”?
ooh, shiny IGNORE keyword