User seanb - Stack Overflowmost recent 30 from stackoverflow.com2009-12-10T12:09:24Zhttp://stackoverflow.com/feeds/user/3354http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1857418/matching-up-curly-brackets/1857470#18574701Answer by seanb for Matching up Curly Bracketsseanb2009-12-07T02:31:14Z2009-12-07T02:31:14Z<p>Would suggest if you are having problems matching braces, start a new function definition, just start by adding the control flow and branching (ifs, elses,...), and use braces on every if / else if / else block - even the one liners. </p>
<p>When you get that right, add the rest of the function.<br>
When the braces become a no brainer, then start skipping them for one liners.</p>
http://stackoverflow.com/questions/1431670/underestimate-and-therefore-undercharge-your-clients-what-would-you-do/1431715#14317152Answer by seanb for Underestimate and therefore undercharge your clients-- what would you do?seanb2009-09-16T08:36:02Z2009-09-16T08:36:02Z<p>Drink a lot of coffee, and learn from your mistakes.</p>
http://stackoverflow.com/questions/304371/jquery-cycle-help/304475#3044752Answer by seanb for jquery - cycle helpseanb2008-11-20T06:20:11Z2009-09-02T20:15:58Z<p>I will take a guess that this is just not working for you.<br />
You need to balance your braces and parentheses.<br />
<strong>Please</strong> help others to help you by saying what the actual problem is next time. </p>
<p>Try this:</p>
<pre><code>$(document).ready(function() {
$('.pics').cycle({
fx: 'scrollDown',
speed: 300,
timeout: 2000
});
});
</code></pre>
http://stackoverflow.com/questions/1242599/css-browser-compatibility-issues/1242619#12426193Answer by seanb for CSS Browser Compatibility issuesseanb2009-08-07T02:37:07Z2009-08-07T02:37:07Z<p>First up, it would serve you well to download virtual pc and the IE compatibility testing VHDs from here <a href="http://www.microsoft.com/Downloads/details.aspx?FamilyID=21eabb90-958f-4b64-b5f1-73d0a413c8ef&displaylang=en" rel="nofollow">http://www.microsoft.com/Downloads/details.aspx?FamilyID=21eabb90-958f-4b64-b5f1-73d0a413c8ef&displaylang=en</a>, I have also used IEtester as mentioned by zombat, but prefer the VPC images.</p>
<p>You can then test your app against different flavours of IE.</p>
<p>For the sake of getting IE 6 to work, I often resort to a separate CSS sheet for it, and link this using conditional comments <a href="http://msdn.microsoft.com/en-us/library/ms537512(VS.85).aspx" rel="nofollow">http://msdn.microsoft.com/en-us/library/ms537512(VS.85).aspx</a> </p>
<p>Good Luck :)</p>
http://stackoverflow.com/questions/58640/great-programming-quotes/58655#58655168Answer by seanb for Great programming quotesseanb2008-09-12T10:46:40Z2009-07-17T09:33:43Z<p><em>"My definition of an expert in any field is a person who knows enough about what's really going on to be scared."</em></p>
<p>P. J. Plauger, Computer Language, March 1983</p>
<p><em>"An expert is a man who has made all the mistakes that can be made in a very narrow field"</em></p>
<p>Niels Bohr</p>
http://stackoverflow.com/questions/140270/humor-in-code/143047#14304721Answer by seanb for Humor in codeseanb2008-09-27T05:13:04Z2009-04-02T15:53:48Z<pre><code>// every time you call this a kitten dies somewhere
</code></pre>
<p>O(n<sup>3</sup>) method follows...</p>
http://stackoverflow.com/questions/613129/how-to-write-a-database-class-that-supports-parameterized-queries/613236#6132361Answer by seanb for How to write a database class that supports parameterized queriesseanb2009-03-05T01:07:49Z2009-03-05T01:07:49Z<p>Would second the call to find a tried and tested wheel that works for you, especially if this is your first foray into aspnet... there will be plenty else to keep you busy. </p>
<p>Would add a suggestion for <a href="http://subsonicproject.com/" rel="nofollow">SubSonic</a>, which is perhaps a little lighter than nHibernate, but it really depends on the nature of your project, they are both great tools, and both have saved me months of work over the last few years.</p>
http://stackoverflow.com/questions/612395/asp-net-postback-error/612659#6126590Answer by seanb for ASP.NET Postback errorseanb2009-03-04T22:01:00Z2009-03-04T22:01:00Z<p>If your popup (or anything else) is injecting anything into the form which does the postback, then that may be the source of the error. </p>
<p>I have had this error when using hand wired jquery ajax calls to update cascading select lists (much faster than aspnet ajax), the new values that were put into the secondary select (which was runat=server) caused event validation to fail. You can either go through registering it all with the script manager (which I find a little painful), or disable event validation, but that does mean working a little harder and validating it all yourself.</p>
http://stackoverflow.com/questions/588672/why-is-the-asp-net-dropdown-list-button-color-tied-to-the-windows-color/588788#5887881Answer by seanb for Why is the asp.net dropdown list button color tied to the windows color?seanb2009-02-26T01:49:08Z2009-02-26T01:49:08Z<p>Browsers, to a varying degree, pick up the users colour settings from the os, like any other application, so in the absense of any author specified settings, they are usually the default. </p>
<p>Be aware that once you start tweaking the styling for selects and other form elements, you need to be sure of giving a quite complete set of style rules, otherwise it can all go to hell in a handcart very quickly, just how quickly depends on the browser.</p>
http://stackoverflow.com/questions/588570/why-cant-my-software-initialize-hardware-on-a-different-motherboard/588666#5886661Answer by seanb for Why can't my software initialize hardware on a different motherboard?seanb2009-02-26T01:00:06Z2009-02-26T01:00:06Z<p>If it's not a hardware/driver issue then a few other things may be going on. </p>
<p>A bit (lot) of a stab in the dark, but it might be that the kiosk software might have a hard coded string or "magic number" buried inside of it, designed to identify a particular device in a certain configuration, especially if the software manufacturer designed it to work on just one particular board and config. </p>
<p>That shouldn't happen, but here on planet earth, it sometimes (too often) does. I have worked on POS software a long time ago that did things like this in order to enforce vendor lock in for hardware supply (not my idea).</p>
<p>I would look around to see what the hardware ids for the HID are on both boards, and see if they are any different.</p>
<p>Probably the best course of action would be to contact the software provider, but if that is not an option, you may be able to get some insights into the innards of the program, and any hardcoded device identifiers using reflector: <a href="http://www.red-gate.com/products/reflector/" rel="nofollow">http://www.red-gate.com/products/reflector/</a>. </p>
<p>Note that as you are not a developer, this may just look like greek (insert any other language that you don't understand if you are fluent in greek), and explaining what it all means is way beyond the scope of this answer. But the thing to look for would be the hardware id of the HID from the first board, or anything else up the chain to the usb controller.</p>
http://stackoverflow.com/questions/580740/will-html-be-replaced-by-any-new-technology/580876#5808760Answer by seanb for Will HTML be replaced by any new technology?seanb2009-02-24T08:05:30Z2009-02-24T08:05:30Z<p>Ufortunately, not in the near future. At best they will only really go along the lines of Flash/Java Applets/Siverlight, and just be (mostly) black boxes embedded in html. </p>
<p>Not that I have anything against html per se, I make most of my living doing web sites and related programming, having wrangled with html (+css + js +asp/php/cgi/aspnet/jsp...) since netscape was big, along with the associated browser compatibility issues. </p>
<p>Web developers have been fighting tooth and nail with the limitations of html for years now, and the ever increasing expectations of clients of a more desktop like experience doesn't make it any easier. </p>
<p>Sure we have some fancier tachniques like ajax to play with, and browsers' js engines are getting better, but html still shows the limitations of its roots as relatively static publishing medium. But it is the dominant medium, and wont go away any time soon. </p>
<p>HTML 5 promises to make some improvements, but has been at the centre of a nerd war for way too long, at least a few years before we see any significant changes there.</p>
http://stackoverflow.com/questions/580700/what-exactly-does-this-url-mean/580808#5808084Answer by seanb for What exactly does this url mean?seanb2009-02-24T07:38:24Z2009-02-24T07:38:24Z<p>Basically, you write a script in your preferred language, and map that script to <em>yourtrackingscript.gif</em>. ..jpg, png even.</p>
<p>Have done this in asp.net using a http handler.</p>
<p>The script reads the querystring like any other dynamic page (aspnet, asp, php, anything really), then writes it to a db or log file, or does whatever else you want to do with it.</p>
<p>Then set the content-type header appropriately e.g "image/gif", and send back a 1 pixel image, or any other sized image you like. </p>
<p>For just a 1 pixel image, I have opened up a 1 pixel spacer.gif type image in a hex editor, and hard coded it as a byte array to send out as the response, will save a little IO overhead if it gets hit a lot, alernatively, you can read a file from disk or DB and send that back instead.</p>
<p>This is a commonly used trick in email newsletters to track open rates etc.<br />
Often the hardest bit about it is when you don't have enough rights to map the url to the script on a shared machine, but you can develop it as a normal script/program, then get the mapping sorted out once you have it working. </p>
<p>Most modern browsers will respond to a an aspx or php (.etc...) url as an image if it sends the right headers, it's older browsers, browser nanny plugins, and email clients that are the most pernickety about it.</p>
http://stackoverflow.com/questions/579861/handling-long-page-execution-times-in-asp-net/579890#5798900Answer by seanb for Handling long page execution times in ASP.NETseanb2009-02-23T23:47:30Z2009-02-23T23:47:30Z<p>A quick and dirty option might be to set Page.Server.ScriptTimeout to a really high value on that page. (I think it maxes at Int.MaxValue). </p>
<p>Probably advisable to block the submit button after its been clicked, and inform the user that they may want to go make a coffee. </p>
http://stackoverflow.com/questions/579463/what-do-you-call-dhtml-these-days/579745#5797451Answer by seanb for What do you call DHTML these days?seanb2009-02-23T22:49:40Z2009-02-23T22:49:40Z<p>My 0.02 for DHTML being a valid, albeit currently unfashionable term.<br />
<a href="http://en.wikipedia.org/wiki/DHTML" rel="nofollow">http://en.wikipedia.org/wiki/DHTML</a> - Dynamic HTML<br />
- just because most javascript animation sucked and JQuery didn't exist at the time that term was coined, doesn't make it any less valid. </p>
<p>Some people even did Ajax before there was a name for it... </p>
<p>What you call it doesn't really matter, unless you're in the marketing department.<br />
<em>"call it yo mama if you want to"</em></p>
http://stackoverflow.com/questions/575513/why-is-c-suddenly-so-popular/576127#5761274Answer by seanb for Why is C# suddenly so popular?seanb2009-02-22T23:57:20Z2009-02-22T23:57:20Z<p>C# behaves like I always wanted java to behave. </p>
<p>It generally "feels" like I write less code to achieve the same outcome than the equivalent in java. Java seems to force you to be "enterprisey", c# just gives you the option. (totally subjective "vibe" based opinion)</p>
<p>Cross platform is a non issue for me, there are enough windows machines out there to make a living writing for windows, one day, that may change, but probably not this year. </p>
http://stackoverflow.com/questions/296297/what-optimizations-today-are-going-to-be-useless-tomorrow/572564#5725640Answer by seanb for What optimizations today are going to be useless tomorrow?seanb2009-02-21T07:00:01Z2009-02-21T07:00:01Z<p>From the perspective of someone who has not used c++ for years, and maybe once every couple years might have to re-learn pointer arithmetic for some unsafe code blocks in c#, things like inlining, malloc/free, are just distant memories, but that does not really mean that optimisation is out the window, there are just different optimisations to think about now. </p>
<p>Whilst premature optimisation is the root of many evils, it is all too common for developers to pull out that chestnut as an excuse for being lazy, it doesn't mean you should just use a bubble sort and let the compiler fix it, or throw more hardware at it until it runs fast enough. On the other hand, bit shifting to do arithmetic is rarely neccessary these days (for what I do anyway, embedded systems maybe). </p>
<p>Would love to not have to think about threading, I hope that comes soon, does my old school head in.</p>
<p>Personally, mainly do web stuff, so most of the optimisations I deal with are to do with bandwidth and network latency, and whilst bandwidth is (slowwwwwly) getting better, it will never be infinite, and the speed of light is not likely to change any time soon. <a href="http://en.wikipedia.org/wiki/Fallacies_of_Distributed_Computing" rel="nofollow">http://en.wikipedia.org/wiki/Fallacies_of_Distributed_Computing</a> </p>
<p>Optimisations have changed a lot in the 20something years I have been tinkering with computers, but will never go away, because we will always be trying to outdo each other. </p>
<p>There will always be someone willing to get down and dirty to dazzle the market. You can use the out of the box inverse square root if you want, but some freak might just write a faster one..... </p>
http://stackoverflow.com/questions/563775/orm-vs-handcoded-data-access-layer/563923#5639231Answer by seanb for ORM vs Handcoded Data Access Layerseanb2009-02-19T04:08:18Z2009-02-19T04:08:18Z<p>I have inherited a web app which was created with NHib and MyGeneration, unfortunately didn't get the svn repo, and no longer have the initial templates (arrggg).</p>
<p>Have kept nhibernate for the Create/Update/Delete back end stuff, but the front end (read only) was somewhat witlessly implemented, and runs like a 2 legged dog, and is now being rewritten in plain old ADO.NET, and goes up to 10 times faster. </p>
<p>Am not saying that this is due to NHibernate, it is due to developers not knowing how much crap they were sending along the wire, and assuming that blindly using a tool would mean they didn't have to think about it.</p>
<p>For the purpose of readonly queries, you can often make them much more efficient writing it by hand. </p>
<p>For things that have to write to the DB, is generally easier, and not that much slower, to let a decent ORM do it. </p>
<p>My personal preference is for SubSonic, which I have found performs pretty well for medium sized projects, and if you find a bottleneck, you can work around it by hand. </p>
<p>Tools are great, and anything that gives me more weekend is doubly great, but there is no substitute for the tool between your ears.</p>
http://stackoverflow.com/questions/563316/is-there-a-generic-way-to-see-what-is-a-website-running-on/563463#5634630Answer by seanb for Is there a generic way to see what is a website running on ?seanb2009-02-19T00:17:10Z2009-02-19T00:17:10Z<p>No failsafe way to do it. </p>
<p>There is a firefox plugin called Server Spy, which will interpret the headers and give you a neat little indicator in the status bar, but if someone has changed the headers, then you are out of luck. </p>
<p>Things like changing the casing of filenames and seeing if you get a 404 can give you a hint as to Apache or IIS, inducing other errors can help here too. </p>
<p>Poking around the source code for a few minutes will often reveal some hints as to the framework, DNN, Drupal, WordPress, all have some telltale signs in the markup, but if the coders have gone out of their way to obfuscate it, then it's really a detective game.</p>
http://stackoverflow.com/questions/563050/what-is-the-quickest-way-from-a-concept-to-a-site/563351#5633511Answer by seanb for What is the quickest way from a concept to a site?seanb2009-02-18T23:33:29Z2009-02-18T23:33:29Z<p>From the perspective of an asp.net developer, and not wanting to incite a holy war, web forms designer in visual studio, not really free. </p>
<p>Use an ORM like SubSonic (or similar) to generate a DAL, you can then use the forms designer to drag and drop your way to a functioning proof of concept pretty quickly, utilising a toolkit which will cover 80% of the tasks that you are likely to encounter. </p>
<p>The resultant markup will probably be very ugly and the site may be a little less performant that what you would want for production, but pplz will be able to click stuff and watch dem blinkenlights. </p>
<p>If the idea floats, you can then tweak and maybe reuse your DAL, and maybe port the site to MVC or something else that makes leaner markup.</p>
<p>Over time, you end up collecting a fair amount of commonly used things, and your prototypes aren't quite so ugly under the hood, so they take less time to turn in to production pieces. </p>
<p>So, that's one perspective, but if you have never used .net, the initial learning curve might make this not so quick.</p>
http://stackoverflow.com/questions/555696/put-javascript-in-one-js-file-or-break-it-out-into-multiple-js-files/555839#5558390Answer by seanb for Put javascript in one .js file or break it out into multiple .js files?seanb2009-02-17T07:47:21Z2009-02-17T07:47:21Z<p>I would pretty much concur with what bigmattyh said, it does depend. </p>
<p>As a general rule, I try to aggregate the script files as much as possible, but if you have some scripts that are only used on a few areas of the site, especially ones that perform large DOM traversals on load, it would make sense to leave those in separate file(s).<br />
e.g. if you only use validation on your contact page, why load it on your home page? </p>
<p>As an aside, you can sometimes sneak these files into interstitial pages, where not much else is going on, so when a user lands on an otherwise quite heavy page that needs it, it should already be cached - use with caution - but can be a handy trick when you have someone benchmarking you.</p>
<p>So, as few script files as possible, within reason. </p>
<p>If you are sending a 100K monolith, but only using 20K of it for 80% of the pages, consider splitting it up.</p>
http://stackoverflow.com/questions/544692/what-is-your-most-irritating-typo-in-programming/544737#5447371Answer by seanb for what is your most irritating typo in programming?seanb2009-02-13T04:30:37Z2009-02-13T04:30:37Z<p>o instead of 0, when my fingers get tired, and don't quite make it to the top row.</p>
http://stackoverflow.com/questions/543760/hide-a-div-rails/543788#5437881Answer by seanb for Hide a DIV [Rails]seanb2009-02-12T22:31:40Z2009-02-12T22:31:40Z<p>Don't really know rails, but can you just output something like style="display:none;" into the div tag?</p>
http://stackoverflow.com/questions/543319/how-to-return-xml-in-asp-net/543707#5437070Answer by seanb for How to return XML in ASP.net?seanb2009-02-12T22:18:33Z2009-02-12T22:18:33Z<p>Seems like at least 10 questions rolled into one here, a couple points. </p>
<p>Response.Clear - it really depends on what else is going on in the app - if you have httpmodules early in the pipeline that might be writing stuff you don't want - then clear it. Test it and find out. Fiddler or Wireshark useful for this.</p>
<p>Content Type to text/xml - yup - good idea - read up on HTTP spec as to why this is important.
IMO anyone doing web work should have read the 1.0 and 1.1 spec at least once. </p>
<p>Encoding - how is your xml encoded - if it is utf-8, then say so, if not, say something else appropriate, just make sure they all match. </p>
<p>Page - personally, would use ashx or httpmodule, if you are using page, and want it a bit faster, get rid of autoeventwireup and bind the event handlers manually. </p>
<p>Would probably be a bit of a waste of memory to dump the xml into a string first, but it depends a lot on the size of the xml as to whether you would ever notice. </p>
<p>As others have suggested, saving the xml to the output stream probably the fastest, I would normally do that, but if you aren't sure, test it, don't rely on what you read on the interweb. Don't just believe anything I say.</p>
<p>For another approach, if the xml doesn't change that much, you could just write it to the disk and serve the file directly, which would likely be quite performant, but like everything in programming, it depends... </p>
http://stackoverflow.com/questions/498698/white-light-vs-black-dark-backgrounds-health-effects/539693#5396930Answer by seanb for White (Light) vs. Black (Dark) Backgrounds: Health Effectsseanb2009-02-12T01:53:30Z2009-02-12T01:53:30Z<p>Personal, non scientific viewpoint, I tend to prefer darker text on a lighter background. </p>
<p>Have found using dark greens quite useful, and tend to use shades of green for window chrome. Quasi scientific reason is that human eyes have more receptors for green, possibly as a result of evolving in an environment with a crapload of green (used to be anyway). Might be total BS, but it kinda works for me. </p>
<p>Was also raised on green screens, so have a nostalgic preference for a green vibe. </p>
<p>2 important things:</p>
<ul>
<li>every now and then, step away from the computer, do something else. </li>
<li>BLINK. Harder to remember at 3am when the #$^%ing stack dump makes no ^#$^%ing sense... do it now, just in case you forget later. </li>
</ul>
<p>I was having a lot of eye problems a few months back, possibly needing minor surgery, had a few weeks (mostly) off over Christmas, and all better now, no surgery needed.</p>
http://stackoverflow.com/questions/518031/getting-project-web-page-names-as-an-enumeration-in-asp-net/518484#5184840Answer by seanb for Getting project web page names as an enumeration in asp.net.seanb2009-02-05T23:35:11Z2009-02-05T23:35:11Z<p>Another option, that I have looked at but not tried out yet (might next week tho'):<br />
<a href="http://blog.devarchive.net/2008/01/auto-generate-strong-typed-navigation.html" rel="nofollow">http://blog.devarchive.net/2008/01/auto-generate-strong-typed-navigation.html</a> </p>
<p>Looks very cool, uses T4 templating to generate a strongly typed navigation hierarchy.</p>
http://stackoverflow.com/questions/514347/how-is-web-programming-different-from-back-end-programming/514624#5146241Answer by seanb for How is web programming different from back-end programming?seanb2009-02-05T04:53:40Z2009-02-05T04:53:40Z<p>One consideration (amongst many) with web programming is that users won't just be stupid (not that they all are, but you always have to factor that in), they will sometimes (assume always) be downright malicious and nasty, and will do everything in their power to destroy your application, your database, your weekends, your sanity... </p>
<p>Be as paranoid as a very small nun at a penguin shoot. Do not trust your users.</p>
http://stackoverflow.com/questions/467591/how-to-get-into-subsonic/467693#4676936Answer by seanb for How to get into SubSonic?seanb2009-01-22T00:51:02Z2009-01-22T00:51:02Z<p>Unfortunately, the best SubSonic "documentation" is in the form of screencasts, but they are very easy to follow. </p>
<p>Quite a lot about SubSonic on Rob Conery's (original creator) blog <a href="http://blog.wekeroad.com/tags/subsonic/" rel="nofollow">http://blog.wekeroad.com/tags/subsonic/</a>. </p>
<p>Personally found the best thing is (like Matt said) to just use it, set it up in external tools in VS, get the connection string and a few other config settings sorted, and you're just about good to go. You can get the basics down in an afternoon. </p>
<p>The forum is quite active <a href="http://forums.subsonicproject.com/forums/" rel="nofollow">http://forums.subsonicproject.com/forums/</a>, and a good place if you get stuck.</p>
http://stackoverflow.com/questions/421945/is-it-possible-to-degrade-from-ie7-to-ie6-for-debugging-purposes/422180#4221802Answer by seanb for Is it possible to degrade from IE7 to IE6 for debugging purposes?seanb2009-01-07T21:32:00Z2009-01-07T21:32:00Z<p>Also check out <a href="http://www.my-debugbar.com/wiki/IETester/HomePage" rel="nofollow">IETester</a>, which gives you 5.5, 6, 7, 8b2 in one app.</p>
http://stackoverflow.com/questions/396817/protection-from-screen-scraping/396839#3968391Answer by seanb for Protection from screen scrapingseanb2008-12-28T23:19:25Z2008-12-28T23:19:25Z<p>Given that most sites want a good search engine ranking, and search engines are scraper bots, there's not much you can do that won't harm your SEO. </p>
<p>You could make an entirely ajax loaded site or flash based site, which would make it harder for bots, or hide everything behind a login, which would make it harder still, but either of these approaches is going to hurt your search rankings and possibly annoy your users, and if someone really wants it, they'll find a way. </p>
<p>The only guaranteed way of having content that can't be scraped is to not publish it on the web. The nature of the web is such that when you put it out there, it's out there.</p>
http://stackoverflow.com/questions/396806/javascript-include-declaration-fails-to-find-file/396812#3968121Answer by seanb for JavaScript include declaration fails to find fileseanb2008-12-28T22:55:15Z2008-12-28T22:55:15Z<p>If you are running this inside of Visual Studio, chances are the link won't work. By default, VS serves up sites as something like <a href="http://localhost:3456/projectname/" rel="nofollow">http://localhost:3456/projectname/</a>... so /_private won't actualy be at the root. </p>
<p>You can change this in the properties on the project/solution, or use some other approaches to rewrite the script path dynamically. </p>
<p>As to the second bit about the form action, is there any chance your js file is in a protected directory? Looks like a login/return path url.</p>
http://stackoverflow.com/questions/1858064/so-my-girlfriend-wants-to-learn-to-program/1858092#1858092Comment by seanb on So my girlfriend wants to learn to programseanb2009-12-07T06:16:31Z2009-12-07T06:16:31Z+42 if I could. Find some other things to talk about socially in the meantime, and let someone else be the bad cop.http://stackoverflow.com/questions/1857418/matching-up-curly-brackets/1857470#1857470Comment by seanb on Matching up Curly Bracketsseanb2009-12-07T02:36:55Z2009-12-07T02:36:55Zyup - personally always leave em in, but didn't want to start a holy war :)http://stackoverflow.com/questions/160971/what-are-your-language-hangups/597556#597556Comment by seanb on What are your language "hangups"?seanb2009-12-02T01:02:43Z2009-12-02T01:02:43ZIt freaks me out, it's C, but it aint grandpa's Chttp://stackoverflow.com/questions/1276000/answer-this-pleaseComment by seanb on ANSWER THIS PLEASEseanb2009-08-14T04:13:46Z2009-08-14T04:13:46ZEvidently, you can write COBOL in any language.http://stackoverflow.com/questions/1236053/why-google-and-twitter-use-table-layout/1236062#1236062Comment by seanb on Why Google and Twitter use table layout?seanb2009-08-07T23:53:18Z2009-08-07T23:53:18Z@Neal - you got +1 from me for being pragmatic. I used to be quick to leap to judgements about other people doing things "wrong", now am more willing to offer my peers the benefit of the doubt, and realise that maybe they had a good reason for doing it that way, amidst the varying imperatives of real world development - things are not always as cut and dried as academic abstracts. The pragmatists at google and twitter probably thought about it very hard, and do it that way because it works best for them right now - not because they are lacking css skills or just being lazy.http://stackoverflow.com/questions/1236053/why-google-and-twitter-use-table-layout/1236062#1236062Comment by seanb on Why Google and Twitter use table layout?seanb2009-08-06T00:00:36Z2009-08-06T00:00:36ZMarkup should be semantic, and agnostic of presentation... but sometimes, tables are appropriate, even for non tabular data. Economics trumps ideology, and much as it would make things simpler, there is no one true way for every single situation. I avoid tables like the plague, they are a PITA, but no kittens will actually die if you do use a table, and sometimes, it just works better.http://stackoverflow.com/questions/973335/does-anyone-else-besides-me-get-distracted-from-programming-studying-by-theirComment by seanb on Does anyone else besides me get distracted from programming / studying by their wife all the time.seanb2009-06-10T03:09:45Z2009-06-10T03:09:45Zlifeoverflow anybody?http://stackoverflow.com/questions/637463/asp-net-mvc-routingComment by seanb on Asp.net MVC Routing seanb2009-03-12T05:29:01Z2009-03-12T05:29:01Z42 - if you don't got a question...http://stackoverflow.com/questions/432849/designing-websites-in-browser-gasp/589049#589049Comment by seanb on Designing Websites In Browser (gasp!)seanb2009-02-26T04:07:48Z2009-02-26T04:07:48Z+1 for citing Mark Boulton, if only there were more designers like thathttp://stackoverflow.com/questions/575513/why-is-c-suddenly-so-popular/575929#575929Comment by seanb on Why is C# suddenly so popular?seanb2009-02-22T23:43:33Z2009-02-22T23:43:33Z"c# has nothing on php or even C"?? - sounds like you've never really used it (properly)http://stackoverflow.com/questions/564756/should-i-just-give-up-on-programmingComment by seanb on Should I just give up on programming?seanb2009-02-21T07:31:07Z2009-02-21T07:31:07ZNo - the fact that you are even thinking about this means that you have a chance of being really good at it. Patience Grasshopper.http://stackoverflow.com/questions/544393/vista-very-slow-copying-of-files/544403#544403Comment by seanb on Vista & very slow copying of filesseanb2009-02-13T01:46:49Z2009-02-13T01:46:49ZFrom my experience and reading, Ed speaks the truth.http://stackoverflow.com/questions/543857/getting-elements-using-javascriptComment by seanb on Getting elements using Javascriptseanb2009-02-12T23:16:40Z2009-02-12T23:16:40ZNearly everything in javascript is simpler using JQueryhttp://stackoverflow.com/questions/543347/is-there-a-way-to-have-windows-xp-sp3-make-the-nature-noises-upon-powering-on-andComment by seanb on Is there a way to have Windows XP sp3 make the nature noises upon powering on and off without changing the theme of the OS?seanb2009-02-12T23:14:33Z2009-02-12T23:14:33ZF1 is your friendhttp://stackoverflow.com/questions/543814/is-it-possible-to-perform-programming-operations-while-using-windows-xp-or-must-iComment by seanb on Is it possible to perform programming operations while using windows XP or must I go to the command promt and take action there?seanb2009-02-12T23:13:24Z2009-02-12T23:13:24ZProgramming without an operating system would be kinda painful.