User - Stack Overflow most recent 30 from stackoverflow.com 2009-12-20T12:46:02Z http://stackoverflow.com/feeds/user/13276 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/534977/javascript-event-handler-for-print 3 Javascript Event Handler for Print kodecraft 2009-02-11T00:44:59Z 2009-10-20T21:46:18Z <p>I am trying to alter style at print-time:</p> <p>Is there an event in javascript that you can listen for for when file>>print is called? What is it? Also - is there a handler for when printing is finished? What is it?</p> <p>or if there is a better way to do this with some other means, such as style sheets, how do you do that?</p> http://stackoverflow.com/questions/76595/soap-or-rest 13 SOAP or REST kodecraft 2008-09-16T20:26:17Z 2009-10-20T15:46:10Z <p>Is REST a better approach to doing Web Services or is SOAP? Or are they different tools for different problems? Or is it a nuanced issue - that is, is one slightly better in certain arenas than another, etc?</p> http://stackoverflow.com/questions/699300/if-you-break-long-code-lines-how-do-you-indent-the-stuff-on-the-next-line/699461#699461 0 Answer by kodecraft for If you break long code lines, how do you indent the stuff on the next line? kodecraft 2009-03-30T23:23:43Z 2009-03-30T23:23:43Z <p>The only reason for formatting code in a particular way is to make it readable. This is inherently subjective - do it in a way that looks good and that you feel would be more readable for someone looking at the code for the first time. And I'm going to buck the conventional wisdom and say, don't worry about any common standard - for two reasons <br><br> 1) it's difficult in this situation, because there are so many different possibilities for broken lines<br><br> 2) it doesn't buy you anything. period. again, code formatting is simply to make your code readable, having a standard way of formatting the particulars of your code does not buy you readability.</p> http://stackoverflow.com/questions/699241/over-optimistic-daily-productivity/699444#699444 1 Answer by kodecraft for Over Optimistic Daily Productivity kodecraft 2009-03-30T23:15:34Z 2009-03-30T23:15:34Z <p>This doesn't exactly answer your question - but it'd be better if you didn't worry about exactly what you got done in a single day - think in terms the particular project(s) you're working on and how far along you got on them. You're right in thinking that it's just that you're a little new to the craft - part of the art of software is getting a good feel for the progress that you are making, regardless any concrete deliverables. I've found that some days I deliver a ton of stuff because it just so happens that I'm able to finish off whatever I happen to be working on - other days I just take the best bite out of the current project that I can - the trick is to choose to feel productive in both cases.</p> http://stackoverflow.com/questions/698324/asp-c-can-i-use-mvc/698594#698594 1 Answer by kodecraft for ASP C# Can I use MVC? kodecraft 2009-03-30T19:02:56Z 2009-03-30T19:02:56Z <p>Start by looking into what the MVC pattern is and what it buys you. To really <em>use</em> the MVC pattern, and not just superficially implement some framework, you will need to get your hands around the concept rather than just reading through the framework's API.</p> <p>Some of the things MVC can buy you (though not exhaustive):<br> - decoupling actual display from flow control and business logic<br> - all the -ity's:<br> modularity<br> readability<br> maintainability<br> testability<br> <br> Though to get all these advantages, you have to understand the MVC concept and apply it correctly, not just arbitrarily include a framework in your project and then expect everything to go right.</p> <p>Here's a good starting point for MVC: <a href="http://en.wikipedia.org/wiki/Model-view-controller" rel="nofollow">http://en.wikipedia.org/wiki/Model-view-controller</a></p> http://stackoverflow.com/questions/616833/if-it-aint-broke-dont-fix-it-or-upgrade-it/617126#617126 0 Answer by kodecraft for If it aint broke dont fix it or upgrade it kodecraft 2009-03-05T23:18:03Z 2009-03-05T23:18:03Z <p>Yes you should fix it. Jeff wrote an awesome post covering this kind of thing (which he refers to as technical debt): <a href="http://www.codinghorror.com/blog/archives/001230.html" rel="nofollow">http://www.codinghorror.com/blog/archives/001230.html</a></p> <p>Leaving this kind of thing untouched is like maintaining debt - and you're already familiar with making the minimum interest payments - in that you have to continue to fix stupid similar bugs.</p> <p>But it doesn't stop at maintenance time - it also, as Mr. Atwood puts it - "becomes a major disincentive to work on a project." Economic times may be hard right now - but that doesn't mean we should be trying to scare away engineering talent.</p> http://stackoverflow.com/questions/613289/iphone-app-using-google-maps/613293#613293 2 Answer by kodecraft for IPhone App using Google Maps? kodecraft 2009-03-05T01:37:15Z 2009-03-05T01:37:15Z <p>Yes you can but you have to pay for their enterprise license. If you do not charge for it or you are just developing it - it is free.</p> <p><a href="http://www.google.com/enterprise/maps/" rel="nofollow">http://www.google.com/enterprise/maps/</a></p> http://stackoverflow.com/questions/613233/is-it-secure-to-store-passwords-in-web-application-source-code/613280#613280 1 Answer by kodecraft for Is It Secure To Store Passwords In Web Application Source Code? kodecraft 2009-03-05T01:31:55Z 2009-03-05T01:31:55Z <p>No. Sometimes it is unavoidable. Better approach is to have an architecture set up where the service will implicitly trust your running code based on another trust. (Such as trusting the machine the code is running on, or trusting the application server that is running the software) </p> <p>If neither of these are available, it would be perfectly acceptable to write your own trust mechanism, though I would keep it completely separate from the application code. Also, would recommend researching ways to keep passwords out of the hands of predators, even when stored on local machine - remembering that you can't protect anything if someone has control of the physical machine it is on.</p> http://stackoverflow.com/questions/603827/java-design-with-singletons-and-generics/603833#603833 1 Answer by kodecraft for Java: Design with Singletons and generics. kodecraft 2009-03-02T20:18:10Z 2009-03-02T20:18:10Z <p>You could make a generic factory that takes any predicate as a type arg - and then generates a single instance for a given predicate type.</p> <p>Another more general approach would be to start using a dependency injection library - and do all of your object creation through it. Typically you can switch a type to be a singleton, if appropriate, with little change.</p> http://stackoverflow.com/questions/587138/should-source-code-be-the-only-software-design-documentation/587206#587206 1 Answer by kodecraft for Should source code be the only software design documentation? kodecraft 2009-02-25T18:25:33Z 2009-02-25T18:25:33Z <p>It depends largely on the type of project that you're working on. But generally if the team is more than a few people - documentation can be helpful to remind <em>everyone</em> of the original intent of the software. Documentation should NOT be written for the sake of documentation - you should make sure that you have a well thought out reason for every single piece of (virtual) paper you produce - otherwise you're wasting time and therefore efficiency.</p> http://stackoverflow.com/questions/558515/what-is-the-best-most-flexible-way-to-have-wcf-output-xhtml 1 What is the best / most flexible way to have WCF output XHTML? kodecraft 2009-02-17T20:12:27Z 2009-02-19T18:30:06Z <p>What is the best / most flexible way to have WCF output XHTML? If there is no "WCF Way" (tm) to do XHTML output - is there any common tooling out there for it? Or do I need to roll my own?</p> http://stackoverflow.com/questions/390944/how-to-do-private-comms-between-private-apps-over-network/559371#559371 1 Answer by kodecraft for How to do private comms between private apps over network? kodecraft 2009-02-18T00:37:32Z 2009-02-18T00:37:32Z <p>Ok - so MQ and that type of thing sound like over-kill. </p> <p>My understanding of your app:</p> <p>Desktop app running on multiple machines on the same network - have their own databases, need to discover each other. </p> <p>Why not:</p> <p>1) UDP broadcast / listen on a regular basis to "find other machines on the same network" - example in Java: <a href="http://java.sun.com/docs/books/tutorial/networking/datagrams/index.html" rel="nofollow">http://java.sun.com/docs/books/tutorial/networking/datagrams/index.html</a></p> <p>2) Use SSL sockets for actual communication after discovery: <br>http://stilius.net/java/java_ssl.php....<br>http://www.exampledepot.com/egs/javax.net.ssl/Client.html</p> http://stackoverflow.com/questions/558521/evolution-or-revolution-to-fix-poorly-written-code/558538#558538 1 Answer by kodecraft for Evolution or Revolution to fix poorly written code. kodecraft 2009-02-17T20:19:03Z 2009-02-17T20:19:03Z <p>Depends on your situation - if you have the time to re-write... and less obviously re-TEST everything.... blow it away and start fresh. But be honest with yourself about what that time is going to look like. </p> <p>Evolution works a lot better typically - because time is money, and starting from scratch can represent a huge investment....</p> <p>Another bit that a lot of people don't get - evolution can actually work VERY well - it just takes more thought... you have to figure out where how to modularize existing things - but typically it's very possible - just extra time at the whiteboard.</p> http://stackoverflow.com/questions/548676/how-useful-difficult-would-it-be-for-me-to-learn-linux-shell-scripting-alternati/548688#548688 1 Answer by kodecraft for How useful/difficult would it be for me to learn linux shell scripting? Alternative recommendations? kodecraft 2009-02-14T07:38:15Z 2009-02-14T07:38:15Z <p>Do what interests you - if Linux and shell scripting turns you on - run with it. Though, these days, there are plenty of avenues to learn to code on Windows or OS X or any other operating system. You can download any of the following for free on multiple platforms....PHP, Ruby, SQL Server, Oracle, Java, C, C# .... and Google (and of course SO) have everything you need in terms of documentation for any problem you run into. <br><br></p> <p>You are absolutely right - the "practical" aspect is really all that matters - and it's quite a bit different than your school work. You are right to be looking to do projects on your own - that's the only way to really get your hands around this stuff. And as you're doing it - make sure that you actually like doing it - not just the idea of doing it... because it tends to take a lot of patience....</p> http://stackoverflow.com/questions/514083/why-is-good-ui-design-so-hard-for-some-developers/544319#544319 0 Answer by kodecraft for Why is good UI design so hard for some Developers? kodecraft 2009-02-13T01:10:31Z 2009-02-13T01:10:31Z <p>UI design is a completely different skill. It is one closely related to visual art - being able to appreciate and create visual symmetry and beauty. And for WHATEVER reason, typically coders are NOT good with visual arts. I know there are exceptions - but as a general rule - it holds.</p> <p>So really (unless you are the exception to this odd rule) - it should be dealt with like any other area where you are not naturally talented. You should evaluate if you can get along well enough with the chops ya' got - or maybe even spend a little energy improving, when you have a chance. However, you'd be better served developing the areas where you have ability and maybe seeking to work with people that are strong in the area where you do not..</p> <p>A good book covering this idea is: Now, Discover Your Strengths by Marcus Buckingham ... it's an easy read.</p> http://stackoverflow.com/questions/534977/javascript-event-handler-for-print/542466#542466 2 Answer by kodecraft for Javascript Event Handler for Print kodecraft 2009-02-12T17:35:30Z 2009-02-12T17:35:30Z <p>We also found that you can do a print-only style with the following:</p> <pre><code>&lt;style type="text/css"&gt; @media print { div { overflow:visible; } } &lt;/style&gt; </code></pre> http://stackoverflow.com/questions/537986/advantages-of-cil-knowledge-in-net/538025#538025 2 Answer by kodecraft for Advantages of CIL knowledge in .NET kodecraft 2009-02-11T18:04:59Z 2009-02-11T18:04:59Z <p>You don't have to know assembly to learn it - it is completely separate from native assembly. Although at runtime, the CLR will basically turn it in to native assembly.</p> <p>A couple possible advantages:<br><br> 1) you can look at the CIL that is output by the compiler and see specifically what your code is doing<br><br> 2) to solve certain kinds of problems, you may at some point want to dynamically generate code....for example, since Microsoft's policy injector framework is not quite up to snuff yet and we had need of that type of behavior we wrote some low-level, framework type plumbing..</p> http://stackoverflow.com/questions/437378/why-do-you-pick-a-particular-language-platform 1 Why do you pick a particular language/platform? kodecraft 2009-01-12T23:05:05Z 2009-01-13T10:50:57Z <p>So I know that developers don't always get to pick the languages and platforms that they're working in - but in a sense they do, cause they can always ask, pursue, or leave a job... so with that in mind: why do you end up settling on particular a particular language or platform - what different factors play in to the ultimate decision. Please do not stop at "the right tool for the right job" or a similar phrase - please illustrate with real life examples.</p> http://stackoverflow.com/questions/437618/how-do-i-track-down-where-ive-been-leaking-idisposable-objects-from/437623#437623 4 Answer by kodecraft for How do I track down where I've been leaking IDisposable objects from? kodecraft 2009-01-13T00:50:47Z 2009-01-13T01:26:35Z <p>IDisposable is more for making use of the using keyword. It's not there to force you to call Dispose() - it's there to enable you to call it in a slick, non-obtrusive way:</p> <pre><code>class A : IDisposable {} /// stuff using(var a = new A()) { a.method1(); } </code></pre> <p>after you leave the using block, Dispose() is called for you.</p> http://stackoverflow.com/questions/436212/taking-over-a-project-what-should-i-ask-the-previous-programmer/436254#436254 1 Answer by kodecraft for Taking over a project - What should I ask the previous programmer? kodecraft 2009-01-12T17:36:09Z 2009-01-12T17:36:09Z <p>Don't ask. Lock him in a room - instruct him that he will not get food or water until he starts from the beginning and tells you everything he knows about the system. Then ask relevant questions as they come up. After this - spend a couple of days looking at the code. Then repeat the process. Do this until you feel comfortable with the system.</p> http://stackoverflow.com/questions/415420/what-skills-would-you-expect-from-a-good-programmer-who-has-5-yrs-of-experience/415594#415594 0 Answer by kodecraft for What skills would you expect from a good programmer who has 5 yrs of experience? kodecraft 2009-01-06T05:54:24Z 2009-01-06T05:54:24Z <p>You can't expect anything. Time logged at a terminal is about as meaningless as a four year college degree in computer science when it comes to actually having design/coding chops. So it's really a fundamental error to assume that you can get any useful information at looking at the time someone's been "writing enterprise applications on microsoft technology".</p> <p>Now if they've filled that time solving tough problems in creative and appropriate ways with initiative, that's one thing - and you can likely expect more of the same. If they've filled the time trying to maximize Fogbugz issues closed per unit time by grabbing all the "change the color of the font from blue to red" tickets, that's a totally different thing - and you can likely expect more of the same.</p> http://stackoverflow.com/questions/414779/what-should-a-self-taught-programmer-with-no-degree-learn-read/414947#414947 3 Answer by kodecraft for What should a self-taught programmer with no degree learn/read? kodecraft 2009-01-05T23:44:01Z 2009-01-05T23:44:01Z <p>I've been programming professionally for almost 10 years - and I will be graduating this year. The coursework I did was largely useless. Hands on experience and finding one or more great mentors will serve you far better in terms of becoming an excellent engineer.</p> <p>The good thing about finishing a degree is that a) it is a nice resume bullet that HR types like to look at b) it teaches you some jargon that is useful for communicating ideas to other developers for example: Normalization is word that we throw around in the real world - there's a text book definition that's nice to have in the back of your head, but in practice it typically just means adjusting database tables so that your data meets your needs in terms of performance and scalability. c) helps you to learn to communicate better ... which is a useful skill that will set you apart from a lot of software people.</p> <p>Things I recommend reading: 1) operating system design 2) data structures and algorithms 3) database theory and....if you are standed on a desert island with nothing but a laptop, unlimited power and a single coding book of your choosing... without a doubt choose:</p> <p>"Elements of Reusable Object-Oriented Software" -- Gang of Four</p> http://stackoverflow.com/questions/403825/does-it-make-sense-to-use-a-framework-for-a-simple-java-web-app/404079#404079 2 Answer by kodecraft for Does it make sense to use a framework for a simple java web app? kodecraft 2008-12-31T21:36:03Z 2008-12-31T21:36:03Z <p>There are two kinds of applications:</p> <p>1) the kind that you throw away and never use again, and therefore should not worry about modularity, maintainability and clarity.</p> <p>2) the real kind.</p> <p>It may sometimes seem that your app may never have to grow, scale, or service a larger feature set / user base than you currently are planning for....I assure you, that perception is always wrong. </p> <p>Frameworks, specifically things like Struts for MVC in Java, Spring for MVC and Dependency Injection, Hibernate for Object-Relational Modeling are all extremely valuable tools that lead to modularity, maintainability and clarity in your code. So, to answer your original question.... Yes, emphatically.</p> http://stackoverflow.com/questions/140270/humor-in-code/140389#140389 1 Answer by kodecraft for Humor in code kodecraft 2008-09-26T15:57:18Z 2008-09-26T15:57:18Z <p>So this isn't directly answering the question - but definitely is good not to take yourself to seriously when you're programming - have a good time and don't worry - that proverbial next programmer will be smart enough to figrure out what's going on regardless your oddball sense of humor.</p> <p>Had a senior project I was working on for my under-grad degree - we had a "project manager" who also participated in some of the coding. I was almost in tears when he took personallly a comment I made about "the stupid database" or something like that - he thought I needed counseling or something (not that I don't)... but again, let's not take ourselves to seriously, cause no one else does.. :) </p> http://stackoverflow.com/questions/102714/what-was-your-first-home-computer/103304#103304 35 Answer by kodecraft for What was your first home computer? kodecraft 2008-09-19T16:07:59Z 2008-09-19T16:07:59Z <p>Atari 800 XL!! --yeah, I'm getting sentimental too... sad... :)</p> <p><img src="http://www.computercloset.org/Atari_800XL_and_Peripherals.jpg" alt="alt text" /></p> http://stackoverflow.com/questions/102310/pet-projects-should-we-each-have-one/102429#102429 3 Answer by kodecraft for "Pet Projects" - Should We Each Have One? kodecraft 2008-09-19T14:46:51Z 2008-09-19T14:46:51Z <p>Absolutely - we should have as many as our schedule allows - Programming is a craft that you should be doing because you love it - not just because someone happens to be paying you for it. That being said, in my life, I tend to try to arrange to be paid for my pet projects...so... maybe that totally obliterates my credibility... but I definitely think if you're coding just because you happen to get paid for it - you're wrong.</p> http://stackoverflow.com/questions/102278/active-flag-or-not/102386#102386 0 Answer by kodecraft for `active' flag or not? kodecraft 2008-09-19T14:42:35Z 2008-09-19T14:42:35Z <p>No - this is a pretty common thing - couple of variations depending on specific requirements (but you already covered them):</p> <p>1) If you expect to have a whole BUNCH of data - like multiple terabytes or more - not a bad idea to archive deleted records immediately - though you might use a combination approach of marking as deleted then copying to archive tables.</p> <p>2) Of course the option to hard delete a record still exists - though us developers tend to be data pack-rats - I suggest that you should look at the business process and decide if there is now any need to even keep the data - if there is - do so... if there isn't - you should probably feel free just to throw the stuff away.....again, according to the specific business scenario.</p> http://stackoverflow.com/questions/93958/what-conferences-do-you-attend/93985#93985 1 Answer by kodecraft for What conferences do you attend? kodecraft 2008-09-18T16:08:24Z 2008-09-18T16:08:24Z <p>Been to JavaOne - it's fabulous - lots of good information - and fairly entertaining. :) Just make sure you have your propaganda filters firmly in place - they do like to spin things in whatever direction Sun happens to be going at the time - though that's common across most conferences (the spin that is).</p> http://stackoverflow.com/questions/93846/how-can-i-allow-others-to-create-java-net-ruby-php-perl-web-user-interface-c/93948#93948 1 Answer by kodecraft for How can I allow others to create Java, .NET, Ruby, PHP, Perl web user interface components that interact with each other? kodecraft 2008-09-18T16:05:40Z 2008-09-18T16:05:40Z <p>Use web services to wrap common code / libraries that you want to share across the interfaces. All the listed platforms have decent support for webservices.</p> http://stackoverflow.com/questions/92159/how-do-you-vent-stress-as-a-programmer/93289#93289 1 Answer by kodecraft for How do you vent stress as a programmer? kodecraft 2008-09-18T14:54:06Z 2008-09-18T14:54:06Z <p>It's important to know your limits and choose to step away from the code. Ignore the macho attitude prevalant in our industry that says you are a better person if you work ridiculous long hours. Basically, choose to not think about your programming on a regular basis - I remember when I first started I would get so obsessed with whatever I was working on that it seemed almost impossible to let go - it takes practice to do so, and it's worth it.</p> <p>Also - as has been mentioned - exercise helps on two fronts: 1) helps you not to stress out as easily in the first place and 2) blows off stress if you are already there. </p> <p>And finally - I do music - which seems to give the programming part of my brain some time off (unless I'm writing music - yeah, weird, I know) - but having some activity, maybe reading or fishing or whatever that occupies your thoughts but doesn't exercise that hyper-creative, problem-solving piece of your brain that gets over heated after too much programming is very VERY valuable.</p> http://stackoverflow.com/questions/698324/asp-c-can-i-use-mvc/698341#698341 Comment by on ASP C# Can I use MVC? 2009-03-30T19:10:10Z 2009-03-30T19:10:10Z His question seems to call for a code answer about how to specifically implement something - but I think the underlying issue is more generally related to what MVC is and what it can do. http://stackoverflow.com/questions/9122/select-all-columns-except-one-in-mysql/9156#9156 Comment by on Select all columns except one in MySQL? 2009-02-22T03:12:19Z 2009-02-22T03:12:19Z why is that &quot;good practice&quot;? http://stackoverflow.com/questions/78626/is-it-stupid-to-write-a-large-batch-processing-program-entirely-in-pl-sql/91953#91953 Comment by on Is it stupid to write a large batch processing program entirely in PL/SQL? 2009-02-19T00:04:56Z 2009-02-19T00:04:56Z regarding #2 - agree in principle, however some languages make it far easier to write sloppy, nasty, unmaintainable code... pl-sql is one of them... although the award probably goes to javascript. http://stackoverflow.com/questions/558515/what-is-the-best-most-flexible-way-to-have-wcf-output-xhtml/558977#558977 Comment by on What is the best / most flexible way to have WCF output XHTML? 2009-02-17T22:53:34Z 2009-02-17T22:53:34Z Yeah - I guess maybe a bad assumption on my part that there would be a way to do this. The assumption was based on the fact that there is a clear way to emit xml and json. Seemed like XHTML would be a natural alternative. Thanks for the add'l info tho. http://stackoverflow.com/questions/558515/what-is-the-best-most-flexible-way-to-have-wcf-output-xhtml Comment by on What is the best / most flexible way to have WCF output XHTML? 2009-02-17T21:14:34Z 2009-02-17T21:14:34Z how so? Would you like an explanation of what I'm trying to accomplish? Are you aware of what XHTML is? WCF? http://stackoverflow.com/questions/558515/what-is-the-best-most-flexible-way-to-have-wcf-output-xhtml Comment by on What is the best / most flexible way to have WCF output XHTML? 2009-02-17T20:42:53Z 2009-02-17T20:42:53Z i was under the impression there was some &quot;wcf way&quot; to do it ... if not - that's fine too... will edit that into the question... :) http://stackoverflow.com/questions/502492/i-was-recently-asked-for-my-stackoverflow-rep-score-in-a-job-interview-is-that-a Comment by on I was recently asked for my stackoverflow rep score in a job interview. Is that appropriate? 2009-02-02T15:44:20Z 2009-02-02T15:44:20Z did you ask them what their score was? a good follow up question - is there even such a thing as an unfair interview question...the whole point of an interview is so both parties get to know each other better.... http://stackoverflow.com/questions/437378/why-do-you-pick-a-particular-language-platform/437440#437440 Comment by on Why do you pick a particular language/platform? 2009-01-13T00:00:46Z 2009-01-13T00:00:46Z so - any clear winner based on your priorities - between .NET and Java? I recently transitioned from mostly Java to mostly .NET work - and I'm wondering what others might think about how the two heavy weights stack up... http://stackoverflow.com/questions/437378/why-do-you-pick-a-particular-language-platform Comment by on Why do you pick a particular language/platform? 2009-01-12T23:58:29Z 2009-01-12T23:58:29Z actually - I always hear the platitude &quot;right tool for the right job&quot; - which I think is bologna - was interested if anyone had any well thought out reasoning about their platform(s) of choice or if they just go with their comfort zone... http://stackoverflow.com/questions/433726/what-defines-a-software-architect-and-can-i-put-it-on-my-cv/433757#433757 Comment by on What defines a 'software architect' and can I put it on my CV? 2009-01-11T23:18:50Z 2009-01-11T23:18:50Z honestly - i think Microsoft is where the curiosity around this term comes from - or at least they are responsible the hype surrounding as of late... look at the wording in this quote alone--basically, &quot;if you are an architect you are cooler than everyone else&quot;.... http://stackoverflow.com/questions/418160/benefits-of-programming-doing-versus-reading-blogs-thinking/418175#418175 Comment by on Benefits of programming (doing) versus reading blogs (thinking?) 2009-01-06T21:12:49Z 2009-01-06T21:12:49Z Yep...exactly the right amount. http://stackoverflow.com/questions/407061/is-staying-employed-as-a-programmer-completely-luck/407099#407099 Comment by on Is staying employed as a programmer completely luck? 2009-01-03T05:15:49Z 2009-01-03T05:15:49Z regarding #2 - as someone who interviews and hires developers ... I am NEVER skeptical of something someone learns on their own time - in fact, I would say that it's better that way ... but one way or another - as long as they can prove their chops, it doesn't matter WHERE they learned it. http://stackoverflow.com/questions/407061/is-staying-employed-as-a-programmer-completely-luck/407078#407078 Comment by on Is staying employed as a programmer completely luck? 2009-01-03T05:13:41Z 2009-01-03T05:13:41Z I would vote this one up - except that edit is ridiculous pessimistic supposition just like the original question. The first part of this response is all that needs to be said. http://stackoverflow.com/questions/403803/how-to-justify-the-cost-of-attending-development-conference/403876#403876 Comment by on How to justify the cost of attending development conference? 2008-12-31T21:54:37Z 2008-12-31T21:54:37Z yeah - i tried to up vote twice too... :) http://stackoverflow.com/questions/102714/what-was-your-first-home-computer/103304#103304 Comment by on What was your first home computer? 2008-09-29T16:58:39Z 2008-09-29T16:58:39Z my parents got me the disk drive - I remember obsessing over the D.O.S. manual.... thinking about all the programming possibilities now that I didn't have to preset the location on the tape drive to load the program that I wanted........