Chris Charabaruk
|
Registered User
|
Programmer, startup founder, internet troll, and more! I'm the founder of Taskerrific, a social task list/project management tool. I also do some short-term contract coding work and indie game development on the side. You'd be better off knowing more about me by visiting my website or FriendFeed than by reading this, however. |
|
Nov 22 |
comment |
how to use function(1)(2) in javascript? and how does it work? No need to give a name to the function being returned, btw. return function(n2) would be just as good, and less typing, too. |
|
Nov 21 |
comment |
Is a gaming machine better for software development? What danielkza said. With powerful enough hardware, you can always emulate the target system through virtualization. |
|
Nov 17 |
comment |
Detect if any key is pressed in C# (not A, B, but any) That doesn't help. |
|
Nov 14 |
comment |
How to create an event that runs every 24 hours? Put four spaces in front of each line for those cron entries. That way the code formatting takes over and your answer doesn't look like crap. |
|
Nov 4 |
comment |
How to avoid HttpRequestValidationException in ASP.NET MVC rendering the same view which caused the exception It'd be so nice if ValidateInputAttribute would accept the name of a field (or a list of names), so that validation could be turned off selectively. All or nothing tends to suck, cause duplication of effort, and generally just makes things more troublesome. |
|
Oct 28 |
comment |
How to keep an Engineering Log Oh, they keep them, they just don't let you access them. (Which, I guess, amounts to the same thing from a practical point of view.) |
|
Oct 28 |
comment |
How to get the jQuery $.ajax error response text? thenduks: PHP knows what it is doing. The issue is that because the HTTP status coming back is 500, $.ajax() calls the error function passed to it. |
|
Oct 27 |
comment |
What is the best Battleship AI? BTW, reddited: reddit.com/r/programming/… |
|
Oct 27 |
comment |
Hidden Features and Dark Corners of STL? An example would help. I'd add one if I had ever dealt with locales myself... :p |
|
Oct 23 |
answered | .net MVC, SelectLists, and LINQ |
|
Oct 19 |
comment |
What are the best ways of protecting my source code? If there's a will, there's a way. |
|
Oct 19 |
revised |
jQuery Tips and Tricks check and assign |
|
Oct 19 |
comment |
What are some quick tips for increasing jQuery performance? True if you're looking at drastic improvements in speed. However, there are simple tricks which do make for better execution, even if its only 100 or so milliseconds. |
|
Oct 19 |
comment |
What are some quick tips for increasing jQuery performance? @jpartogi: jQuery creates a new object every time you pass a selector into $() but because its methods return this you can stack them like that. The trick here is to not create three different objects all for the same selector. |
|
Oct 19 |
comment |
What are some quick tips for increasing jQuery performance? Or if you can't do it all at once, put $("#foo") in a variable and use that rather than recreating $("#foo") every time. |
|
Oct 10 |
accepted | Bizspark - Licensing after product goes live |
|
Sep 26 |
comment |
C#: Test if string is a guid without throwing exceptions? To follow up, the valid lengths for string-form GUIDs are 32, 36, and 38 -- pure hex, dashed, and braces-with-dashes, respectively. |
|
Sep 26 |
comment |
C#: Test if string is a guid without throwing exceptions? Guid accepts more than just the dashed string form in its ctor. GUIDs can have surrounding curly braces with dashes, or be free of dashes or braces. This code will generate false negatives when used by those alternate but also perfectly valid string forms. |
|
Sep 12 |
awarded | ● Yearling |
|
Aug 30 |
comment |
Detecting an “invalid date” Date instance in JavaScript I deleted my original answer since checking if NaN is a much better solution than comparing to a string "Invalid Date". I'll have to make use of the isNaN solution, myself. |
|
Aug 30 |
comment |
Detecting an “invalid date” Date instance in JavaScript Why not "d instanceof Date" for that first comparison instead? |
|
Aug 30 |
comment |
Add a row on top of table generated by javascript jQuery answer would be good for a jQuery question. |
|
Aug 28 |
comment |
Using Git with Visual Studio How about telling Git to ignore the bin/ and obj/ directories within a project too? Unless, of course, you want it to track your build cruft... :p |
|
Aug 28 |
comment |
Using Git with Visual Studio Vertis: TortoiseGit has been out for a while... |
|
Aug 28 |
comment |
Why is git better than Subversion? Re #5: While this is normally true, sometimes Git does screw this up. At least with Subversion, problems due to move or delete are almost invariably a PEBKAC. While it's nice to have automatic move/delete tracking, I'd still at least appreciate the ability to explicitly state what I'm doing to files in the repository, even if I don't need to use it. |
|
Aug 26 |
comment |
Can I get any terser with lambdas? Mx. trs. |
|
Aug 26 |
comment |
goto keyword in java And then there's "'Go To Statement Considered Harmful' Considered Harmful", and "'"Go To Statement Considered Harmful" Considered Harmful' Considered Harmful?" VEEEEERY recursive, this meme. |
|
Aug 25 |
comment |
Subversion: How do you avoid forgetting to check stuff in? I also use AnkhSVN, but yeah, VS extensions like these do a good job of waving a flag in one's face that stuff needs to be committed. |
|
Aug 24 |
accepted | CVS and Visual Studio 2008 - integration options |
|
Aug 22 |
comment |
Request vista UAC elevation if path is protected? P/Invoking wouldn't change anything; the rules for UAC are the same whether you're managed or native. It's COM, external process, or bust. |
|
Jul 31 |
comment |
Can I get any terser with lambdas? Add a line break at an appropriate spot in the code, make sure the second line is appropriately spaced. |
|
Jul 23 |
comment |
Render view to string followed by redirect results in exception I know it's the call to Flush causing it. Phil's right, about the only way around this is to create a whole new request. |
|
Jul 21 |
revised |
In ASP.NET MVC, preserve URL when return RedirectToAction edited tags |
|
Jul 21 |
comment |
Free usable partition editor for Windows? I think it'd be more the bailiwick of Superuser. Partitioning isn't just a server admin thing. |
|
Jul 21 |
comment |
Render view to string followed by redirect results in exception I want to use the WebForms engine for building the email bodies themselves. Spark looks kind of neat, but I'm still much more comfortable with the idea of using WebForms all through. By the way, by new request, I'm assuming HttpServerUtility.Execute is good? As for synchronous sending, it doesn't have to be that way, it all depends on the settings for SmtpClient doesn't it? Since I can have it dump mails in a folder for later sending, that's not a problem. |
|
Jul 21 |
comment |
Render view to string followed by redirect results in exception No, that'll have the same problem. EmailTemplateService.RenderMessage() is practically the same code as I'm already using, except making a MailMessage instead of a string. |
|
Jul 19 |
asked | Render view to string followed by redirect results in exception |
|
Jul 17 |
revised |
Bizspark - Licensing after product goes live Server software; dev tools are okay |
|
Jul 17 |
answered | How do I calculate relative time? |
|
Jul 15 |
answered | Bizspark - Licensing after product goes live |
