spoulson

5,309
Reputation
321 views

Registered User

name spoulson
member for 1 year
seen 4 hours ago
website
location Middletown, DE
age 32
A hobbyist coder enthusiast, a performance car technician, home improvement handyman, and family guy.



FriendFeed FriendFeed
Twitter Twitter
Delicious Delicious

Email Contact me
1d
awarded  Popular Question
2d
awarded  Mortarboard
Nov
30
answered C++ : implications of making a method virtual
Nov
27
comment jQuery animate backgroundColor
This list came from the jQuery color plugin: plugins.jquery.com/project/color
Nov
27
comment Is it possible to send a http request only to get the last modified time?
I think he was asking how...
Nov
20
revised Code-Golf: What is the shortest program that compiles and crashes?
added 65 characters in body; added 34 characters in body
Nov
20
comment Code-Golf: What is the shortest program that compiles and crashes?
Yes, but standard compliance is not a requirement here. It compiles and crashes in VC++ 2008.
Nov
20
answered Code-Golf: What is the shortest program that compiles and crashes?
Nov
20
comment Initialising arrays in C++
You're measuring variable initialization on the stack. This is different than a global variable initializer. Though, it's not clear which the poster is using.
Nov
20
answered Initialising arrays in C++
Nov
19
answered Unix timestamp to .net DateTime
Nov
19
answered Fast algorithm for searching for substrings in a string
Nov
16
comment C#: meaning of statement… Action wrappedAction = () =>
This is syntactic sugar, not framework magic. So, should read "...only available in C# 3.0+. The C# 2.0 version..."
Nov
16
comment C#: meaning of statement… Action wrappedAction = () =>
FWIW, C# 3.0 syntax requires at least .NET 2.0 framework. The project settings determine if it's compiled for 2.0 or 3.5 framework.
Nov
16
comment Why exactly do I need an explicit upcast when implementing QueryInterface() in an object with multiple interfaces()
How is ppv defined?
Nov
13
accepted JQuery: Appending Attribute Value to Each Element
Nov
13
answered JQuery: Appending Attribute Value to Each Element
Nov
13
answered CSS - position fixed and bottom
Nov
12
comment What’s a good and simple way to backup an SVN repo to an FTP server?
Oops, you're right. Corrected the command.
Nov
12
revised What’s a good and simple way to backup an SVN repo to an FTP server?
added 6 characters in body
Nov
10
answered What’s a good and simple way to backup an SVN repo to an FTP server?
Nov
6
answered Reversing order of elements
Nov
6
comment Interview Programming Questions - In house Exam
Looks like the techinterviews.org site is gone. :(
Nov
6
revised Access a C++ struct in C#
Clarified title, reformatted code
Nov
6
answered a very simple c++ oop question
Nov
5
answered ASP.net Application domain
Nov
5
answered To write a bootloader in C or C++?
Nov
5
comment To write a bootloader in C or C++?
Have a link to where to find this library?
Nov
4
comment Invalid viewstate error
Huh? Who's upvoting a "bump" answer?
Nov
4
revised Invalid viewstate error
Formatted log excerpt
Nov
4
comment How to Convert Byte* to std::string in C++?
You're all right. I hadn't run this through the compiler as I should have. You will need the (char *) typecast, since std::string doesn't handle BYTE/unsigned char types. And the reference example was wrong; it should have been a pointer.
Nov
4
revised How to Convert Byte* to std::string in C++?
Fixed type casting
Nov
4
answered How to Convert Byte* to std::string in C++?
Nov
3
comment Amazing programming achievements
Geocities is now defunct. Hopefully, this has been hosted elsewhere.
Nov
2
comment PHP != and == operators
Downmod me if you know I'm wrong... I dare ya!
Nov
2
answered PHP != and == operators
Oct
30
comment What is the best way to go about writing a simple x86 assembler?
Ok, I think I didn't fully understand what you were asking for. Though, if you've written a lexer/parser for a C-like language, x86 assembler should be a cinch. At first glance I'd say the AST nodes would contain metadata for each primative, such as byte offset, symbol references, etc. e.g. a branch operator would reference a label node, which contains its offset.
Oct
30
answered What is the best way to go about writing a simple x86 assembler?
Oct
30
comment How do I connect to an MS Access database using Perl?
DBI->connect("dbi:ODBC:$connection_string");
Oct
30
comment Reversing an MD5 Hash
Ack, this site was already mentioned in the comments. Oops.
Oct
30
answered Reversing an MD5 Hash
Oct
30
awarded  Notable Question
Oct
30
answered Using || operator
Oct
29
comment Why does an undef value become a valid array reference in Perl?
This is Perl's virtue of DWIM (Do what I mean).
Oct
29
comment How does the (function() {})() construct work and why do people use it?
Point noted. It comes down to the specifics of the implementation.
Oct
29
comment How does the (function() {})() construct work and why do people use it?
Just change the "(function() {..." to "var func = function() {...}; func();". There, closure.
Oct
28
answered How does the (function() {})() construct work and why do people use it?
Oct
28
comment What is the best way to implement background services for an ASP.NET application?
See also stackoverflow.com/questions/1424837/…
Oct
28
answered C++ MFC vs .NET?
Oct
14
comment C: Looping without using looping statements or recursion
I detect a buffer overflow "feature".