GalacticCowboy

3,674
Reputation
317 views

Registered User

Name GalacticCowboy
Member for 1 year
Seen Nov 24 at 16:35
Website
Location Indianapolis, IN
Age 37
Professional: 10+ years C++/C#/HTML/ASP.NET/SQL Personal: 1 wife, 3 kids, 1 dog
Nov
20
comment IE’s XHTML Compatibility
Unfortunately, you're wrong. See howtocreate.co.uk/wrongWithIE/?chapter=XHTML/… - they have a demonstration (bottom of the page) that uses XHTML strict to force a failure in IE.
Nov
18
comment Do you know of a Visual XML Schema Designer tool?
@CodeMonkey - that's how I typically do it anyway. The tools are good for generating pretty pictures, but it's certainly no faster creating your schema visually than it is to just write it, especially if your tool has code completion/IntelliSense.
Nov
13
comment Javascript “do-while” type loop
You might even be able to tell JSLint to ignore this rule. But like it says on the JSLint site, "Warning: JSLint will hurt your feelings."
Nov
13
comment Javascript “do-while” type loop
It's like OtherMichael said, it's a "code smell" - a style that, while syntactically valid, can be the source of bugs if you're not careful. In general, the best practice would be that your loop control should only test, not assign. With that said, 95% of programmers would do it the first way anyway; it's not an error to ignore JSLint - the tool is just there to bring it to your attention but you don't have to follow their advice 100% of the time.
Nov
13
comment Using Recursion To Compare Strings To Determine Which Comes First Alphabetically Java
Homework? Is there a reason you have to use recursion? For that matter, if there is a worst possible way to solve this type of problem, recursion is probably pretty close to it.
Nov
13
answered Javascript “do-while” type loop
Nov
9
awarded  Nice Answer
Nov
9
comment POSTing data to ASP.NET MVC from a WPF app
Could you show the code where the URL is specified? Have you verified that the incoming URL is set correctly?
Nov
9
revised POSTing data to ASP.NET MVC from a WPF app
Fixed code formatting
Nov
3
answered how to check which event caused the post back in asp.net mvc application
Nov
3
comment Why do most programmers know nothing about hardware?
However, not knowing how the CPU works (at a high level anyway) can make your code a lot worse... Different platforms and architectures work in different ways. So if you write SQL in the same way you write COBOL, one or the other is going to suck.
Nov
3
revised Why do most programmers know nothing about hardware?
edited body
Nov
1
answered Why do most programmers know nothing about hardware?
Nov
1
comment Conversion from string to double error
param name="url" value='<%# string.Format("VideoHandler.ashx?FileID={0}", Eval("FileID")) %>'
Oct
29
answered Conversion from string to double error
Oct
25
comment JQuery Contains Selector - Multiple Text Items
It should work the same, just do two different "contains" clauses, separated by a comma.
Oct
23
revised Best design pattern for database table joins
added 619 characters in body
Oct
23
answered Best design pattern for database table joins
Oct
22
answered List<something> and GridView editing
Oct
21
awarded  Yearling
Oct
12
comment Which validation library for ASP.NET MVC?
Not sure about Misha, but we use xVal + DataAnnotations. I built a T4 generator that emits our business objects and DAL, and it puts the appropriate attributes on the data members.
Oct
8
awarded  Nice Answer
Oct
6
comment MVC wysiwyg editor?
You create <textarea /> elements and then either tell the editor the id of your textarea (explicit registration) or to just load into any textarea on the page.
Oct
6
answered MVC wysiwyg editor?
Sep
21
accepted LINQ to SQL - Nullable INT in ForeignKey = “Cannot create an association…”
Sep
17
comment HOw insert Byte array in SQL table
The type you want for a varbinary is, appropriately enough, "DbType.VarBinary". In order to support more than 8000 bytes you have to explicitly specify the type as I did above.
Sep
17
comment HOw insert Byte array in SQL table
There's also an overload on the constructor where you can specify a field length; for example, new SqlParameter("@name", DbType.NVarChar, 128);
Sep
17
answered HOw insert Byte array in SQL table
Sep
11
accepted How to prevent a users editing other profiles other than own in MVC.NET Web Application?
Sep
10
revised How to prevent a users editing other profiles other than own in MVC.NET Web Application?
added 363 characters in body
Sep
10
answered How to prevent a users editing other profiles other than own in MVC.NET Web Application?
Sep
1
answered How to use raw normal sql in ASP.NET MVC without linq?
Jul
25
comment How does asp.net mvc figure it out?
From the route or the form field collection.
Jul
19
comment Is Software Engineering Dead?
Pretty much anything subjective or otherwise "not a single right answer" is flagged as "should be CW".
Jul
17
comment Is there a way to get Eclipse to treat 4 spaces exactly as it treats a tab?
+1 - I'm not very familiar with Eclipse, but this sounds like the right answer for any "sane" IDE. It sounds like the OP is trying to solve a problem that doesn't exist, without using the tools already at his disposal.
Jul
17
comment Is there a way to get Eclipse to treat 4 spaces exactly as it treats a tab?
So you want to use spaces instead of tabs, but you want them to behave like tabs? If you want tabs, use tabs.
Jul
16
comment “Windows (Vista) cannot find “abc.def”. Make sure you typed the name correctly and then try again.”
Is your file type registered to use DDE?
Jul
15
comment Performance issue with site speed ‘w3p.exe’ process –reaches 99/100%
If kragen2uk is correct that this can be managed by changing the worker process recycle in IIS, this question probably belongs on serverfault. On the other hand, it could be bad coding... It's hard to say with the details we're given. However, you might want to keep your webhost happy - it is entirely within their right - and probably in their terms of service - that they can terminate any account that "abuses" system resources.
Jul
14
comment asp.net Membership : confirmation email blank
The confirmation e-mail is not a standard feature of ASP.NET membership, so you'll need to provide more details as this sounds like custom code that is having problems.
Jul
14
answered T-SQL equivalent of =rand()
Jul
14
comment Should I provide lost credentials to users via a direct message on Twitter?
But Twitter is out there for the world to see. It's a much lower level of trust.
Jul
13
comment Best CMS Framework
Wish I could upvote again for your edit...
Jul
13
comment Best CMS Framework
Your answer highlights one of the fundamental problems with this question - what does "CMS" even mean? MOSS/WSS are document-centric, and primarily focused on intranet use, while most of the others you mentioned are page-centric and focused on internet use. So without more details in the OP, you pretty much covered all the bases. :)
Jul
13
comment WPF Font: Why are some characters missing?
After I entered the numbers, I selected them and then switched the font to another face and then back to Scramble, and they showed up.
Jul
13
comment WPF Font: Why are some characters missing?
I tried it in Word, and the numbers initially didn't show up but if I went back and specifically set the font formatting then they showed up. But yeah, the numbers are kinda goofy. They don't show up in the font preview either.
Jul
12
awarded  
Jul
11
comment Where can I learn the basics of game physics and the math behind it?
Also, given how expensive such math has been to calculate (in terms of the operators implemented by most processor instruction sets), many games approximate, cache or otherwise shortcut the calculations to reduce load as much as possible.
Jul
11
comment How do I think about math in programming?
I agree - most of the math I've used in the past 15 years has been fairly elementary, except for some forays into trig. But then, I'm not writing fluid dynamics simulations, either...
Jul
11
comment asp.net mvc html.password set value
The HTML 4.01 spec states "Note that the current value is the text entered by the user, not the text rendered by the user agent.", and "The control's 'current value' is first set to the initial value. Thereafter, the control's current value may be modified through user interaction and scripts. A control's initial value does not change."
Jul
11
comment asp.net mvc html.password set value
Yeah, you're right. I know this used to be the case, because I've had to deal with it...