User strager - Stack Overflowmost recent 30 from stackoverflow.com2009-12-21T20:52:18Zhttp://stackoverflow.com/feeds/user/39992http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1940171/best-way-to-implement-class-library-containing-standards-which-changes-yearly/1940280#19402800Answer by strager for Best way to implement class library containing standards which changes yearly strager2009-12-21T14:03:56Z2009-12-21T14:03:56Z<p>Your new classes probably need new names because they do something different.</p>
<p>Qt4 allows the user to enable a QtSupport option to gain access to Qt3 code when porting applications. By default, drop support of old code and make the user explicitly enable it. This way, the user can easily work with legacy applications with the newer version, but new projects won't use old code.</p>
http://stackoverflow.com/questions/1898212/convert-a-vectorunsigned-char-to-vectorunsigned-short/1898255#18982555Answer by strager for Convert a vector<unsigned char> to vector<unsigned short>strager2009-12-13T23:52:57Z2009-12-14T09:27:09Z<p>A generic approach (not bullet proof):</p>
<pre><code>#include <vector>
#include <iostream>
#include <iterator>
#include <algorithm>
typedef unsigned char u8;
typedef unsigned short u16;
u16 combine_two_bytes(u8 a, u8 b) {
return a | (b << 8);
}
template<typename InIter, typename OutIter, typename InT, typename OutT>
void combine_pairs(InIter in, InIter in_end, OutIter out, OutT (*func)(InT, InT)) {
while(1) {
if(in == in_end) {
break;
}
InT &left = *in++;
if(in == in_end) {
break;
}
InT &right = *in++;
*out++ = func(left, right);
}
}
int main() {
using namespace std; // lazy
u8 input[] = { 1, 2, 3, 4, 5, 6, 7, 8 };
const size_t in_size = sizeof(input) / sizeof(*input);
u16 output[in_size / 2];
cout << "Original: ";
copy(input, input + in_size, ostream_iterator<int>(cout, " "));
cout << endl;
combine_pairs(input, input + in_size, output, combine_two_bytes);
cout << "Transformed: ";
copy(output, output + in_size / 2, ostream_iterator<int>(cout, " "));
cout << endl;
return 0;
}
</code></pre>
http://stackoverflow.com/questions/1886935/conditional-regex-problem/1886956#18869561Answer by strager for Conditional regex problemstrager2009-12-11T09:48:40Z2009-12-11T09:48:40Z<p>There's no need to handle it like this. Just take up to the first right parentheses you encounter:</p>
<pre><code>/^[^)]*\)/
</code></pre>
<p>Unless I'm misunderstanding your problem...</p>
http://stackoverflow.com/questions/1870538/how-do-i-see-the-commands-that-are-run-by-gnu-make/1870544#18705443Answer by strager for How do I see the commands that are run by GNU make?strager2009-12-08T23:13:56Z2009-12-08T23:13:56Z<p><a href="http://www.sunsite.ualberta.ca/Documentation/Gnu/make-3.79/html%5Fchapter/make%5F9.html#SEC88" rel="nofollow"><code>-n</code> triggers a "dry run"</a> in which no command is executed, though the commands which would execute are printed.</p>
<p>If your Makefile is recursive, though, this won't help much.</p>
http://stackoverflow.com/questions/1817843/how-to-make-a-text-field-grow-to-fit-the-contents-of-its-value-field/1817847#18178470Answer by strager for How to make a text field grow to fit the contents of its value fieldstrager2009-11-30T04:27:23Z2009-11-30T04:27:23Z<p>Yes.</p>
<p>However, as a user, I would be against it. Why not make the textbox large enough to store my input in the first place?</p>
http://stackoverflow.com/questions/1811190/appropriate-use-of-exceptions1Appropriate use of exceptions?strager2009-11-28T00:53:23Z2009-11-28T01:10:16Z
<p>We are developing a collection class for a specialized PHP application. In it, there are functions named <code>map</code>, <code>each</code>, etc.</p>
<p>A debate has been brought up about calling some functions with a bad argument. For example:</p>
<pre><code>public function each($fn) {
// ...
}
// ...
$collection->each('not a function');
</code></pre>
<p>Should the call to <code>each</code> throw an exception? Should it return <code>null</code>? Should we ignore the bad argument and let the runtime error when an attempt is made to call the nonexistant function? I'm not sure how we should handle this case.</p>
http://stackoverflow.com/questions/1806731/css-and-fonts-advice/1806743#18067432Answer by strager for CSS and Fonts advicestrager2009-11-27T04:35:50Z2009-11-27T04:35:50Z<p><a href="http://www.ampsoft.net/webdesign-l/WindowsMacFonts.html" rel="nofollow">Common fonts to all versions of Windows & Mac equivalents</a> is a great resource to see what fonts are likely to be on your visitors' computers.</p>
<p>If you're looking for usability tips, all I can say is <em>test it out</em>. Testing the user's performance for your site is like testing your program's performance. That is, you need to benchmark. (It may be more valuable to allocate effort in other areas of your site.)</p>
http://stackoverflow.com/questions/1806074/c-extract-polynomial-coefficients/1806684#18066840Answer by strager for C++ extract polynomial coefficientsstrager2009-11-27T04:14:06Z2009-11-27T04:24:30Z<p>Write a simple tokenizer. Define a number token (<code>/[-0123456789][0123456789]+/</code>), an exponent token (<code>/x^(::number::)/</code>). Ignore whitespace and <code>+</code>.</p>
<p>Continually read tokens as you'd expect them until the end of the string. Then spit out the tokens in whatever form you want (e.g. integers).</p>
<pre><code>int readNumber(const char **input) {
/* Let stdio read it for us. */
int number;
int charsRead;
int itemsRead;
itemsRead = sscanf(**input, "%d%n", &number, &charsRead);
if(itemsRead <= 0) {
// Parse error.
return -1;
}
*input += charsRead;
return number;
}
int readExponent(const char **input) {
if(strncmp("x^", *input, 2) != 0) {
// Parse error.
return -1;
}
*input += 2;
return readNumber(input);
}
/* aka skipWhitespaceAndPlus */
void readToNextToken(const char **input) {
while(**input && (isspace(**input) || **input == '+')) {
++*input;
}
}
void readTerm(const char **input. int &coefficient, int &exponent, bool &success) {
success = false;
readToNextToken(input);
if(!**input) {
return;
}
coefficient = readNumber(input);
readToNextToken(input);
if(!**input) {
// Parse error.
return;
}
exponent = readExponent(input);
success = true;
}
/* Exponent => coefficient. */
std::map<int, int> readPolynomial(const char *input) {
std::map<int, int> ret;
bool success = true;
while(success) {
int coefficient, exponent;
readTerm(&input, coefficient, exponent, success);
if(success) {
ret[exponent] = coefficient;
}
}
return ret;
}
</code></pre>
<p>This would probably all go nicely in a class with some abstraction (e.g. read from a stream instead of a plain string).</p>
http://stackoverflow.com/questions/1793678/c-an-impossible-behavior/1793724#17937240Answer by strager for C++, an "impossible" behaviorstrager2009-11-24T23:36:12Z2009-11-24T23:36:12Z<p>There is likely a bug somewhere else in your program. I suggest you find the problem by looking elsewhere in your code.</p>
http://stackoverflow.com/questions/1787789/is-there-an-html-entity-equivalent-of/1787799#17877993Answer by strager for Is there an html entity equivalent of ▼?strager2009-11-24T04:33:47Z2009-11-24T04:33:47Z<p>Here's the full list for HTML 4 from the standard itself: <a href="http://www.w3.org/TR/html4/sgml/entities.html" rel="nofollow">http://www.w3.org/TR/html4/sgml/entities.html</a></p>
<p>Otherwise, use the <code>&#xNN;</code> syntax, where <code>NN</code> is the hexidecimal representation (can be more than two characters) of the unicode character.</p>
http://stackoverflow.com/questions/1787713/changing-return-type-when-overidding-a-function-in-the-subclass-in-php/1787736#17877363Answer by strager for Changing return type when overidding a function in the subclass in PHP?strager2009-11-24T04:15:41Z2009-11-24T04:15:41Z<p>You should be overriding the underlying code, not the contract.</p>
<p>So, no, it's not good to change the return values (which is part of the contract).</p>
http://stackoverflow.com/questions/1745487/what-can-be-instantiated5What can be instantiated?strager2009-11-16T23:15:02Z2009-11-17T00:19:30Z
<p>What types in C++ can be instantiated?</p>
<p>I know that the following each directly create a single instance of <code>Foo</code>:</p>
<pre><code>Foo bar;
Foo *bizz = new Foo();
</code></pre>
<p>However, what about with built-in types? Does the following create two instances of <code>int</code>, or is instance the wrong word to use and memory is just being allocated?</p>
<pre><code>int bar2;
int *bizz2 = new int;
</code></pre>
<p>What about pointers? Did the above example create an <code>int *</code> instance, or just allocate memory for an <code>int *</code>?</p>
<p>Would using literals like <code>42</code> or <code>3.14</code> create an instance as well?</p>
<p>I've seen the argument that if you cannot subclass a type, it is not a class, and if it is not a class, it cannot be instantiated. Is this true?</p>
http://stackoverflow.com/questions/1740133/7-1-7-10-ordering-numbers/1740150#17401502Answer by strager for 7.1 < 7.10 - ordering numbersstrager2009-11-16T05:01:19Z2009-11-16T05:01:19Z<p>Do you want 7.2 to be less than 7.10, too? Like with some versioning schemes?</p>
<p>If so, store the version number as two integer fields. To compare, you can compare each separately or use (left * 1000 + right) or similar.</p>
http://stackoverflow.com/questions/1740006/custom-c-manipulator-problem/1740052#17400525Answer by strager for Custom C++ manipulator problemstrager2009-11-16T04:32:37Z2009-11-16T04:32:37Z<p>There is defined an <code>operator<<(ostream &, ostream &(*)(ostream&))</code> but not an <code>operator<<(ostream &, ostream &(Log::*)(ostream&))</code>. That is, the manipulator would work if it were a normal (non-member) function, but because it depends on an instance of <code>Log</code>, the normal overload wouldn't work.</p>
<p>To fix this problem, you may need to have <code>log->endl</code> be an instance to a helper object and, when pushed with <code>operator<<</code>, call the appropriate code.</p>
<p>Like so:</p>
<pre><code>class Log {
class ManipulationHelper { // bad name for the class...
public:
typedef ostream &(Log::*ManipulatorPointer)(ostream &);
ManipulationHelper(Log *logger, ManipulatorPointer func) :
logger(logger),
func(func) {
}
friend ostream &operator<<(ostream &stream, ManipulationHelper helper) {
// call func on logger
return (helper.logger)->*(helper.func)(stream);
}
Log *logger;
ManipulatorPointer func;
}
friend class ManipulationHelper;
public:
// ...
ManipulationHelper endl;
private:
// ...
std::ostream& make_endl(std::ostream& out); // renamed
};
// ...
Log::Log(...) {
// ...
endl(this, make_endl) {
// ...
}
</code></pre>
http://stackoverflow.com/questions/1739800/variables-set-during-getjson-function-only-accessible-within-function/1739812#17398122Answer by strager for Variables set during $.getJSON function only accessible within functionstrager2009-11-16T02:53:22Z2009-11-16T03:44:30Z<p><code>$.getJSON</code> is asynchronous. That is, the code after the call is executed while <code>$.getJSON</code> fetches and parses the data and calls your callback.</p>
<p>So, given this:</p>
<pre><code>a();
$.getJSON("url", function() {
b();
});
c();
</code></pre>
<p>The order of the calls of <code>a</code>, <code>b</code>, and <code>c</code> may be either <code>a b c</code> (what <em>you</em> want, in this case) or <code>a c b</code> (more likely to actually happen).</p>
<p>The solution?</p>
<h3>Synchronous XHR requests</h3>
<p>Make the request synchronous instead of asynchronous:</p>
<pre><code>a();
$.ajax({
async: false,
url: "url",
success: function() {
b();
}
});
c();
</code></pre>
<h3>Restructure code</h3>
<p>Move the call to <code>c</code> after the call to <code>b</code>:</p>
<pre><code>a();
$.getJSON("url", function() {
b();
c();
});
</code></pre>
http://stackoverflow.com/questions/1739777/c-classes-pointers-question/1739790#17397904Answer by strager for C++ Classes - Pointers questionstrager2009-11-16T02:47:33Z2009-11-16T02:47:33Z<p>You are almost correct.</p>
<p>The code creates no instances of <code>Point</code>. It does create 10 instances of <code>Point *</code>, though. It does <em>not</em> create the <em>space</em> for the <code>Point</code> instances; that is done using a call to <code>new</code>, for example.</p>
http://stackoverflow.com/questions/1480023/code-golf-lasers/1698781#16987814Answer by strager for Code Golf: Lasersstrager2009-11-09T02:15:22Z2009-11-10T22:14:35Z<h2>Golfscript (83 characters)</h2>
<p>Hello, gnibbler!</p>
<pre><code>:\'><v^'.{\?}%{)}?:P@=?{:O[1-1\10?).~)]=P+
:P\=' \/x'?[O.2^.1^'true''false']=.4/!}do
</code></pre>
http://stackoverflow.com/questions/1691342/php-text-box-length/1691374#16913741Answer by strager for PHP Text Box Lengthstrager2009-11-07T00:14:49Z2009-11-07T00:14:49Z<p>The preferred method of specifying a "size" (i.e. character width) of an input box is to use the <code>width</code> CSS property:</p>
<pre><code><!-- HTML -->
<input type="text" style="width: 42em;" />
/* CSS */
#search {
width: 42em;
}
</code></pre>
<p>Multi-line text boxes are called <em>text areas</em> in HTML and the <code><textarea></code> element represents them, as the other answers state.</p>
http://stackoverflow.com/questions/1690858/c-polymorphism-issue/1690914#16909141Answer by strager for C# polymorphism issuestrager2009-11-06T22:27:43Z2009-11-06T22:27:43Z<p>Allow <code>B</code> to pass <code>A</code> a <code>DTO</code> object in <code>A</code>'s constructor. If needed, make the constructor <code>protected</code>. Then, have <code>B.D</code> cast <code>A.D</code>.</p>
<pre><code>public class A
{
private DTO _d;
// New constructor.
protected A(DTO d)
{
_d = d;
}
// Old constructor calls new constructor.
public A() : this(new DTO())
{
}
public DTO D
{
get { return _d; }
set { _d = value; }
}
}
public class B : A
{
// Old B constructor calls new A constructor.
public B() : base(new MyDTO())
{
}
new public MyDTO D
{
// Getting D casts A.D instead of using an object exclusive to B.
get { return (MyDTO)base.D; }
set { base.D = value; }
}
}
</code></pre>
http://stackoverflow.com/questions/1678342/convert-python-for-loop-to-php/1678356#16783560Answer by strager for Convert Python for -loop to PHPstrager2009-11-05T04:29:54Z2009-11-05T04:29:54Z<p>To append a value to an array, use:</p>
<pre><code>$summat[] = array_sum(...);
</code></pre>
<p>The PHP way of doing ranges is similar to the C way:</p>
<pre><code>for($i = 0; $i < count($arra); $i += 4) {
// ...
}
</code></pre>
http://stackoverflow.com/questions/1655971/what-happens-if-i-try-to-access-memory-beyond-a-mallocd-region/1656001#165600111Answer by strager for What happens if I try to access memory beyond a malloc()'d region?strager2009-11-01T00:10:34Z2009-11-01T00:54:17Z<blockquote>
<p>What is keeping me from writing into the memory location beyond 81 units?</p>
</blockquote>
<p>Nothing. However, doing this results in <strong>undefined behaviour</strong>. This means <em>anything</em> can happen, and you shouldn't depend on it doing the same thing twice. 99.999% of the time this is a bug.</p>
<blockquote>
<p>What can I do to prevent that?</p>
</blockquote>
<p>Always check that your pointers are within bounds before accessing (reading from or writing to) them. Always make sure strings end with <code>\0</code> when passing to string functions.</p>
<p>You can use debugging tools such as valgrind to assist you in locating bugs related to out-of-bounds pointer and array access.</p>
<h3>stdlib's approach</h3>
<p>For your code, you can have <code>utstrncat</code> which acts like <code>utstrcat</code> but takes a maximum size (i.e. the size of the buffer).</p>
<h3>stdc++'s approach</h3>
<p>You can also create an array struct/class or use <code>std::string</code> in C++. For example:</p>
<pre><code>typedef struct UtString {
size_t buffer_size;
char *buffer;
} UtString;
</code></pre>
<p>Then have your functions operate on that instead. You can even have dynamic reallocation using this technique (but that doesn't seem to be what you want).</p>
<h3>End-of-buffer marker approach</h3>
<p>Another approach is to have an <em>end of buffer</em> marker, similar to the <em>end of string</em> marker. When you encounter the marker, don't write to that place or one before it (for the end of string marker) (or you can reallocate the buffer so there's more room).</p>
<p>For example, if you have <code>"hello world\0xxxxxx\1"</code> as a string (where <code>\0</code> is the end of string marker, <code>\1</code> is the end of buffer marker, and the <code>x</code> are random data). appending <code>" this is fun"</code> would look like the following:</p>
<pre><code>hello world\0xxxxxx\1
hello world \0xxxxx\1
hello world t\0xxxx\1
hello world th\0xxx\1
hello world thi\0xx\1
hello world this\0x\1
hello world this \0\1
*STOP WRITING* (next bytes are end of string then end of buffer)
</code></pre>
<h2>Your problem</h2>
<p>The problem with your code is here:</p>
<pre><code> if ((i+j-1) == 20)
return s;
</code></pre>
<p>Although you are stopping before overrunning the buffer, you are not marking the end of the string.</p>
<p>Instead of returning, you can use <code>break</code> to end the <code>for</code> loop prematurely. This will cause the code after the <code>for</code> loop to run. This sets the end of string marker and returns the string, which is what you want.</p>
<p>In addition, I fear there may be a bug in your allocation. You have <code>+ 1</code> to allocate the size before the string, correct? There's a problem: <code>unsigned</code> is usually not 1 character; you will need <code>+ sizeof(unsigned)</code> for that. I would also write <code>utget_buffer_size</code> and <code>utset_buffer_size</code> so you can make changes more easily.</p>
http://stackoverflow.com/questions/1609702/code-golf-playing-cubes/1621412#16214125Answer by strager for Code Golf: Playing Cubesstrager2009-10-25T17:02:17Z2009-10-27T19:12:50Z<h2>Befunge-93 (too many characters)</h2>
<p>Very unoptimized. My first Befunge program. =]</p>
<pre>
>~:88+`v6 >11p>:!|v g13$< v $<
000090#8 + > >68*31p v > 1-:!|!:-1g14<p+g11g13+g12g 14<
__ :* * 5 ^ < > 31pvvp16<>:41p1- 31g1+g :68*-!#^_ ^
/__ /||\-6 >>1-: |^8 < $<| `g16 $< <
| | |>-*8 ^ ^ p11-2g11-1$ < >31g 11g+:::51g` | 1
|___|/ 8^0 >#-#< v ^< >51p^
< < |`0: p 56 p34:p30:p26:p25:p22:p21:p20:*68<
^ v95:< 6^ *2:* -10< >21g4+21p 11
1 >*- | > > 31g51gg,31g21g-3-!#v_v
1 >$ ^v< | ,+55-g16p15+1:g15 <
|!-*48 <~> ^ ^ p13+1g13 <
> ^ @
</pre>
http://stackoverflow.com/questions/1621912/task-dialog-button-control0Task dialog button control?strager2009-10-25T19:58:34Z2009-10-26T05:38:14Z
<p>I am trying to add a task dialog-style button control to my .NET application (C#). It is labeled "Custom Button" in the screenshot below.</p>
<p><img src="http://i.msdn.microsoft.com/Bb760441.taskdialog%28en-us,VS.85%29.jpg" alt="Task dialog showing desired button control" /></p>
<p>What is the name of this control for .NET, or how can I get it in my .NET form?</p>
<p>I need compatibility with XP (and other non-Vista, non-7 OS's).</p>
<p>I do not need to create the entire dialog. I just want the button.</p>
http://stackoverflow.com/questions/1575096/code-golf-musical-notes/1584057#158405718Answer by strager for Code Golf: Musical Notesstrager2009-10-18T05:05:19Z2009-10-20T02:28:50Z<h2>Golfscript (112 characters)</h2>
<pre><code>' '%:A;10,{):y;A{2/.0~|1=~:r;0=0=5\- 7%
4y@--:q' '' O'if-4q&!q*r*{16q/r<'|\\'
'| 'if}' 'if+{.32=y~&{;45}*}%}%n}%
</code></pre>
http://stackoverflow.com/questions/1575096/code-golf-musical-notes/1575342#157534214Answer by strager for Code Golf: Musical Notesstrager2009-10-15T21:57:28Z2009-10-17T03:16:39Z<h2>C89 (186 characters)</h2>
<pre><code>#define P,putchar(
N[99];*n=N;y;e=45;main(q){for(;scanf(" %c/%d",n,n+1)>0;n
+=2);for(;y<11;q=y-(75-*n++)%7 P+q-4?e:79)P*n&&q<4&q>0?
124:e)P*n++/4>>q&&q?92:e))*n||(e^=13,n=N,y++P+10))P+e);}
</code></pre>
<h3>Half-note support (+7 characters)</h3>
<pre><code>#define P,putchar(
N[99];*n=N;y;e=45;main(q){for(;scanf(" %c/%d",n,n+1)>0;n
+=2);for(;y<11;q=y-(75-*n++)%7 P+q-4?e:v<4?79:64)P*n&&q<4&q>0?
124:e)P*n++/4>>q&&q?92:e))*n||(e^=13,n=N,y++P+10))P+e);}
</code></pre>
http://stackoverflow.com/questions/1569949/instantiating-a-new-php-class-with-one-or-many-arguments/1569977#15699771Answer by strager for Instantiating a new PHP class with one or many argumentsstrager2009-10-15T02:14:39Z2009-10-15T02:14:39Z<p>Use <a href="http://us3.php.net/reflection" rel="nofollow">reflection</a>:</p>
<pre><code>$classReflection = new ReflectionClass($class);
$obj = $classReflection->newInstanceArgs($key);
</code></pre>
http://stackoverflow.com/questions/1569955/cleanly-translate-x-to-y-and-y-to-x-using-a-find-replace-regex-in-textmate/1569959#15699590Answer by strager for Cleanly translate (x to y) and (y to x) using a find/replace/regex in TextMate.strager2009-10-15T02:07:56Z2009-10-15T02:07:56Z<p>Can you do this?</p>
<pre><code>s/true|false/!&/
</code></pre>
http://stackoverflow.com/questions/1569091/first-sentence-regex/1569158#15691580Answer by strager for First Sentence Regexstrager2009-10-14T21:38:22Z2009-10-14T22:04:29Z<p>This works in .NET:</p>
<pre><code>/(?<=^\s*)(?!\s)("(\<'.*?'\>|.)*"|.)*?((?<='*"*)|[.?!]+|$)(?=\ \ |\n\n|$)/s
</code></pre>
<p>Handles quotation marks (American-style) (and quotes "like this 'and this.' Yes, with punctuation.") and sentences ending with multiple punctuations. Also ignores preceding whitespace. Requires two spaces or two end-of-lines or and end-of-file after sentences, though.</p>
<p>Handles the following well:</p>
<blockquote>
<p>So much for Mr. Regex and his sentence matching, as he says "this sentence, isn't it wonderful? One says, 'It's almost as if this was crafted purely for example.'" This part shouldn't match, though.</p>
</blockquote>
http://stackoverflow.com/questions/1569085/prevent-duplicate-entry-into-hashtable-c/1569122#15691221Answer by strager for Prevent Duplicate Entry into HashTable C++strager2009-10-14T21:30:08Z2009-10-14T21:30:08Z<p>The hashes of identical data are identical. Identical will be inserted in the same place unless you handle otherwise (which you do, by finding an unused index).</p>
<p>If a collision occurs between the hash of the data to insert and the hash of existing data, check to see if the data match (because if the data match, the hashes match). The check would occur for every collision, so while you're iterating you need to check the data.</p>
<p>After the <code>if</code> in the <code>while</code> loop, add a check for if <code>hashTable[usedIndex] == s</code> and if that condition is true there's a duplicate (so handle how you wish, e.g. replace or throw an exception).</p>
<p>You may want to replace the innards of your <code>if</code> with a <code>break;</code> so code isn't duplicated. You also need to check if <code>usedIndex == hashIndex</code> because you may experience an infinite loop.</p>
http://stackoverflow.com/questions/1563872/hard-code-list-of-years/1564052#15640521Answer by strager for Hard Code List of Years?strager2009-10-14T03:07:56Z2009-10-14T03:07:56Z<p>E) Use a text input box, because that will always work.</p>
<p>(Be sure to validate it, of course, as a number. Include "Y2K" and "The year World War II started" in a dictionary of years, of course.)</p>
http://stackoverflow.com/questions/1906619/mixing-two-arraysComment by strager on Mixing two arraysstrager2009-12-15T10:58:26Z2009-12-15T10:58:26ZDuplicate of <a href="http://stackoverflow.com/questions/1860490" rel="nofollow">stackoverflow.com/questions/1860490</a> ?http://stackoverflow.com/questions/1897537/why-are-circular-dependencies-considered-harmful/1899273#1899273Comment by strager on Why are circular dependencies considered harmful?strager2009-12-15T09:51:41Z2009-12-15T09:51:41Z"there is no fear of memory leaks for applications" I'm not sure if that statement is very true.http://stackoverflow.com/questions/1897537/why-are-circular-dependencies-considered-harmful/1897550#1897550Comment by strager on Why are circular dependencies considered harmful?strager2009-12-15T09:51:10Z2009-12-15T09:51:10ZIt's not his answer, it's Wikipedia's. I don't mind if the poster uses Wikipedia as a <i>resource</i>, but if it's the entire answer, I disagree with the poster getting the benefits of the answer <i>unless it was difficult to find</i>.http://stackoverflow.com/questions/1899814/what-is-the-best-way-to-determine-your-web-page-has-been-made-active-including-s/1899842#1899842Comment by strager on What is the best way to determine your web page has been made active (including switching browser tabs)?strager2009-12-14T09:42:08Z2009-12-14T09:42:08Z@Andronov, @dusoft is talking about instant messages in the Gmail interface, not actual e-mails.http://stackoverflow.com/questions/1898212/convert-a-vectorunsigned-char-to-vectorunsigned-short/1898255#1898255Comment by strager on Convert a vector<unsigned char> to vector<unsigned short>strager2009-12-14T09:28:37Z2009-12-14T09:28:37Z@Klatchko, Thanks for your comment. You're right in that the code was limited to random-access iterators. However, even when using <code>std::advance</code> I had a check against <code>i + 1</code> which can't be done using all containers. I've reworked the code and hopefully it works better now (and is more type-safe).http://stackoverflow.com/questions/1898212/convert-a-vectorunsigned-char-to-vectorunsigned-shortComment by strager on Convert a vector<unsigned char> to vector<unsigned short>strager2009-12-13T23:37:15Z2009-12-13T23:37:15ZSo you want <code>[a, b, c, d]</code> to turn into <code>[ba, dc]</code>?http://stackoverflow.com/questions/1897537/why-are-circular-dependencies-considered-harmful/1897550#1897550Comment by strager on Why are circular dependencies considered harmful?strager2009-12-13T20:05:35Z2009-12-13T20:05:35ZCommuity Wiki answer?http://stackoverflow.com/questions/1894149/is-null-an-object/1894161#1894161Comment by strager on Is null an Object?strager2009-12-12T18:51:56Z2009-12-12T18:51:56ZThe <code>null</code> name is an "instance" of the <code>null</code> type, apparently.http://stackoverflow.com/questions/1889137/inherit-from-a-template-parameter-and-upcasting-back-in-c/1889314#1889314Comment by strager on Inherit from a template parameter and upcasting back in c++strager2009-12-11T16:52:24Z2009-12-11T16:52:24Z+1 for suggesting a virtual destructor. That's what I thought would be the problem, too.http://stackoverflow.com/questions/1888627/php-how-to-suggest-terms-for-search-did-you-mean/1888917#1888917Comment by strager on PHP - How to suggest terms for search, "did you mean...?"strager2009-12-11T16:46:04Z2009-12-11T16:46:04Z@Gal, The sounds like function likely performs <code>SOUNDEX(left) = SOUNDEX(right)</code>. If you use an index you will have to compare the <code>SOUNDEX</code> of the <code>$string</code> manually in the SQL statement.http://stackoverflow.com/questions/1888786/basic-jquery-pass-the-text-of-a-link-to-a-textbox/1888856#1888856Comment by strager on (Basic jquery) pass the text of a link to a textboxstrager2009-12-11T15:35:58Z2009-12-11T15:35:58Z<code>.val(...)</code> is a shortcut to <code>.attr('value', ...)</code> for <code><input></code> elements.http://stackoverflow.com/questions/1886935/conditional-regex-problem/1886956#1886956Comment by strager on Conditional regex problemstrager2009-12-11T15:34:32Z2009-12-11T15:34:32Z@Srodriguez, Precisely as it should. Remove the last group (<code>|(.+)</code>) to not match the <code> type1</code> part.http://stackoverflow.com/questions/1886935/conditional-regex-problem/1886956#1886956Comment by strager on Conditional regex problemstrager2009-12-11T09:58:42Z2009-12-11T09:58:42ZNo. I think you may want <code>.*</code> before the conditional statement (i.e. <code>(?(.*[:]*)...</code>).http://stackoverflow.com/questions/1870538/how-do-i-see-the-commands-that-are-run-by-gnu-make/1870544#1870544Comment by strager on How do I see the commands that are run by GNU make?strager2009-12-09T09:04:53Z2009-12-09T09:04:53Z@hacker, I did not know that. Thanks for the tip. =]http://stackoverflow.com/questions/1858538/how-do-i-check-in-php-that-im-in-a-static-context-or-not/1858717#1858717Comment by strager on How do I check in PHP that I'm in a static context (or not)?strager2009-12-07T08:56:34Z2009-12-07T08:56:34ZI forgot about that small annoyance. Interesting.