active questions tagged self-improvement - Stack Overflow most recent 30 from stackoverflow.com 2009-12-23T10:13:39Z http://stackoverflow.com/feeds/tag/self-improvement http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/76364/what-is-the-single-most-effective-thing-you-did-to-improve-your-programming-skill 300 What is the single most effective thing you did to improve your programming skills? Oded 2008-09-16T20:07:25Z 2009-12-21T03:48:04Z <p>Looking back at my career and life as a programmer, there were plenty of different ways I improved my programming skills - reading code, writing code, reading books, listening to podcasts, watching screencasts and more.</p> <p>My question is: What is the most effective thing you have done that improved your programming skills? What would you recommend to others that want to improve?</p> <p>I do expect varied answers here and no single "one size fits all" answer - I would like to know what worked for different people.</p> <p><b>Edit:</b> Wow - what great answers! Keep 'em coming people!!!</p> http://stackoverflow.com/questions/1910171/how-can-i-become-good-at-assembly 4 How can I become good at assembly? rascher 2009-12-15T20:28:58Z 2009-12-21T02:42:19Z <p>The answer to this question is, of course, "write some assembly code!"</p> <p>But I can do that: I know basic x86 syntax, the types of registers and how to use them, subroutines, etc etc.</p> <p>When I took an assembly class, each assignment had a maximum number of instructions that we were allowed to use. If we went over, then we would lose points - so this taught us to do things <em>efficiently</em>. You know, efficiently in the way that, if you saw a C program doing such things, you might harp on that individual for creating difficult-to-follow code.</p> <p>For C, one can suggest "write a multi-threaded program" or "write a socket server/client". For PHP, suggestions might be "write a personal blog software". To learn the syntax of a language, "project euler" is often suggested.</p> <p>So my question(s) are:</p> <ol> <li><p>What kinds of things can I write in assembly that will let me hone my assembly and efficiency skills? For example, I could do a project euler problem in x86, but that doesn't help me with assembly-specific skills. What are project ideas I could do that can only really be coded in assembler?</p></li> <li><p>How would I go about profiling whether or not I'm writing "good" code? For example, with C and sockets, there are a billion tutorials on the web, and there are a billion people on my buddy list who can look at my code, and there are a billion SO questions about them: so it is easier to measure one's progress.</p></li> <li><p>Are there existing assembly heavy projects which I can look at to learn from? Or even parts of programs where they break into assembly for [specific task] for the sake of efficiency?</p></li> <li><p>What kinds of books should I be reading? Blogs of people who routinely look at low-level things?</p></li> </ol> <p>(preferably things I could do on x86 on linux. I figure the concepts will carry over to other architectures.)</p> http://stackoverflow.com/questions/1932828/how-do-i-learn-c-faster-already-knowing-c-java-c-etc 5 How do I learn C# fast(er), already knowing C, Java, C++, etc.? Jonas Kölker 2009-12-19T12:43:41Z 2009-12-19T18:26:39Z <p>Hi all :)</p> <p>I want to learn C# (on Linux, so using mono), and I'm looking for some guide of guide that taps into the knowledge I already have of other languages; most notably C, C++ and java (but also python, Haskell, lisp, and perhaps a few others).</p> <p>So far all I've found on the web are combined introduction-to-programming and introduction-to-C# texts, but they all fail because I get bored and can't stick to my learning plan.</p> <p>Does anyone have a suggestion for something good to read?</p> <p>Broadening this question up, how do you learn a new language that's similar to languages you already know in a way that taps into the knowledge you already have? Do people write this kind of tutorials? Do you just grab a cheat sheet? Do you have an array of exercises you force yourself through?</p> http://stackoverflow.com/questions/47898/good-practice-projects-to-improve-programming-skills 16 Good Practice Projects to Improve Programming Skills kronoz 2008-09-06T22:39:35Z 2009-12-18T11:59:02Z <p>What are the best toy projects to improve generalised programming skills? I'm talking small programs that you build from scratch and play with yourself to develop skills in a given area or areas. For example, you might put together a very simple notepad-type application, or a simple calculator program.</p> <p>For example, what is the best project to:-</p> <ul> <li>Develop architectural skills</li> <li>Develop algorithmic skills</li> <li>Develop object orientation skills</li> <li>etc. etc.</li> </ul> http://stackoverflow.com/questions/1923109/devaluation-of-knowledge-over-time 6 Devaluation of knowledge over time Maciek Sawicki 2009-12-17T16:54:25Z 2009-12-17T21:52:51Z <p>I read somewhere the following statement:</p> <blockquote> <p>In Information Technology related jobs 60% of learned knowledge is not useful after one and a half years.</p> </blockquote> <p>I'm not sure if I remember numbers correctly (but I think they are close to original) and the author of this theorem. Also I'm not sure if this was about general IT knowledge or domain knowledge. I was searching Google a lot for it, but unfortunately I can't find it.</p> <p>So my first question is: Where can I find the correct version of this statement?</p> <p>I have also same open questions related this subject.</p> <p>I talked about this with my colleagues from university and one of them said that this is a statement about stupid people who can't find out what is important to learn. I disagree with him. He is good mobile applications developer. But would be he so good after spending years on a desert island (of course with out his Android based phone ;) or other Internet enabled device)?</p> <p>However I think he has right about one important thing - devaluation comes faster or slower depending on knowledge type. And this is my last question: What programming related skills don't lose value over time?</p> <p>Some interesting links:</p> <ul> <li><a href="http://www.slideshare.net/Al.Simard/knowledge-management-value-chains" rel="nofollow">http://www.slideshare.net/Al.Simard/knowledge-management-value-chains</a></li> <li><a href="http://www.slideshare.net/BillHall/time-value-of-knowledge-timebased-frameworks-for-valuing-knowledge" rel="nofollow">http://www.slideshare.net/BillHall/time-value-of-knowledge-timebased-frameworks-for-valuing-knowledge</a></li> <li><a href="http://c2.com/cgi/wiki?WhyIsDomainKnowledgeNotValued" rel="nofollow">http://c2.com/cgi/wiki?WhyIsDomainKnowledgeNotValued</a> - "DomainKnowledge should be maintained the same way a codebase is maintained" -<a href="http://www.tinbergen.nl/cost/cost/gustavsson.pdf" rel="nofollow">http://www.tinbergen.nl/cost/cost/gustavsson.pdf</a> this studies show that 5% of skills are lost after one year of unemployment.</li> </ul> http://stackoverflow.com/questions/1915545/videos-for-lunch-and-learn-sessions 1 Videos for Lunch and Learn sessions RN 2009-12-16T15:52:32Z 2009-12-16T15:58:24Z <p>We are starting Lunch and Learn sessions at my work.</p> <p>The format we have is - we collectively watch a video from <a href="http://www.infoq.com" rel="nofollow">infoQ</a> and then discuss what the presentation or whatever we watched</p> <p>I am looking for suggestion on some good videos that are out there.</p> <p>We are a Java shop- so Java and related technologies would be good and also on Architecture, good practices, Design principles etc.</p> <p>We recently watched <a href="http://www.infoq.com/presentations/north-pimp-my-architecture" rel="nofollow">http://www.infoq.com/presentations/north-pimp-my-architecture</a></p> <p>And I have one more in mind</p> <p><a href="http://www.infoq.com/presentations/craftmanship-ethics" rel="nofollow">http://www.infoq.com/presentations/craftmanship-ethics</a></p> <p>Please post your favorite videos here</p> http://stackoverflow.com/questions/1906003/swt-tutorials-or-guides 1 swt tutorials or guides Steve De Caux 2009-12-15T08:40:53Z 2009-12-15T16:52:00Z <p>Hi,</p> <p>I have some years experience with swing and feel comfortable that I understand the architecture.</p> <p>Now I need to get up to speed on SWT rather quickly.</p> <p>What would you recommend I study from online sources or books so I can get my head around the SWT architecture quickly ? I'm really starting from scratch.</p> http://stackoverflow.com/questions/500607/what-are-the-lesser-known-but-cool-data-structures 87 What are the lesser known but cool data structures ? f3lix 2009-02-01T11:12:25Z 2009-12-14T23:16:09Z <p>There a some data structures around that are really cool but are unknown to most programmers. Which are they?</p> <p>Everybody knows linked lists, binary trees, and hashes, but what about <a href="http://en.wikipedia.org/wiki/Skip_list" rel="nofollow">Skip lists</a>, <a href="http://en.wikipedia.org/wiki/Bloom_filter" rel="nofollow">Bloom filters</a> for example. I would like to know more data structures that are not so common, but are worth knowing because they rely on great ideas and enrich a programmer's tool box.</p> <p>PS: I am also interested on techniques like <a href="http://en.wikipedia.org/wiki/Dancing_Links" rel="nofollow">Dancing links</a> which make interesting use of the properties of a common data structure. </p> <p><strong>EDIT</strong>: Please try to <em>include links</em> to pages describing the data structures in more detail. Also, try to add a couple of words on <em>why</em> a data structures is cool (as <a href="http://stackoverflow.com/questions/500607/what-are-the-lesser-known-but-cool-data-structures">Jonas Kölker</a> already pointed out). Also, try to provide <strong><em>one data-structure per answer</em></strong>. This will allow the better data structures to float to the top based on their votes alone.</p> http://stackoverflow.com/questions/1888329/is-it-acceptable-for-developers-to-have-little-or-no-knowledge-of-ui-design 10 Is it acceptable for developers to have little or no knowledge of UI design? [closed] Stimul8d 2009-12-11T14:14:35Z 2009-12-14T09:28:30Z <p>In response to <a href="http://stackoverflow.com/questions/1887871/apart-from-programming-languages-what-else-to-do/1888150#1888150">'Apart from programming languages what else to do?'</a>, I suggested that it's important to have some knowledge of interface design to work in software development.</p> <blockquote> <p>Learn interface/interaction design. As programmers, we are notoriously bad at this and we always give the same old excuse,..."that's a designers job". I can count on one hand the number of development houses I'm aware of that hire a designer to do the front end work.</p> <p>With emerging technologies allowing us to create better and more usable interfaces this is one of the biggest gaps in our knowledge as a body of professionals and something we should be actively trying to improve.</p> </blockquote> <p>Now, I came to be a developer through graphic deign, in to web design, then web development and finally LOB desktop development. So my background in design may have made me biased but I wanted to gauge opinion on this. </p> <p>In my opinion, getting the user interface right is <strong>at least</strong> as important as getting the code right and having little or no knowledge in this area is no longer acceptable for a proactive developer. Do you agree?</p> <p><strong>Update</strong>- To those who say it's okay because you might never work with the UI or very rarely, let me ask this: If I never have a need to work with databases, does that make it okay to have no understanding of them? All I'm saying is that we don't seems to value UI design as a skill in our line of work. Maybe that's because it's no so technical and there are no hard-and-fast answers.</p> http://stackoverflow.com/questions/1894617/how-to-start-a-career-in-java-java-scjp-certificate 7 How to start a career in Java? Java SCJP Certificate? thehighroller 2009-12-12T20:31:00Z 2009-12-12T21:10:51Z <p>Hi Stackoverflowers!</p> <p>I am planning to write the SCJP exam soon, and I wonder if that will be helpful to get Graduate/Junior Java Programmer job. Exam seems to be easy to pass for some people.</p> <p><strong>What is the minimum scope of knowledge to start thinking about career in Java field?</strong></p> <p>Do you think that SCJP will be enough to dive in to Java world? </p> <p>If not, what advice would you give me? how to start a career in Java?</p> <p>Regards</p> http://stackoverflow.com/questions/1876947/how-do-you-maintain-discipline-when-doing-tdd 9 How do you maintain discipline when doing TDD? Pēteris Caune 2009-12-09T21:17:00Z 2009-12-11T03:57:00Z <p>When I get excited about a new feature I'm just about to implement or about a bug that I've just "understood", there is the urge to just jump into the code and get hacking. It takes some effort to stop myself from doing that and to write the corresponding test first. Later the test often turns out to be trivial 4-liner, but before writing it still there's the thought in back of a head, "maybe I can skip this one, this one time?" Ideally I'd like to get an urge to write test, and only then, perhaps, the code :)</p> <p>What method (or way of thinking or mind trick or self-reward policy or whatever) do you use to help maintain the discipline? Or do you just practice it until it feels natural?</p> http://stackoverflow.com/questions/6396/which-programming-language-should-i-learn 8 Which Programming Language Should I Learn? Esteban Araya 2008-08-08T21:28:19Z 2009-12-10T16:16:09Z <p>I've decided, for educational purposes, I want to learn a new language every 2 years or so. Which language should I learn first? <strong>Why?</strong></p> <p>I'm proficient with C, C# and Java. Other than that, I really haven't done much with any other languages.</p> <p>Thanks!</p> <p><strong>Edit:</strong> Thanks to all of those that recommended functional languages. Making the mental switch to a functional language seems hard. How did you overcome your instinct to keep doing things in a procedural manner?</p> http://stackoverflow.com/questions/1873378/clientside-going-serverside-with-node-js 0 Clientside going serverside with node.js Sveisvei 2009-12-09T11:45:37Z 2009-12-09T22:43:31Z <p>Hello,</p> <p>I`ve been looking for a serverside language for some time, and python got my attention somewhat. But as I already know and love javascript, I now want learn to code on the server with js and node.js.</p> <p>Now, what books and what subjects do I need to learn to understand the serverside world better?</p> <p>(let me know if Im to vague)</p> http://stackoverflow.com/questions/1852808/what-should-i-do-to-improve-my-code-style-of-programming 18 What should I do to improve my code/style of programming? Sandbox 2009-12-05T17:26:57Z 2009-12-09T16:57:51Z <p>I am sure you guys know me. I am the person from your offshore team whose code puts you off and at times makes you pull your hair (bcoz you can't pull mine). My programming concepts are quite okay (and I continuously try and improve them by reading blogs, articles). But, my code isn't up to the mark. It has got better with experience, but still isn't as good as some of colleagues. My code does does what it wants to do, but not in an optimized/graceful manner. How can I improve?</p> http://stackoverflow.com/questions/1120388/good-ways-of-disciplining-yourself-when-freelancing-at-home 34 Good ways of disciplining yourself when freelancing at home? Ancide 2009-07-13T16:04:02Z 2009-12-09T04:28:12Z <p>I have noticed that my self-discipline is very bad when it comes to getting up in the morning, eating regularly and working on fixed hours. When you have a job to go to, it is very different since you have fixed hours. You have a everyday routine.</p> <p>But when you start freelancing and you do it at home, you have so much more freedom. I find it extremely easy to stay up late in the night and then in the morning I'm too tired to get up when I'm supposed to. Same thing with working, it's easy to do everything but work. </p> <p>I might have the worst self-discipline in the world, so what tips do you have for me and everyone else which finds it hard to keep a everyday routine? </p> http://stackoverflow.com/questions/1855596/how-to-remember-all-technologies-we-learn 3 How to remember all technologies we learn? [closed] PHP thinker 2009-12-06T14:56:39Z 2009-12-06T17:42:25Z <p>How to remember all technologies we learn?</p> <p>There are <em>so many technologies</em> for programmer and all can't be kept in memory. Of course, we all have our bookmarks in delicious where we store useful tutorials and examples. Some of us, like me, have "Snippets" folder, where we store some typical solutions for specific areas.</p> <p>But there is one more field - IT models and concepts. E.g. this can be hook/event flow in Drupal or how Doctrine ORM plays with DB and Zend Framework (<strong>processes, structures)</strong> - all this typically requires some effort to understand something new and models are not too simple to be easily recalled after some time.</p> <p>I've started to draw some mindmap schemes on paper and I store a few of them in a special folder. Does anyone do similar things to keep one's own model/concept base? Do you think it's worth doing?</p> http://stackoverflow.com/questions/1585067/is-there-any-self-improving-compiler-around 2 Is there any self-improving compiler around? JohnIdol 2009-10-18T14:50:55Z 2009-12-06T06:18:42Z <p>I am not aware of any self-improving compiler, but then again I am not much of a compiler-guy.</p> <p><strong>Is there ANY self-improving compiler out there?</strong></p> <p>Please note that I am talking about <em>a compiler that improves itself</em> - not <em>a compiler that improves the code it compiles</em>.</p> <p>Any pointers appreciated!</p> <p><strong>Side-note</strong>: in case you're wondering why I am asking have a look at <a href="http://www.acceleratingfuture.com/michael/blog/2009/10/yale-daily-news-on-ss09-fear-the-singularity/" rel="nofollow">this post</a>. Even if I agree with most of the arguments I am not too sure about the following: </p> <blockquote> <p>We have programs that can improve their code without human input now — they’re called compilers.</p> </blockquote> <p>... hence my question.</p> http://stackoverflow.com/questions/231951/whats-the-next-thing-on-your-list-to-learn 30 What's the next thing on your list to learn? HenryR 2008-10-23T23:29:01Z 2009-12-03T21:24:04Z <p>Subject line says it all. What's next on your list of things to tackle and get to grips with? Got a language you want to learn? Want to grok dynamic programming? Think it's about time you understood type theory?</p> <p>What's next? And why?</p> http://stackoverflow.com/questions/1820815/how-to-help-a-struggling-newbie-do-a-better-job 82 How to help a struggling newbie do a better job? flipdoubt 2009-11-30T16:23:01Z 2009-12-03T18:05:08Z <p>I have been the only developer and the de-facto "senior developer" on my company's flagship product for a while (a .NET WinForms app, but that is not related). Just recently, they brought in a "newbie" developer with a fresh computer science degree. No experience with source control, unit testing, software maintenance, etc. </p> <p>I recently assigned him a small chunk of work and made myself fully-available for assistance, only to find his output lacking in a big way, both in terms of speed and quality. I tried not to be too heavy-handed, so the only upfront guidance I gave him is a wiki article describing the task that I update (but he has not), several code samples on new technologies (such as IPC), and I decomposed the tasks into several FogBugz cases (to which he provided no original estimates, actual time, or commentary until I told him what I would put). He rarely asked questions and, when he did, he seemed to follow my suggestions as though they were requirements, often without understanding them and even when they were wrong.</p> <p>So ... I fully sympathize with his situation where you don't know what to do and are afraid to ask questions. I know it is my responsibility to do a better job, but no one gave me any guidance so I have no experience with what a better job looks like. Luckily, he is on vacation for a week, so I have some time to think about how to improve the process. Here are some of the items that occur to me, but I am open to suggestions and criticism:</p> <ol> <li>Ask what part of the last iteration was most difficult. Ask what part took much more time than he expected.</li> <li>Do some pair programming. I already suggested this and he seemed open to the idea, but each time we started I tended to take over because he wasn't typing fast enough. Something I have to work on. </li> <li>Have a code review before checking the work in. (We did not this time because of his vacation.) The code review would highlight the following items.</li> <li>Require comments on all public members. (None of his code is commented.)</li> <li>Require him to remove all unused code. (A cursory review shows he did not.)</li> <li>Require him to commit code to each FogBugz Case as he completes it and/or revise cases where they differ from what he discovers while coding.</li> <li>Require him to enter original estimates into FogBugz and toggle the "working on" flag to keep him on task.</li> </ol> <p>While the code review stuff is specific and technical, I am more concerned with his ability to be a self-starter and to ask-for/get guidance where he needs it. I don't think of the FogBugz requirements (6 and 7) as hard rules, but it seems like he needs to follow them to keep him on track.</p> <p>Also, I know I need to improve my mentoring/training skills as much as he needs to improve his coding skills. Any suggestions on where to start when the "senior developer" has not participated in a formal code review or made it through a pair programming session without taking over?</p> <p>My impulse is to update the stuff he already checked in, but I know I should save that for a code review. I wanted him to check the work in so I could begin coding the part that uses what he checks in. So should I use what he checked in even though I don't think it is satisfactory?</p> http://stackoverflow.com/questions/1551/how-to-think-in-oo 21 How to Think in OO Brett Veenstra 2008-08-04T19:56:05Z 2009-12-03T15:07:03Z <p>Besides the general, "What is OO?" question, I want to understand how one transitions from a procedural-based programmer to someone who <strong>gets OO</strong>.</p> <p>I'm anticipating the winning answer would contain thoughts on SOLID, as well as some practices/drills for increasing our skills in design and development that fully leverages OO. Books/classes/mentors also acceptable.</p> http://stackoverflow.com/questions/1671970/keeping-skills-up-to-date-is-more-important-to-programmers-than-any-other-job 1 Keeping skills up to date is more important to programmers than any other job? John 2009-11-04T06:16:18Z 2009-12-01T18:03:23Z <p>I remember back in school, students use to say in a tiring tone, "Engineers and computer scientists must always keep apprised of new technologies and keep their skills up to date. If they don't they will be at risk of being laid off. It's easier to be something like an accountant because an accountant only needs to learn a finite number of things (things that haven't changed over the last several decades) and still make lots of money."</p> <p>Luckily for me, I do enjoy learning new technologies. And I find that picking up a new technology isn't difficult because it always seems to be an extension of what I'm already use to. I have seen more senior friends lose their job because they command very high salaries but also do not apply "modern best practices" in software development. They also never climbed the corporate ladder or became a project manager.</p> <p>Does a profession in technology require more ongoing learning than say an accountant? or a dentist? or a regional sales manager? etc...</p> http://stackoverflow.com/questions/1766857/which-books-or-resources-would-you-recommend-for-learning-event-driven-programmin 1 Which books or resources would you recommend for learning event-driven programming? romandas 2009-11-19T21:56:57Z 2009-12-01T04:37:37Z <p>The question says it all, really. I am looking for books or resources I can use to self-teach regarding event-driven programming. I have a decent grasp on the program flow of smaller programs that don't have a GUI (procedural programming, I think); basically the code doesn't interact with the user beyond command-line arguments, or sometimes a text-based menu.</p> <p>In order to move past that, what books or references would you recommend to learn event-driven programming? In particular, code organization tips and some real-life examples would be great. I'd like to learn proper technique and minimize picking up bad habits. :)</p> <p>Edit: Also, is there any difference between how event-driven programming is done on Linux versus on Windows? Besides the obvious API differences..</p> http://stackoverflow.com/questions/1814341/ruby-without-rails 2 Ruby without Rails Nathan Campos 2009-11-29T01:21:49Z 2009-11-30T23:43:53Z <p>I've already developed some simple applications in Rails(just to test) without any knowleadge of Ruby, but now I want to change my life, I'm going to start learning Ruby(and never learn Rails for some personal reasons) and focus only on it, but before doing this I need tp know some things:</p> <ul> <li>How can I build GUI applications with it? <ul> <li>It's possible to use GTK with it?</li> <li>Where to download?</li> </ul></li> <li>Pros and cons of Ruby compared to Perl amd Python?</li> <li>Pros and cons compared to C# and other .Net languages?</li> <li>How is the market of Ruby(without Rails) today?</li> <li>Where to be updated with the lastest news(podcasts and blogs) of the Ruby world?</li> </ul> <p>This is all <strong>;)</strong></p> http://stackoverflow.com/questions/1548442/i-know-how-to-program-now-how-do-i-learn-to-design 36 I know how to program. Now how do I learn to design? Peter 2009-10-10T16:46:28Z 2009-11-30T23:34:16Z <p>Hi, I'm a community college student graduating this year. Over the last couple of years I learned HTML, CSS, VB.NET, C#, PHP, and to a lesser extent some other languages. I have no problems whatsoever with assignments given in class. In fact, I always get A's and I'm never challenged. But when I to go ahead and try to write something bigger from scratch, I have a hard time organizing or designing my programs. I'm thinking this might be due to the fact that I have too much freedom, but I don't know for sure. Often I'll write a bigger program (say, a few hundred of lines) only to realize that what I wrote is neither elegant nor maintainable. How do I overcome this deficiency? Books? Tutorials? An actual job (who'd hire a student that can't <em>design</em>)? Or does it come to you with time?</p> http://stackoverflow.com/questions/36756/f-what-are-you-using-it-for 15 F# - What are you using it for? Kaius 2008-08-31T10:33:29Z 2009-11-28T10:09:36Z <p>Ok so a good few months back i started hearing about F# and all the goodness it has, i bought Don Syme's book and started reading. At first i was really excited at how elegant it seemed to make certain tasks. But then i found a problem, although the language seems great it is quite different from what i use in work which means my co-workers won't understand it if i start developing new projects in it. So because i have not had a reason to actually work with it I still havent gotten my head around F# at all. </p> <p>Luckily a new solo project is on the horizon which may give me a chance to use F#. My question is how did you start developing in F#? Do your co-workers also use it? </p> <p>The project will be a pretty simple WinForm application connecting to a DB. I know i can write it all in C# or VB.NET but i would like to integrate F# in there in some way. Although developing the entire application in F# would take me far too long as i am still learning what areas would you suggest i use F# for?</p> http://stackoverflow.com/questions/1806050/good-bison-books-recommendation 2 Good Bison Books Recommendation Nathan Campos 2009-11-26T23:03:12Z 2009-11-28T00:20:47Z <p>Hello,<br /> I'm now going to do the things right, now I'm going to learn how to develop a compiled language using Bison by books, then I want some books recommendations(better if I can have they for Kindle).</p> http://stackoverflow.com/questions/336400/how-can-i-use-the-dreyfus-model-of-skill-acquisition -2 How can I use the Dreyfus Model of skill acquisition? suhair 2008-12-03T07:14:29Z 2009-11-27T11:03:35Z <p>How can I use the <a href="http://en.wikipedia.org/wiki/Dreyfus%5Fmodel%5Fof%5Fskill%5Facquisition" rel="nofollow">Dreyfus Model of skill acquisition</a> specifically to improve programming skills?</p> http://stackoverflow.com/questions/1737427/assignments-i-e-code-kata-for-coding-dojos 3 Assignments, i.e. Code Kata, for Coding Dojos Dala 2009-11-15T12:30:42Z 2009-11-26T11:01:03Z <p>I would like to gather a list of assignments, i.e. <a href="http://en.wikipedia.org/wiki/Code%5FKata" rel="nofollow" title="Code Kata">Code Kata</a>, for <a href="http://codingdojo.org/" rel="nofollow">Coding Dojos</a>. Please provide a name and a short description of the assignment or a link.</p> <p>I'll kick off things with FizzBuzz.</p> <p><strong>Update</strong></p> <p>There are some good links in the answers so far but I don't believe that mathematical and algorithmic puzzles are the best for a coding dojo. The purpose with a coding dojo is to practice programming skills together with other people and I'm sure there are problems that are better than others for this. So please share problems you've used with success in a dojo or others that might be a good fit.</p> http://stackoverflow.com/questions/1775377/im-instant-messaging-increase-or-decrease-developers-productivity 2 IM (Instant Messaging) increase or decrease developer's productivity? GRGodoi 2009-11-21T12:36:09Z 2009-11-21T13:16:00Z <p>In my team I have some developers that always have two or three IM windows open. The majority of these windows are not related with the project where they are nor with asking or offering programming help. I also use IM and, off course, some of my "talks" are not related with the job. But I feel that when I am using IM my productivity drops. I mean, there is more "mental" work to change the scope between the task I am doing and the conversation every time a new message arrive. Do you face the same situation? Is there some good practices to avoid this (excluding, off course, stopping using IM)?</p> http://stackoverflow.com/questions/1775104/how-to-speed-up-programming-work-development-time -1 How to speed up programming work / development time? [closed] Sarfraz Ahmed 2009-11-21T10:20:11Z 2009-11-21T10:25:03Z <p>Hello Guys,</p> <p>I know everyone has his own style of doing certain things. But still deep in the jungle, you see some lights of hope for your escaping. What's the strategy of you guys? What generalizations can we come up with to take over this very very crucial topic?</p> <p>Let's see if you have been able to satisfy your clients or you have never been able to escape out of the jungle.......</p>