User JB King - Stack Overflowmost recent 30 from stackoverflow.com2009-12-02T14:18:24Zhttp://stackoverflow.com/feeds/user/8745http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1815001/how-would-you-design-a-calendar-app-similar-to-outlook-interview-question/1828725#18287251Answer by JB King for How would you design a Calendar app similar to outlook (Interview Question)JB King2009-12-01T20:33:04Z2009-12-01T20:33:04Z<p>At first glance, there would be an Appointment class that would consist of a date, time, title and description. Would there be the need for recurring appointments? Would there be reminders? There are lots of questions in terms of digging out the requirements here that would lead to a few discussion points.</p>
<p>Another point here is that this would be similar to <a href="http://chandlerproject.org/" rel="nofollow">Chandler</a>, so I would consider looking at their code for some more ideas of what would be needed.</p>
http://stackoverflow.com/questions/329322/programmers-income-potential/1828659#18286590Answer by JB King for Programmers: income potential..JB King2009-12-01T20:25:32Z2009-12-01T20:25:32Z<p>No, I don't feel trapped, but then I see the variety in my work and enjoy some of the dimensions to it that I can define because of the maturity where I work.</p>
<p>You could go back to school and get into something else. Not necessarily a trade, but you could go study accounting at a local college and go be an accounting clerk if you want another option. I think you may want to consider what you'd want to do in a job rather than what you have been doing.</p>
<p>The Calgary .Net User Group had a talk a little while back about people setting up their own micro ISVs that there is some discussion on the forums on their site if you want to get into this a bit more.</p>
<p>What you really need to find is your drive, your animal spirit or whatever you want to call that motivating force that exists within all of us. What would motivate you to make a piece of software or fix someone's bug? If it is solely money then you really are in the wrong career, IMO.</p>
<p>I know this was asked a year ago but mayve someone is just looking at it now.</p>
http://stackoverflow.com/questions/1671970/keeping-skills-up-to-date-is-more-important-to-programmers-than-any-other-job/1827742#18277420Answer by JB King for Keeping skills up to date is more important to programmers than any other job?JB King2009-12-01T17:38:04Z2009-12-01T17:38:04Z<p>In terms of the initial part of the question, I think there are other factors that may be more important. If the company is losing money and doesn't have secure funding, layoffs may be more common than other companies. Even companies in fine shape financially can still have layoffs, look at Google and Microsoft for examples here. Keeping one's skills up to date can be good or bad to my mind. For example, if someone knew ASP.Net MVC but not Webforms this could cause them problems in some places. My point is that sometimes older technologies can be the ones that help someone get a job. There is still classic ASP used where I work on some sites that even new developers may have to go through and handle, yet this is hardly cutting edge stuff.</p>
<p>Just to echo the sentiment in other replies, every field has changes to note and things to learn. For example, do accountants have to know various financial software packages now, e.g. Quickbooks? Don't dentists have to keep an eye on new procedures or equipment that they may use for handling people's teeth,e.g. how many people have wooden teeth these days? The regional sales manager may have to use CRM packages to enter orders or track customer behavior. Just because at first glance a job may look like it doesn't involve technology, a little digging may reveal otherwise.</p>
http://stackoverflow.com/questions/1827172/are-frameworks-too-vulnerable-to-exploits/1827431#18274311Answer by JB King for Are frameworks too vulnerable to exploits?JB King2009-12-01T16:45:32Z2009-12-01T17:25:43Z<ol>
<li>Yes, given that there aren't that many people that would write their own web server code from scratch. IIS and Apache are a couple of very common used server software suites that while they aren't perfect, they do work fine in many situations.</li>
<li>I'd like to meet someone that doesn't use any frameworks for anything and yet builds many websites.</li>
<li>The responsbility of making sure that the patches for the framework are installed and kept up to date usually falls outside of the responsibility of developers in some companies, mine included. While some updates may break code, this is why there are backups that can be used to roll things back to a stable time. [edit start] Operations is the name of the group where I work currently that look after production servers and keeping them up to date. In other places there were systems groups that handled the same duty as this can be similar to patching the operating system in terms of patches to things like the .Net framework. While some frameworks like jQuery may be something that the developers would update, there would also be some analysis done to determine why the upgrade should be done, as sometimes changing merely for the sake of changing can often backfire. [edit end]</li>
</ol>
<p>Frameworks were built to make things easier, which they do in various ways. There are problems with frameworks but this is true of all frameworks, no? People's imaginations at finding ways to exploit frameworks has been going on since the first frameworks were built, IMO.</p>
<p>I'd think the success of the LAMP stack which includes some open source components, may be a good example of how open source can be a good thing.</p>
http://stackoverflow.com/questions/94579/how-to-find-a-mentor/1827647#18276470Answer by JB King for How to find a mentor?JB King2009-12-01T17:21:48Z2009-12-01T17:21:48Z<p>I'd suggest stepping back and thinking carefully about what specifically would you want from that mentor. Programming is a rather vast field, so refine that a bit and see if you can find a blog or two that focuses on a specific method or technology that interests you. If you can find a good blog and develop a relationship with the author, that is another way to find a mentor.</p>
http://stackoverflow.com/questions/25063/how-to-mentor-a-junior-programmer/1827594#18275940Answer by JB King for How to mentor a junior programmerJB King2009-12-01T17:11:07Z2009-12-01T17:11:07Z<p>Here would be my short list:</p>
<p>Pair programming - This is helpful for many things, like reinforcing various ideas and practices. Getting used to Resharper is much easier when you pair with someone that uses it often.</p>
<p>Informal chats - This is where we would go get a drink, go outside for someone to have a smoke break, go for lunch together, etc. While away from the desks, the discussion may be related to work immediately being done or it may be abstract philosophical stuff that can help bring someone's game up a notch or two. Talking about various upcoming technologies or changes in what coming can be exciting and help form bonds as well.</p>
<p>Feedback and suggestions - This is what occured in both above cases. Books like "How to Win Friends and Influence People" by Dale Carnegie can help in understanding various human relationship dynamics, which while that sounds quite technical is really just about how to motivate someone else in various ways. A key point here is to know how to leave a trail of breadcrumbs to pick up some practices, like giving hint after hint about something rather than just give the answer. I have had various Math teachers that had a gift for this for how I developed some of this skill.</p>
<p>So part of this is merely motivating the other person and trying to guide them as when someone figures something out for themself it can be an empowering and enlightening experience. The, "I did it! That's right, moi, yours truly!" kind of self-talk is quite nice when it happens.</p>
http://stackoverflow.com/questions/1802206/advice-on-starting-to-mentor-coworkers/1827517#18275171Answer by JB King for Advice on starting to mentor coworkersJB King2009-12-01T16:56:57Z2009-12-01T16:56:57Z<p>There are at least a few different ways to approach this, to my mind:</p>
<p>Individual vs. group - Would everyone that wanted help all gather for breakfast or lunch to discuss various ideas and theories?</p>
<p>Start small - Don't try to put everything out there. Give bite-size chunks of information and be prepared for follow-up questions about how it went, what was good, what wasn't so good, and all that kind of feedback. I'd probably suggest having a line a week to try to grasp like, "release early, release often," or "fail fast," or principals like KISS and DRY that are various phrases associated with Agile.</p>
<p>Be prepared for some of this to take time and possibly many attempts with different approaches as part of this is changing someone's mindset, philosophy and style that don't change overnight well. You may want to confirm some things like terminology as Agile to one person may not be Agile to someone else.</p>
http://stackoverflow.com/questions/1820815/how-to-help-to-an-underperforming-newbie-do-a-better-job/1821219#18212193Answer by JB King for How to help to an underperforming newbie do a better job?JB King2009-11-30T17:33:03Z2009-11-30T17:33:03Z<p>My suggestion is to ask him how he thinks he is doing. If he thinks he is doing awesome and is the greatest thing in the universe, then you may have a bigger problem. On the other hand, though if he thinks he is just getting by, then it may not be so bad to try to show him some of the ropes. I'd suggest giving him smaller tasks and reviewing parts of what he writes so that he isn't so off track that it is a wonder he ever got to that point.</p>
<p>Another part to this is the question of what kind of relationship is there between you and the new guy? Are you his boss, a co-worker, or something else? I suspect if you have a talk with him about a few things, it may help straighten things out. I remember on my first job having to have a little hand holding to get through an initial trial by fire assignment. If you can, try to have a couple of times a day where there is a sort of check-in in terms of where he is and what he is doing.</p>
http://stackoverflow.com/questions/1811842/switching-jobs-how-to-learn-new-technologies-and-get-to-work-in-them/1820381#18203810Answer by JB King for Switching jobs - How to learn new technologies and get to work in themJB King2009-11-30T15:09:14Z2009-11-30T15:09:14Z<p>My suggestion would be to see if there are tasks you do that can be automated by making an application. This gives some practice in building something that could be done in a different paradigm, whether that be through a web-based interface, windows, or console is up to you. I remember getting back into AJAX stuff 4 years ago now by researching it and seeing how easy it was to integrate into the application of my then employer.</p>
http://stackoverflow.com/questions/1810038/if-you-cant-do-a-support-role-does-this-mean-you-should-not-be-in-development/1810975#18109750Answer by JB King for If you can't do a Support Role, does this mean you should not be in development?JB King2009-11-27T23:21:46Z2009-11-27T23:21:46Z<p>I believe the simple answer here is, "It depends." On the one hand, in small companies, a developer may have a handful of different roles to play as they are the sysadmin, network admin, programmer, tester, database admin, and support all rolled into one. Meanwhile, at other companies, developers may do very little bug fixing so in this case they are separate but I would note that a lot of developers do fix some bugs, IMO.</p>
<p>Where I work they are trying to separate development and support roles. How successful this will be is highly questionable, obviously, but at least we are going to try and see if it can work.</p>
http://stackoverflow.com/questions/1801770/how-do-i-find-the-drive-to-learn/1810951#18109510Answer by JB King for How do I find the drive to learn?JB King2009-11-27T23:13:38Z2009-11-27T23:13:38Z<p>My suggestion is to see if there is some part of the SDLC that appeals to you, in a generic sense:</p>
<ol>
<li><p>Requirements gathering - Translating what someone wants into technical specifications from a non-technical conversation.</p></li>
<li><p>Solution design & analysis - Looking at different ways to solve a problem and what is good or bad about various approaches.</p></li>
<li><p>Implementing a solution - Typing out the actual code rather than have a pseudocode idea.</p></li>
<li><p>Testing a solution - Did we do what was asked? Are there new questions to handle for this?</p></li>
<li><p>Support and maintain the solution - Fixing bugs, scaling the solution if needed, other things that come after an initial implementation is done.</p></li>
</ol>
<p>I know that I like #2 which is finding how something is done, what trick is there to doing something well, or in some cases just doing the grunty work that happens at times. I'm not sure you like any of these, which is why I'd echo the other answers that question if programming is for you. There are other technical positions like being a systems administrator that may be worth considering. "<a href="http://www.jobhuntersbible.com/" rel="nofollow">What Color is Your Parachute</a>" would be a book recommendation for you to find what kind of work do you like to do and then combine that with where your strengths are to find yourself a great job.</p>
http://stackoverflow.com/questions/1787197/big-o-notation-interview-questions/1810919#18109190Answer by JB King for Big O Notation Interview QuestionsJB King2009-11-27T23:00:21Z2009-11-27T23:00:21Z<p>Usually on some form of collection class,e.g. priority queue, stack, binary tree, the usual insertion, find, and deletion operations are what I remember getting asked.</p>
<p>I didn't find them to be good questions but then I'm not sure what the point was to some extent. The interviewed understood the concept, yes.</p>
http://stackoverflow.com/questions/1794829/what-one-needs-to-know-as-a-web-developer/1810507#18105070Answer by JB King for What one needs to know as a web developer?JB King2009-11-27T20:17:47Z2009-11-27T20:17:47Z<p>I wouldn't forcibly put this in but graphics may be something that some people like to use for some web work, more so in terms of design using tools like Photoshop.</p>
http://stackoverflow.com/questions/1804988/agile-qa-dev-team-building-excercise/1805489#18054890Answer by JB King for Agile QA/Dev team building excerciseJB King2009-11-26T20:19:51Z2009-11-26T20:19:51Z<p>Do the developers use any TDD practices? If there is a big difference in the quality of tests from each, then bringing in some TDD may help some.</p>
<p>We've done a mini-Olympics at a bar near work as a team building exercise that has mediocre success. Trying to bring in more socialization than what there is naturally can be a recipe for disaster, which seems to be a commmon theme.</p>
<p>Having QA and Dev take lunch together can help in some areas as long as it isn't forced. Having to do things out of obligation rather than desire can set things up for failure.</p>
http://stackoverflow.com/questions/1804311/how-to-check-if-an-integer-is-power-of-3/1804337#18043379Answer by JB King for How to check if an integer is power of 3?JB King2009-11-26T15:31:22Z2009-11-26T15:31:22Z<p>Recursively divide by 3, check that the remainder is zero and re-apply to the quotient.</p>
<p>Note that 1 is a valid answer as 3 to the zero power is 1 is an edge case to beware.</p>
http://stackoverflow.com/questions/1044590/most-professional-way-to-tell-a-developer-they-are-no-good/1804320#18043200Answer by JB King for most professional way to tell a developer they are no goodJB King2009-11-26T15:27:56Z2009-11-26T15:27:56Z<p>Behaviors, results or both: Which are you saying isn't good? By behaviors I mean the way the developer designs, writes, and tests their code. Is the method wonky or just the final result? Be specific on what is wrong, why it is wrong and see if there is concensus on this. It may be that you don't know so-and-so has a reason for being that way which may be important. I'm not discounting that the pain of collaborating with this person, just that while you think it may be easy to make a few changes, those may be huge changes for the other person if they have any number of conditions.</p>
<p>The point in the above is that to some extent you may not understand the problem or the entire context. If someone has 40 requests in the course of a day, this could make someone less than stellarly productive. By request I mean someone asking, "Hey, could you get this for me?" being asking a handful of times each hour and the person working 8 hours in a day.</p>
http://stackoverflow.com/questions/1798780/using-a-take-home-coding-component-in-interview-process/1798870#17988700Answer by JB King for Using a "take-home" coding component in interview processJB King2009-11-25T18:09:00Z2009-11-25T18:09:00Z<p>There are a few minor gotchas to this in my mind:</p>
<ol>
<li><p>Solitary work - If in your workplace it is common for developers to work alone and not help each other than this can work alright. Generally, I like to ask co-workers for help and bounce ideas off them, so the idea of sending a take-home project can backfire that way.</p></li>
<li><p>Initial setup - Are you giving buggy code that has to be fixed? Code where enhancements are needed? There is the question of what initial work has been done and whether or not going down that rabbit hole will be OK or not.</p></li>
<li><p>Opening up - What kind of access would they get? I'm thinking of potential security issues here.</p></li>
</ol>
<p>I don't think I'd see anything wrong with giving some code and asking for minor changes that shouldn't require consultation or clarification but beware this pitfall that may popup. While I have had this and it hasn't gone well, I'd rather it be done in 2 parts, one where I get the task and code and another where there is a follow-up. Just as a suggestion.</p>
http://stackoverflow.com/questions/1798552/staying-relevant-as-a-programmer/1798776#17987762Answer by JB King for Staying Relevant As a ProgrammerJB King2009-11-25T17:55:30Z2009-11-25T17:55:30Z<ol>
<li><p>I'd define my job as problem solver. That means I investigate something first to see what has to be done, determining what changes have to be made which is usually a mix of code and database changes in my current project but could include installing other software, configuring software, testing software, or changing software. At times there isn't much that I do that is straight coding unless there is some big task before me where I want to automate its completion.</p></li>
<li><p>I'm not sure I get how "one-hit" applies here. I have a set of skills that I believe makes me generally employable in my area. That set is a mix of technical and non-technical skills and performing well in my job is another part I do to remain on good terms where I am.</p></li>
<li><p>For me there are a few ways generally. Here's the series of questions to ask to discover one's passion:</p>
<ul>
<li><p>As you talk about something, do you get more excited, energetic and enthusiastic? If your speech patterns change from Ben Stein, the economics teacher from "Ferris Bueller's Day Off," to Steve Irwin, the Crocodile Hunter, that's a topic of your passion.</p></li>
<li><p>Are there things that as you do them, you feel better? By better I mean that life is worth living, that you are important, you are doing something meaningful, that kind of thing.</p></li>
</ul></li>
</ol>
<p><a href="http://www.oprah.com/article/money/career/pkgstrongestlife/20091005-orig-marcus-buckingham-excerpt" rel="nofollow">Chapter 5 of Marcus Buckingham's Find Your Strongest Life</a> may also have ideas that can help in finding your strengths. <a href="http://www.jobhuntersbible.com/" rel="nofollow">What Color Is Your Parachute</a> would be another book suggestion if you want one.</p>
<p>Just as a couple of examples of passions of mine: </p>
<ul>
<li><p>Solving puzzles or problems is definitely something I enjoy intensely. Enjoying mystery shows like "Matlock," "CSI," "Murder, She Wrote," "Agatha Christie's Poirot," "Miss Marple," "House," and similar shows is how I found this about myself.</p></li>
<li><p>Getting thanks from someone for helping them also has that intensity for me. There is a wave of tingling sensations or a big Cheshire cat grin that tend to be signs that I'm happy.</p></li>
</ul>
<p><a href="http://sourcesofinsight.com/" rel="nofollow">Sources of Insight</a> and <a href="http://upgradereality.com/" rel="nofollow">Upgrade Reality</a> would be a couple of other resource suggestions though they aren't just about programming.</p>
http://stackoverflow.com/questions/1797810/a-phrase-as-catchy-as-feature-creep-but-for-underestimated-projects/1798423#17984230Answer by JB King for A phrase as catchy as 'Feature Creep' but for underestimated projectsJB King2009-11-25T17:09:01Z2009-11-25T17:09:01Z<p><a href="http://itknowledgeexchange.techtarget.com/overheard/agile-development-glossary/" rel="nofollow">Spike</a> may be useful in trying to get these under control but it isn't quite what you want.</p>
http://stackoverflow.com/questions/1797474/software-life-cycle-models-for-web-development/1797559#17975590Answer by JB King for Software life-cycle models for web developmentJB King2009-11-25T15:10:32Z2009-11-25T17:05:47Z<p><a href="http://en.wikipedia.org/wiki/Scrum%5F%28development%29" rel="nofollow">Scrum</a>, which is an Agile practice, would be a suggestion for trying to rein in some of the chaos. What practices do your project managers have? That'd be one of the bigger questions as perhaps the laughs are coming from someone that is feeling threatened in their position.</p>
<p>EDIT: Just as something else to consider, do you have these in place:</p>
<ul>
<li>Testing - Do you have any automated tests?</li>
<li>Continuous integration - Do you know of it? Use it at all?</li>
<li>Source control - Do you have branches and procedures or check-ins?</li>
<li>Development methodology - Ad hoc or "Just do what works" mentality?</li>
<li>Environments - Is there development, testing and production environments?</li>
</ul>
http://stackoverflow.com/questions/1797568/how-to-create-global-variables-asp-net-global-asax/1797809#17978090Answer by JB King for How to create Global variables, ASP.NET, global asaxJB King2009-11-25T15:44:02Z2009-11-25T15:44:02Z<p>"<a href="http://msdn.microsoft.com/en-us/library/ms178594.aspx" rel="nofollow">ASP.NET Application State Overview</a>" contains an object that can be used to store data across all users, similar to the Session object in terms of being able to store various key-value pairs.</p>
http://stackoverflow.com/questions/556062/do-you-consider-performance-reviews-useful-and-why/1793742#17937420Answer by JB King for Do you consider performance reviews useful and why?JB King2009-11-24T23:40:03Z2009-11-24T23:40:03Z<p>There are useful, with a slew of ifs on them. If the people are open and honest as Alphager states. If the point is to get areas to improve as well as a sense of where one is, then it can be a useful practice.</p>
<p>HR and management books cover this in such detail because while it seems like there should be a good solution, it isn't that easy to find given human nature.</p>
<p>An alterative would be to have reverse evaluations where the direct reports evaluate the boss, which can also be useful but carry similar caution notes. Another alternative would be to not have any formal feedback policies and just let people figure out what they want, but that can get ugly as some people would prefer structure from higher up the corporate ladder.</p>
http://stackoverflow.com/questions/1791232/i-am-not-the-most-logically-organized-person-do-i-have-any-chance-at-being-a-goo/1793190#17931900Answer by JB King for I am not the most logically-organized person. Do I have any chance at being a good 'low-level' programmer?JB King2009-11-24T21:55:02Z2009-11-24T21:55:02Z<p>My suggestion would be to consider stepping back for a moment and look at the broadness that is whichever technical discipline you are studying at college. My guess is that you may not have done a lot of work in Numerical Analysis or Operating Systems which could be part of various Computer Science or Software Engineering curricula. So, firstly note the breadth that exists within the subject.</p>
<p>Secondly, could you refine what it is that you'd be doing that an employer would be paying you to do? For example, do you want to work in some university trying to find an algorithm in P for some NP-complete problem? Granted one could get a <a href="http://www.claymath.org/millennium/P%5Fvs%5FNP/" rel="nofollow">million dollars for such a solution</a>, there aren't many companies doing that kind of work. Do you want to be in business intelligence or some other data analysis area where interpreting statistics is your daily life? Or do you want to be trying to refine how UPS or Fedex generate the routes that their trucks take each day? Understand that employers generally are paying well because the developers are producing something of value.</p>
<p>Just a couple of thoughts besides looking at all the other career questions on this site to see similar questions asked over and over again... here are a few examples:</p>
<ul>
<li><a href="http://stackoverflow.com/questions/1420377/programming-demotivation-and-further-plans">Programming (de)motivation and further plans…</a></li>
<li><a href="http://stackoverflow.com/questions/1709606/losing-motivation-due-to-failure">Losing Motivation due to failure…</a></li>
<li><a href="http://stackoverflow.com/questions/128047/motivations-for-choosing-a-career-in-programming">Motivations for choosing a career in programming</a></li>
<li><a href="http://stackoverflow.com/questions/290239/programming-as-a-meaningful-profession">Programming as a meaningful profession?</a></li>
</ul>
http://stackoverflow.com/questions/1792080/difficult-lessons-for-new-programmers/1792157#17921570Answer by JB King for Difficult lessons for new programmers?JB King2009-11-24T18:55:59Z2009-11-24T18:55:59Z<p>Things that shouldn't happen, may actually happen. A common example is asking for a number and getting something outside of base 10 values.</p>
http://stackoverflow.com/questions/1791214/online-issue-tracking-tool/1791889#17918891Answer by JB King for Online Issue Tracking Tool?JB King2009-11-24T18:10:10Z2009-11-24T18:10:10Z<p>Where I work we have a few different solutions in use:</p>
<p><a href="http://www.manageengine.com/" rel="nofollow">Manage Engine</a> - This is our help solution for sending in IS support requests. This is useful for tracking changes, incidents, and service requests all in one package. Not great for bugs though so beware the limitations.</p>
<p><a href="http://www.fogcreek.com/FogBUGZ/" rel="nofollow">FogBugz</a> - This is used by our product development department for tracking feature requests, bugs and enhancements of current products.</p>
<p><a href="http://en.wikipedia.org/wiki/HP%5FQuality%5FCenter" rel="nofollow">HP Quality Center</a> - This is used by my team for tracking bugs as well as some test automation. While there are some nice features, it is also not a light software package.</p>
http://stackoverflow.com/questions/291630/does-pair-programming-work/1791858#17918581Answer by JB King for Does pair programming work?JB King2009-11-24T18:03:45Z2009-11-24T18:03:45Z<p>Where I work for some tasks we generally pair to get the new functionality done. The pair prevents what I'd call the code spew that can happen when one developer just creates a ton of code but it isn't easily read and understood by others. </p>
<p>While I don't think a pair can complete a project faster, there are some trade-offs worth noting. Pair programming prevents a sense of individual code ownership so that the code base is a team result rather than just a solo effort. Just because something is done, doesn't mean it is done well. Some people can understand that and some can't. There may be some time savings in those cases where one developer's work would have to get refactored so the rest of the team can understand the code easier, but I'm not sure how often that would occur.</p>
<p>Pair programmings works really well where I am. There was also a time where a couple of consultants were brought in to pair for a couple of weeks that really upped the game here. The consultants were great at sharing techniques and changing the culture a bit so that everyone worked better and there seemed to be more confidence and pride in the team which helped productivity, IMO.</p>
http://stackoverflow.com/questions/1791571/to-those-in-the-financial-sector-storage-of-data-question/1791682#17916821Answer by JB King for To those in the Financial Sector, storage of data questionJB King2009-11-24T17:36:03Z2009-11-24T17:36:03Z<p>"<a href="http://thedailywtf.com/Articles/Immutable-Invoices.aspx" rel="nofollow">Immutable Invoices</a>" would be a tale of caution to some extent on this subject. While one may not want to store extra data, some records are probably best exported into some archive in case of things like price changes that shouldn't retroactively change invoices.</p>
http://stackoverflow.com/questions/578359/hiring-a-programmer-looking-for-the-right-attitude/1791647#17916471Answer by JB King for Hiring a programmer: looking for the "right attitude"JB King2009-11-24T17:31:00Z2009-11-24T17:31:00Z<p>Just to address the 3 scales:</p>
<blockquote>
<p>identifies themselves with the job ↔
fully detached</p>
</blockquote>
<p>This can be useful in terms of how much of their self-identity is their job and how do they interpret the job, e.g. code monkey or problem solver or some other vision. While each extreme is bad, I'd likely want someone who has some pride in their work and can identify the bounds of the job.</p>
<blockquote>
<p>perceives code as a collection of concepts ↔ sees code as a sequence
of steps</p>
</blockquote>
<p>What if one sees code as a set of classes with methods? I may have done so much OO work that I'm drowning in that paradigm, but it is another perspective to my mind. Thus there are steps within concepts as I see it.</p>
<blockquote>
<p>thinks of creating software as an art ↔ takes 100% rational approach
to design and development</p>
</blockquote>
<p>I'd think the flip side of art is that there is a systemic and straightforward approach rather than waiting for inspiration. There is some art and some science in developing software to my mind. The art comes from being able to look overall at the code and have a bit of a picture of how does the software model the world, while the science is more of a, "Does this work?" answer.</p>
http://stackoverflow.com/questions/1780457/ever-had-to-dumb-down-for-a-job/1787036#17870360Answer by JB King for Ever had to "dumb down" for a job?JB King2009-11-24T00:21:44Z2009-11-24T00:21:44Z<p>What is it costing to have this job? That's the big Q that comes to my mind. If the co-workers are driving you nuts and everyday seems to be worse than the day before, I'd consider quitting and not having that job. On the other hand, if the pay is huge, benefits rock and I only have to tune out a little, I may tolerate the pains though I probably would try to fix things a few times before settling into a blah spot on the team.</p>
<p>Know what your dealbreakers are, what price you have for the almost but not quite dealbreakers, and which things may help offset that. Where I work now has gone from SourceSafe to SVN and brought in various other changes that have helped a lot and I'd like to think how we work will continue to change over the next few years. Is it the awesomest place on Earth? Nah, but very few places would be. Sometimes it can be interesting to see what solution one has to discover if older technologies are used so that while the latest and greatest doesn't have this problem, you aren't upgrading to that anytime soon.</p>
http://stackoverflow.com/questions/1786242/more-valuable-skill/1786460#17864600Answer by JB King for More Valuable SkillJB King2009-11-23T22:20:07Z2009-11-23T22:20:07Z<p>This depends a lot on what kind of employers you are seeking as I could imagine contriving examples where each is better than the others. Renovation project doesn't make a lot of sense to my mind so I'll echo that sentiment.</p>
<p>What kind of work are you wanting? If it is using bleeding edge tools, then supporting legacy applications may not look so great while if you are going for jobs which use languages that were popular many years ago, e.g. VB6, then supporting legacy applications could be a strength. Another point is how do you want to slice your experience as any of the areas you describe could be skewed to favor another.</p>
<p>While you have identified a hole in your experience, how much it impacts your job prospects depends on so many other things that this isn't likely to be the deciding factor.</p>
<p>Upgrading existing applications can be useful in seeing what was done and getting some debugging skills nailed down and staying within certain bounds. Is this what you meant by a renovation project?</p>
<p>Creating a new application can be cool and I'd likely think you may have done this in school or when initially learning Java but I could be wrong.</p>
<p>Support legacy applications can refer to a couple of things. Fixing bugs that customers identify and work arounds without changing the code comes to mind as one interpretation. Implementing enhancements and other minor features are another interpretation to my mind.</p>
http://stackoverflow.com/questions/1829842/which-is-more-secure-or-more-used-net-or-j2eeComment by JB King on Which is more secure or more used .net or J2EE?JB King2009-12-02T00:31:25Z2009-12-02T00:31:25ZWhich kind of security are you meaning? There's secure code and security vulnerabilities within the virtual machine of each which makes this question impossible to answer conclusively.http://stackoverflow.com/questions/1825130/how-to-encourage-positive-developer-behavior-with-an-ideComment by JB King on How to encourage positive developer behavior with an IDE?JB King2009-12-01T17:41:44Z2009-12-01T17:41:44ZI find it somewhat ironic that this is from someone with a 56% accept rate. This looks like a rant with a little question at the end that doesn't have a clear answer.http://stackoverflow.com/questions/1820815/how-to-help-to-an-underperforming-newbie-do-a-better-jobComment by JB King on How to help to an underperforming newbie do a better job?JB King2009-11-30T21:08:18Z2009-11-30T21:08:18Z<a href="http://stackoverflow.com/questions/868301/how-can-i-teach-a-know-it-all-beginner-programmer" rel="nofollow" title="how can i teach a know it all beginner programmer">stackoverflow.com/questions/868301/…</a> is a similar questionhttp://stackoverflow.com/questions/1821802/what-is-churchs-thesisComment by JB King on What is Church's thesis?JB King2009-11-30T19:20:22Z2009-11-30T19:20:22Z<a href="http://en.wikipedia.org/wiki/Church%E2%80%93Turing_thesis" rel="nofollow">en.wikipedia.org/wiki/Church%E2%80%93Turing_thesis/…</a> is no help?http://stackoverflow.com/questions/1727307/refactor-refactor-refactor-your-code-what-does-this-mean-exactly-and-why-do-it/1731344#1731344Comment by JB King on "refactor refactor refactor your code." What does this mean exactly and why do it ?JB King2009-11-30T15:00:19Z2009-11-30T15:00:19Z@pageman, so if someone changed a sorting algorithm that resulted in a different complexity,e.g. going from bubblesort to quicksort, would that count as a different behavior?http://stackoverflow.com/questions/1814083/what-is-more-important-domain-or-the-technologyComment by JB King on what is more important Domain or the technology?JB King2009-11-28T23:34:32Z2009-11-28T23:34:32ZDoesn't this ignore the importance of a methodology?http://stackoverflow.com/questions/1805306/should-i-pursue-java-or-php-for-a-career-path-in-programmingComment by JB King on Should I pursue Java or PHP for a career path in programming?JB King2009-11-26T20:24:09Z2009-11-26T20:24:09ZEven within web development, there is a lot of room for different things. Are you thinking enterprise applications, games like there are in Facebook, or something else? I'd suggest building a list of where in terms of front-end to back-end do you want and what kind of company you want as an employer.http://stackoverflow.com/questions/1804560/good-ethical-hacking-bookComment by JB King on Good ethical hacking bookJB King2009-11-26T16:24:28Z2009-11-26T16:24:28Z@Xinus, the panic reaction may be that some view the term in a very negative light and that this is similar to discussing racial slurs in a way.http://stackoverflow.com/questions/1804311/how-to-check-if-an-integer-is-power-of-3/1804344#1804344Comment by JB King on How to check if an integer is power of 3?JB King2009-11-26T15:34:29Z2009-11-26T15:34:29ZShouldn't there be a check that the number is a positive value, though?http://stackoverflow.com/questions/1791232/i-am-not-the-most-logically-organized-person-do-i-have-any-chance-at-being-a-gooComment by JB King on I am not the most logically-organized person. Do I have any chance at being a good 'low-level' programmer?JB King2009-11-25T19:02:45Z2009-11-25T19:02:45ZWhat's the "TL;DR:" mean?http://stackoverflow.com/questions/1797474/software-life-cycle-models-for-web-development/1797559#1797559Comment by JB King on Software life-cycle models for web developmentJB King2009-11-25T15:45:33Z2009-11-25T15:45:33ZAt least some work gets done. I can imagine some places nothing gets done due to all the finger pointing of whose fault it is that nothing gets done.http://stackoverflow.com/questions/1797553/what-are-the-biggest-hurdles-to-overcome-from-being-a-desktop-programmer-to-a-webComment by JB King on what are the biggest hurdles to overcome from being a desktop programmer to a web programmer?JB King2009-11-25T15:12:25Z2009-11-25T15:12:25ZWhen was Java not used for web development? My understanding is that Java is used for a lot of web functionality so I am not quite understanding the question, unless you've just been doing Java applications, but even then those should be similar to Applets I'd think.http://stackoverflow.com/questions/1793758/c-program-without-uiComment by JB King on C# program without UIJB King2009-11-24T23:47:32Z2009-11-24T23:47:32ZWould a Windows service or website be options?http://stackoverflow.com/questions/1793300/which-programming-language-meets-these-criteria-for-gui-app-development/1793318#1793318Comment by JB King on Which programming language meets these criteria for GUI app development?JB King2009-11-24T22:20:25Z2009-11-24T22:20:25ZDid you miss the first that says no Ruby or Python, which I presume would mean similar languages. Using the JVM breaks a couple of requirements as I see it so that doesn't work, I'm thinking.http://stackoverflow.com/questions/1793257/how-can-i-solve-this-median-programming-problem-in-cComment by JB King on How can I solve this median programming problem in C++JB King2009-11-24T22:14:56Z2009-11-24T22:14:56ZThis is so much easier to do if you can use arrays or linked lists, but then part of the point may be to understand why collections can be a good thing.