Jimmy

678
Reputation
87 views

Registered User

Name Jimmy
Member for 1 year
Seen yesterday
Website
Location Redmond, WA
Age 23
Oct
5
awarded  Yearling
Sep
10
comment How to add and bind a cs file to an ASCX/ASPX page that doesn’t alrady have one?
Are you going from a single file (i.e. inline code) to a code-beside file?
Sep
10
accepted Silverlight Out of Browser Host
Aug
22
answered I have downloaded silverlight3 SDK and silverlight toolkit. Now How to configure this with Visual studio 2008?
Aug
20
awarded  Nice Answer
Aug
20
answered To Host Silverlight Application on a Classic ASP page
Aug
13
accepted my VS2008 cannot connect to Sql Server 2008, why?
Aug
13
answered my VS2008 cannot connect to Sql Server 2008, why?
Aug
10
comment Why null-terminated strings? Or: null-terminated vs. characters + length storage.
"When CPU registers were a scarce resource" - registers are still a scarce resource on x86 and x64.
Aug
10
comment Why null-terminated strings? Or: null-terminated vs. characters + length storage.
Extra storage can still be a big issue for embedded systems, which is one reason to stress keeping the language light-weight.
Aug
10
answered Why null-terminated strings? Or: null-terminated vs. characters + length storage.
Jul
28
awarded  Commentator
Jul
28
comment in StackOverFlow, how can I find peoples who have got gold badges for their great answers?
probably belongs on SO meta
Jul
23
answered What is the most memory Visual Studio can use on a 32bit Windows Server 2003 OS?
Jul
23
comment What software do i need to install to use WPF in VS2005
The Silverlight link you posted was relating to the 1.1 alpha release; much has changed from then to SL 2 and now SL 3. Silverlight development requires VS 2008 now.
Jul
23
accepted Should I get Visual Studio 2008 or skip it for 2010 beta?
Jul
23
answered Should I get Visual Studio 2008 or skip it for 2010 beta?
Jul
19
comment Can you install Visual Studio 2008 Pro and Team System side-by-side?
Wrong, you can install different SKUs of the same version side by side.
Jul
18
answered Does Silverlight 3 have access to local file system, Open Excel, and print reports?
Jul
17
answered Silverlight Out of Browser Host
Jul
10
comment How do I find/make programming friends?
@esm: you're missing out on your potential. xkcd.com/323
Jul
6
comment How do I programatically retrieve the actual path to “Program Files” folder?
There is a gotcha to this if I recall correctly: it does not distinguish between x64 and x86 versions of Windows. If you're looking for %programfiles(x86)%, you'll have to find another method.
Jul
4
answered What is the “Quickest” Programming Language (and why)?
Jul
4
comment Why does C++ use pointers?
For that matter, try writing a swap function in C# or Java without explicitly declaring parameters as a reference. It's suddenly a bit difficult. They use something quite similar to pass-by-reference, but a better name is eluding me at this point.
Jul
4
comment Why does C++ use pointers?
"Beginners are well advised to stay FAR away from this amoutn of power and ... complication..." Except that beginners are also often pointed to languages which provide nearly equally difficult concepts, if not the same features provided by pointers anyways.
Jul
4
answered Why does C++ use pointers?
Jun
28
accepted Siverlight setup issue
Jun
27
answered Siverlight setup issue
Jun
27
answered ASP.NET MVC newbie: can’t get aspnet_regsql.exe to work
Jun
23
answered How to delete an array of pointers
Jun
21
comment Print an int in binary representation using C
one more code tweak that (IMHO) makes it more readable is to use (a & (1<<i)) instead of (a & 1) followed by (a >>= 1) to verify the i'th bit. That way the loop body contains only the logic, not any statements needed to update values.
Jun
21
answered How to customize publication in ASP.NET?
Jun
21
answered Starting age for a career in software - fresh out of school?
Jun
20
awarded  Scholar
Jun
20
awarded  Student
Jun
20
asked Should I have separate SQL accounts for different query types?
Jun
19
answered Passing pointers to function
Jun
19
answered MySQL or SQL Server better for an Enterprise application?
Jun
15
answered What “already invented” algorithm did you invent?
Jun
10
answered Migrating tiny C# console app to something running on Ubuntu Server 9.04