Jarrod Dixon

1,771
Reputation
4895 views

Moderator ♦

Name Jarrod Dixon
Member for 1 year
Seen yesterday
Website
Location Morganton, NC
Age 30
Developer on the Stack Overflow team.

Was dubbed SALTY SAILOR by Jeff Atwood, as filth and flarn would oft-times fly when dealing with a particularly nasty bug!

Twitter me: jarrod_dixon

Email me: jarrod.m.dixon@gmail.com

Stack Overflow Valued Associate #00002
Nov
25
comment How to get jQuery Tablesorter to sort descending by default?
Excellent - needed to do this on some admin tools here on the site :)
Nov
23
awarded  Organizer
Oct
30
revised NUnit vs Team System Unit Test
Add blurb about CHESS.
Oct
30
comment NUnit vs Team System Unit Test
I'm looking at CHESS now for some sync testing, but all our unit tests here on Stack Overflow are in NUnit; I guess the threading tests must be with MSTest.
Oct
16
comment How can I add my attributes to Code-Generated Linq2Sql classes properties?
Yeah, this is the bomb - great answer!
Oct
16
comment Diagnosing “Request timed out” HttpExceptions
It also looks like a lot of the unfinished requests are from "spammy" sources.
Oct
16
revised Best OpenId API for ASP.NET MVC application
added 79 characters in body; added 1 characters in body
Oct
16
comment Looping through XML with jQuery
Regardless, glad you found a solution - NOW ACCEPT KEITH'S ANSWER :)
Oct
16
comment Looping through XML with jQuery
Just curious - why must this be done on the client? Why not apply an XSLT transformation on the server and send down the html? Is the xml dynamic? Could the transformed html not be cached on the server?
Oct
7
comment How to enable IP address logging with Log4Net
Nice - I had done this in a previous life, but had forgotten how. +1
Oct
4
awarded  Enlightened
Oct
4
awarded  Nice Answer
Oct
2
comment To ternary or not to ternary?
Yeah, I love that one as well - it's ?? in C#, the null coalesce operator: stackoverflow.com/questions/278703/…
Sep
23
awarded  Necromancer
Sep
23
revised how does StackOverflow optimise the performance for the display of the questions?
added 83 characters in body
Sep
23
answered how does StackOverflow optimise the performance for the display of the questions?
Sep
12
awarded  Self-Learner
Sep
4
revised Why does Cache.Add return an object that represents the cached item?
Left over code when I was using lots of quotes.
Sep
4
answered Why does Cache.Add return an object that represents the cached item?
Aug
28
revised Most daunting error message?
I MUST LINK TO THE HILARITY
Aug
27
awarded  Popular Question
Aug
23
comment Diagnosing “Request timed out” HttpExceptions
This is really all we've been able to determine - complete requests are not making it to the server. It's troubling, as you want to serve every request, especially POSTs for voting and asking/answering questions!
Aug
23
revised Best way to implement request throttling in ASP.NET MVC?
edited tags; edited title
Aug
23
accepted Best way to implement request throttling in ASP.NET MVC?
Aug
23
answered Best way to implement request throttling in ASP.NET MVC?
Aug
22
answered Can a page’s ValidateRequest setting be overridden?
Aug
19
comment SVN: Colleague checked in a folder into repository, but I can’t Update my version to it
Excellent - running into this right now - nice answer!
Aug
13
revised How to utilize WebDev.WebServer.exe (VS Web Server) in x64?
edited tags
Aug
13
comment How to utilize WebDev.WebServer.exe (VS Web Server) in x64?
Did you find an answer to this question outside of Stack Overflow?
Aug
12
comment Background animation problem with jQuery
We have issues here on Stack Overflow with jQuery animating a background color - when direct linking to an answer, we'll fade the background to highlight which answer you linked to. Sometimes, the animation will not work, so we just hacked a callback to set the background color if it didn't animate properly. Probably not what you're looking for, in this case.
Aug
2
awarded  Yearling
Jul
30
revised How to create ‘magic quadrant’ style chart using ASP.Net?
added 87 characters in body; edited tags
Jul
30
comment How to create ‘magic quadrant’ style chart using ASP.Net?
SWEET MANGO CHUTNEY!
Jul
29
comment Is it a code smell for one method to depend on another?
Excellent point!
Jul
26
comment Best way to use Google’s hosted jQuery, but fall back to my hosted library on Google fail
We've recently switched to using Google as our jQuery host; if we get any bug reports from blocked users, I'll be using a variant of your answer to refactor our client code. Good answer!
Jul
26
revised Best way to use Google’s hosted jQuery, but fall back to my hosted library on Google fail
Fixed completely incorrect javascript.; added 185 characters in body
Jul
24
comment SQL to determine minimum sequential days of access?
This is now in production - hehe, my initial query was good at first, but it didn't scale linearly; you never know until you get data :) Thanks for your work on this!
Jul
24
comment SQL to determine minimum sequential days of access?
This works - and it's fast. However, I used a COUNT(Offset) as the consecutive days, as the DATEDIFF was one less than the actual count.
Jul
24
comment LinqToSql - mapping exception when using abstract base classes
Yeah, I'm thinking this is a bug, as well.
Jul
8
awarded  Disciplined
Jul
8
comment What is the best commit message you have ever encountered?
youtube.com/watch?v=MlfcF1I5e_g
Jul
5
comment Should I use != or <> for not equal in TSQL
Nice! I haven't worked with Oracle in a while - I remember always forgetting to use <>!
Jun
26
comment Retrieve label content in Jquery
That will also get the * from the <em>.
Jun
26
revised Retrieve label content in Jquery
cleaned up spacing and minor grammar edits.
Jun
26
awarded  
Jun
23
comment ASP.NET MVC Ajax (jQuery): generate code server-side?
I really like this technique; we use it here on Stack Overflow quite a bit! And as for the quantity of records you want to show, 1000-2000 seems excessive. Even sending down raw html from the server will result in long load times as that html is parsed/added to the DOM. I'd recommend sending down JSON in batches of 50-100 and rendering using this technique.
Jun
21
revised LinqToSql - mapping exception when using abstract base classes
Emphasize where the sample project can be downloaded from.
Jun
20
asked LinqToSql - mapping exception when using abstract base classes
Jun
19
awarded  Enlightened
Jun
19
awarded  Nice Answer