hot questions tagged bragging - Stack Overflowmost recent 30 from stackoverflow.com2009-11-27T21:34:51Zhttp://stackoverflow.com/feeds/tag?tagnames=bragging&sort=hothttp://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/13827/what-already-invented-algorithm-did-you-invent19What "already invented" algorithm did you invent?Guy2008-08-17T18:46:44Z2009-10-07T04:33:49Z
<p>In my question <a href="http://beta.stackoverflow.com/questions/13540/insert-update-stored-proc-on-sql-server" rel="nofollow">Insert Update stored proc on SQL Server</a> I explained an efficient way of doing an insert/update - perhaps THE most efficient. It's nothing amazing but it's a small algorithm that I came up with in a mini-Eureka moment. Although I had "invented" it by myself and secretly hoped that I was the first to do so I knew that it had probably been around for years but after posting on a couple of lists and not getting confirmation I had never found anything definitive written up about it.</p>
<p>So my questions:
What software algorithm did you come up with that you thought that you'd invented?
Or better yet, did you invent one?</p>
http://stackoverflow.com/questions/464871/what-programming-stage-do-you-think-youve-reached17What programming "stage" do you think you've reached?Adam Naylor2009-01-21T11:15:40Z2009-02-22T22:13:16Z
<p>A few years back I stumbled across the <a href="http://www.gamedev.net/reference/list.asp?categoryid=45#215" rel="nofollow">code on the cob</a> series of articles over at <a href="http://www.gamedev.net/" rel="nofollow">www.gamedev.net</a>.</p>
<p>One article that particularly intrigued me was the one relating to <a href="http://www.gamedev.net/reference/articles/article832.asp" rel="nofollow">programming 'stages'</a>.<br />
In it, the author (Chris Hargrove), describes how he believes that there are specific moments throughout a programmers career where they fundamentally alter their understanding (of programming) at a conceptual level.</p>
<blockquote>
<p>"I could tell I had grown as a programmer between the time I joined [Raven] and the time I left, but I couldn't really explain how. At some time during my experience there, something in my head "clicked" that I couldn't describe. I was talking to a friend sometime afterward (who was also an employee there at the time), and he could relate to the feeling, which he'd had at one point as well. He could only describe it as "finding your code style". Although that term didn't quite grasp what I was thinking, it did make me wonder. Sometime afterward I began thinking about this "stages of a programmer" thing, and talked about it with a couple of my current coworkers here. Then I realized that the "click" I felt was me hitting one of those stages, and I started thinking about the other stages I've inadvertantly hit over the past few years... and which ones still remain."</p>
</blockquote>
<p>The stages that he outlines are as follows:</p>
<blockquote>
<p><strong>Stage 1 - Fundamental.</strong> A programmer's first exposure to programming, learning basic logical and structural concepts, and so forth. Here one is capable of writing programs to solve certain problems, such as those assigned in school or with similar complexity. Programmers at this stage often don't have any real "drive" to program, but do so out of necessity or supplemental desires (i.e. it'll help them find a job).</p>
<p><strong>Stage 2 - Exploratory.</strong> A large stage beginning with a realization that there are more possibilities in programming than once thought, usually marking the start of a programmer's motivational drive. Programmers here begin learning a wide variety of programming topics, languages, and paradigms, often in a random and self-taught order based on current interest and any information accessible.</p>
<p><strong>Stage 3 - Concrete.</strong> A second "exploratory" stage where the programmer becomes comfortable with his/her current knowledge and methods of acquiring new information. Research mechanisms become more disciplined, and the programmer finds themself answering more questions amongst peers than asking them.</p>
<p><strong>Stage 4 - Analytical.</strong> The programmer begins focusing less on implementation details of specific topics and more on problem analysis, including self-analysis of one's coding conventions and design methodologies. Large-scale construction issues become dominant over smaller-scale programming problems, which can now be solved as needed.</p>
<p><strong>Stage 5 - Holistic.</strong> Programmers at this stage attempt to see projects from all angles, before and during construction. Software engineering decisions become disciplined, and a project's implementation becomes a mere manifestation of its design, not the controlling force. Construction details and related problems are increasingly seen before they happen, with the programmer capable of focusing on multiple levels of a design simultaneously.</p>
<p><strong>Stage 6 - Dynamic.</strong> The programmer ceases to consider project design as the primary programming factor, and begins to focus on design of a design itself, turning the concept of a project into a completely abstract conceptual entity.</p>
<p><strong>Stage 7 - ???</strong></p>
</blockquote>
<p>Now, normally I'm not one for psychological mumbo jumbo. But the idea presented by Chris really struck a chord with me. I can really relate to some of the 'key moments' he described.
For example (although not really a stage) think back to when you first truly grasped OOP, and began to be able to leverage it in designs and patterns.</p>
<p>So, my questions are these: </p>
<p>1) Which stage do you feel you fall under?<br />
2) Do you think the model is wrong? Prepose additional stages or retractions.<br />
3) Do you think the whole idea is wrong? And that developers cannot by 'pigeon holed'<br />
4) Can you remember any 'clicks' that you have noticed? </p>
<p><strong>EDIT</strong><br />
I reckon I'm at stage 4. Looking at stage 5 :-)</p>
http://stackoverflow.com/questions/575767/what-programming-technique-practice-done-by-you-was-ahead-of-its-time2What programming technique / practice done by you was ahead of its time?Binoj Antony2009-02-22T20:57:03Z2009-10-12T12:54:58Z
<p>I once built a very good web application in ASP (classic) back in 2001 and extensively used XmlHttpRequest object in it. (I was lucky that the clients were only using IE, and <a href="http://en.wikipedia.org/wiki/XMLHttpRequest#History%5Fand%5Fsupport" rel="nofollow">only IE supported this object at that time</a>). </p>
<p>Then later when people started talking about <a href="http://en.wikipedia.org/wiki/Ajax%5F%28programming%29#History" rel="nofollow">AJAX in 2005</a>, It felt good to have used something ahead (or early) of its time.</p>
<p>Well, maybe this does not qualify to be listed as something done ahead of its time.</p>
<p>Which programming technology/technique/practice have you done that was ahead of this time.<br/>
One story per answer please.</p>
<p>The title for this question taken from an <a href="http://stackoverflow.com/questions/575582/what-programming-technique-not-done-by-you-was-ahead-of-its-time">opposite question here</a>.</p>