strager

12,333
Reputation
822 views

Registered User

Name strager
Member for 1 year
Seen 3 hours ago
Website
Location USA
Age 17
C'est moi.
1d
comment How to make a text field grow to fit the contents of its value field
"Make it large enough to begin with" is the answer in my post.
1d
comment How to I avoid storing a local copy of predecessor versions with subversion?
IIRC AFAIK is an acr. not an abbr., FYI JSYK.
1d
comment How to I avoid storing a local copy of predecessor versions with subversion?
However, each copy of the repository has the entire history. So if he has multiple checked out copies (using SVN terminology) he still has multiple copies. You're just reducing the number of copies by one using Git.
1d
answered How to make a text field grow to fit the contents of its value field
2d
comment jquery create a unique id
I don't understand. How would you get the ID, then?
2d
comment jquery create a unique id
Why do you need this? Can't you pass the node around instead of its ID?
Nov
28
comment Appropriate use of exceptions?
@LiraNuna, It's not a duplicate. That question deals with user input validation; this deals with coder input validation.
Nov
28
asked Appropriate use of exceptions?
Nov
27
comment How to make article spinner regex?
How do you decide which to chose? Randomness?
Nov
27
comment CSS and Fonts advice
@MitMaro, Yes, but if you're using that operating system you'd know there are no standard fonts...
Nov
27
answered CSS and Fonts advice
Nov
27
comment Why isn’t my virtual function working?
You need a virtual destructor. Else, ~PointCamera likely won't be called.
Nov
27
revised C++ extract polynomial coefficients
deleted 95 characters in body
Nov
27
comment Why isn’t my virtual function working?
Are you calling the virtual function in a constructor? If so, that's likely your problem.
Nov
27
answered C++ extract polynomial coefficients
Nov
27
comment Trim all whitespace in an array
\s+ would perhaps work slightly better.
Nov
27
revised Trim all whitespace in an array
Formatting.
Nov
27
comment Code Golf: Ulam Spiral
You don't need to print "Input:" and "Output:" in your solution.
Nov
26
comment Code Golf: Ulam Spiral
I was expecting a turkey-printing golf. =[
Nov
26
revised Adding a set accessor to a property in a class that derives from an abstract class with only a get accessor
Formatting fix.
Nov
25
awarded  Good Answer
Nov
24
answered C++, an “impossible” behavior
Nov
24
revised Difference between big-O notation and big-O estimate
Fix formatting failure.
Nov
24
answered Is there an html entity equivalent of ▼?
Nov
24
comment Why use String.Concat() in C#?
@chobo2, That's done implicitly if you call String.Concat(), so you don't need to worry about the types of the objects.
Nov
24
revised glew32.lib linker error
Title, formatting, some spelling/grammar fixes.
Nov
24
revised What is the accepted way to enforce proper value in property which depends on other properties of the same class?
Minor trimming of question title...
Nov
24
answered Changing return type when overidding a function in the subclass in PHP?
Nov
24
awarded  Yearling
Nov
20
comment Code-Golf: What is the shortest program that compiles and crashes?
Not for compilers which use wrapping for memory.
Nov
20
comment Code-Golf: What is the shortest program that compiles and crashes?
Pssh, using special compiler flags should be included in the character count. =]
Nov
18
accepted Variables set during $.getJSON function only accessible within function
Nov
17
comment C++ Classes - Pointers question
Question on the issue: stackoverflow.com/questions/1745487/…
Nov
16
comment What can be instantiated?
Very cool. Thanks. =]
Nov
16
revised What can be instantiated?
deleted 2 characters in body
Nov
16
comment What can be instantiated?
Your statement "Basic types like int and float are of course non-POD, as are arrays of PODs and C-structs of PODs." seems incorrect. Do you mean to replace "non-POD" with "POD" and vice versa?
Nov
16
comment What can be instantiated?
Quoting the standard is great. Thanks! Looks like a step in the right direction.
Nov
16
revised What can be instantiated?
Quote formatting.
Nov
16
comment What can be instantiated?
I'm mainly looking for the answer of if an int and other built-in types can be instantiated. I assume, based on other answers and your answer, an int has a constructor thus can have an instance, correct?
Nov
16
revised What can be instantiated?
added 2 characters in body
Nov
16
asked What can be instantiated?
Nov
16
comment 7.1 < 7.10 - ordering numbers
Ah, you beat me to it. =[
Nov
16
answered 7.1 < 7.10 - ordering numbers
Nov
16
comment Custom C++ manipulator problem
+1 for suggesting a subclass instead of using magic.
Nov
16
comment Variables set during $.getJSON function only accessible within function
Your follow-up question seems too different from your initial problem and deserves its own SO question. (It seems to be a pretty good one, too.)
Nov
16
answered Custom C++ manipulator problem
Nov
16
comment Variables set during $.getJSON function only accessible within function
@Nosredna, I agree mostly. There are still some cases when using synchronous isn't bad, e.g. when you're already in a new thread.
Nov
16
revised C++ Classes - Pointers question
Sorry, but I'm annoyed when people capitalize my name like that. =S
Nov
16
comment C++ Classes - Pointers question
I argue that std::vector<char>, MyStruct, Point *, float, and int can all be instantiated.
Nov
16
comment Variables set during $.getJSON function only accessible within function
See my updated answer on examples of the solutions I mentioned.