User Hideo - Stack Overflow most recent 30 from stackoverflow.com 2009-12-06T02:56:46Z http://stackoverflow.com/feeds/user/89002 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/877149/what-activity-should-be-on-every-programmers-daily-list/877192#877192 0 Answer by Hideo for What activity should be on every programmer's daily list? Hideo 2009-05-18T11:07:51Z 2009-05-18T11:07:51Z <p>Thinking about the design of specific software.</p> http://stackoverflow.com/questions/828384/which-programming-language-to-learn/828407#828407 1 Answer by Hideo for Which Programming language to Learn ? Hideo 2009-05-06T07:19:20Z 2009-05-06T07:19:20Z <p>I vote for Lisp, that is Common Lisp.</p> <p>Get "Practical Common Lisp" by Peter Seibel or read it online at <a href="http://www.gigamonkeys.com/book/" rel="nofollow">http://www.gigamonkeys.com/book/</a></p> http://stackoverflow.com/questions/818937/how-can-i-get-addicted-to-programming/819066#819066 0 Answer by Hideo for How can I get addicted to programming? Hideo 2009-05-04T07:06:24Z 2009-05-04T07:06:24Z <p>"How do you get yourself to look forward to programming?"</p> <p>Read this very important book,"Unlimited Power" by Tony Robbins. </p> <p>He describes the techniques to put yourself in empowering mental states. That is the key solution to your problem.</p> http://stackoverflow.com/questions/784285/trying-to-get-started-in-c/784822#784822 0 Answer by Hideo for Trying to get started in C Hideo 2009-04-24T07:17:00Z 2009-04-24T07:17:00Z <p>K&amp;R is outdated.</p> <p>I prefer C Primer Plus 5th Ed by Stephen Prata ISBN: 0-672-32696-5 </p> <p>It covers C99.</p> http://stackoverflow.com/questions/784461/how-do-you-clear-your-mind-after-8-10-hours-per-day-of-coding/784739#784739 14 Answer by Hideo for How do you clear your mind after 8-10 hours per day of coding? Hideo 2009-04-24T06:27:11Z 2009-04-24T06:27:11Z <p>Martial arts help me clear my mind.</p> http://stackoverflow.com/questions/783959/preparing-to-be-a-computer-scientist/784252#784252 0 Answer by Hideo for Preparing to be a computer scientist? Hideo 2009-04-24T02:00:11Z 2009-04-24T02:00:11Z <p>To prepare yourself for the real world in 7 months, you should learn how to deal with people.</p> <p>Read these two books: 1. How to Win Friends and Influence People by Dale Carnegie 2. The Magic of Thinking Big by David Schwartz</p> <p>During these seven months, as an inexperienced programmer, you can market yourself by working on a real world project, perhaps participating in an Open Source project that you really like.</p> <p>The most important quality that you need is the willingness or eagerness to learn. Most employers would value such a person. Your CS degree is your launching pad into the real world. Seek out good mentors and learn from them. </p> http://stackoverflow.com/questions/184469/simple-but-powerful-programming-language-for-a-hobby-software-project/781368#781368 1 Answer by Hideo for Simple but powerful programming language for a hobby software project Hideo 2009-04-23T11:47:41Z 2009-04-23T11:47:41Z <p>For hobby projects in Windows, I use Jeremy Gordon's Go Tools for Win32 and Win64 (assembler, resource compiler and linker)</p> <p>URL: <a href="http://www.jorgon.freeserve.co.uk/" rel="nofollow">http://www.jorgon.freeserve.co.uk/</a></p> <p>I like to get close to the Windows API. With GoAsm, it is easy and interesting.</p> http://stackoverflow.com/questions/754009/what-language-to-use/781355#781355 0 Answer by Hideo for What language to use Hideo 2009-04-23T11:43:03Z 2009-04-23T11:43:03Z <p>If you like to build 'small' desktop utilities, that sort of thing that does not require the .NET framework to run, you might want to check out BCX. It is free.</p> <p>BCX is a small command line tool that inputs a BCX BASIC source code file and outputs a 'C' source code file which can be compiled with many C or C++ compilers.</p> <p>Using BCX and a C compiler enables you to produce powerful 32-bit native code Windows console mode programs, windows GUI applications, and Dynamic Link Libraries (DLL's) without having to incur the costs of an expensive commercial BASIC compiler. The programs that you create will be among the smallest and fastest 32 bit executable programs around, requiring no additional distributed runtime modules. </p> <p>URL: <a href="http://bcx-basic.sourceforge.net/" rel="nofollow">http://bcx-basic.sourceforge.net/</a></p> http://stackoverflow.com/questions/116368/c-compiler-for-windows/781151#781151 1 Answer by Hideo for C compiler for Windows? Hideo 2009-04-23T10:31:08Z 2009-04-23T10:31:08Z <p>There is another free C compiler for Windows: Pelles C.</p> <p>Pelles C is a complete development kit for Windows and Windows Mobile. It contains among other things an optimizing C compiler, a macro assembler, a linker, a resource compiler, a message compiler, a make utility and install builders for both Windows and Windows Mobile. It also contains an integrated development environment (IDE) with project management, debugger, source code editor and resource editors for dialogs, menus, string tables, accelerator tables, bitmaps, icons, cursors, animated cursors, animation videos (AVI's without sound), versions and XP manifests.</p> <p>URL: <a href="http://www.smorgasbordet.com/pellesc/" rel="nofollow">http://www.smorgasbordet.com/pellesc/</a></p> http://stackoverflow.com/questions/402265/beginner-programmer-which-direction/781086#781086 0 Answer by Hideo for Beginner Programmer - Which direction Hideo 2009-04-23T10:06:30Z 2009-04-23T10:06:30Z <p>After unlearning C, you might want to learn assembly language. ;)</p> <p>Then get back into C and C++.</p> http://stackoverflow.com/questions/780969/directx-programming-on-windows-what-is-the-preferred-way/781011#781011 2 Answer by Hideo for DirectX programming on Windows, what is the preferred way? Hideo 2009-04-23T09:44:09Z 2009-04-23T09:44:09Z <p>If you ever go back to C or C++, you might want to check out Simple DirectMedia Layer (SDL).</p> <p>IMHO, it is much easier than DirectX.</p> <p>URL: <a href="http://www.libsdl.org/" rel="nofollow">http://www.libsdl.org/</a></p> http://stackoverflow.com/questions/780864/simulating-iphone-on-windows/780921#780921 0 Answer by Hideo for simulating iphone on windows? Hideo 2009-04-23T09:18:23Z 2009-04-23T09:18:23Z <p>See also: <a href="http://theappleblog.com/2008/10/07/ibm-extends-iphone-development-to-windowslinux-programmers/" rel="nofollow">http://theappleblog.com/2008/10/07/ibm-extends-iphone-development-to-windowslinux-programmers/</a></p> http://stackoverflow.com/questions/779338/excellent-examples-of-real-c-c-code-suggestions-needed/780903#780903 1 Answer by Hideo for excellent examples of real c/c++ code? Suggestions needed Hideo 2009-04-23T09:13:30Z 2009-04-23T09:13:30Z <p>Diomidis Spinellis has some suggestions in his book, "Code Reading: The Open Source Perspective", Addison Wesley, 2003. ISBN 0-201-79940-5.</p> <p>Perhaps the book could be useful to you.</p> <p>URL <a href="http://www.spinellis.gr/codereading/" rel="nofollow">http://www.spinellis.gr/codereading/</a></p> http://stackoverflow.com/questions/779266/does-it-make-you-a-bad-coder-if-you-have-to-look-up-syntax/780664#780664 1 Answer by Hideo for Does it make you a bad coder if you have to look up syntax? Hideo 2009-04-23T07:29:02Z 2009-04-23T07:29:02Z <p>No, it does not make you a bad programmer, it merely slows you down.</p> <p>However, just imagine this... if you have a very good memory, you will be able to stay focused on the coding task far better than someone who has to stop and look up syntax frequently.</p> <p>IMHO, cultivating a good memory is a good idea.</p> http://stackoverflow.com/questions/779800/a-gentler-introduction-to-functional-programming/780635#780635 3 Answer by Hideo for A Gentler Introduction to Functional Programming Hideo 2009-04-23T07:18:48Z 2009-04-23T07:18:48Z <p>I found this very gentle introduction to functional programming and more. Computer Science 61A - The Structure and Interpretation of Computer Programs <a href="http://webcast.berkeley.edu/course_details_new.php?seriesid=2008-D-26263&amp;semesterid=2008-D" rel="nofollow">http://webcast.berkeley.edu/course_details_new.php?seriesid=2008-D-26263&amp;semesterid=2008-D</a></p> <p>by Brian HARVEY from UC Berkeley. He uses a simplified version of Scheme.</p> http://stackoverflow.com/questions/736749/what-is-your-psychological-type-according-to-the-myers-briggs-type-indicator -4 What is your Psychological Type according to the Myers-Briggs Type Indicator? [closed] Hideo 2009-04-10T04:57:56Z 2009-04-10T05:08:12Z <h3>Duplicate: <a href="http://stackoverflow.com/questions/102702/are-people-with-certain-myers-briggs-personality-types-drawn-to-careers-in-progra">Are people with certain Myers Briggs personality types drawn to careers in programming/development?</a></h3> <p><hr /></p> <p>Mine is INTJ.</p> http://stackoverflow.com/questions/736668/what-programming-basics-should-i-learn/736742#736742 3 Answer by Hideo for What programming basics should I learn? Hideo 2009-04-10T04:52:18Z 2009-04-10T04:52:18Z <p>A very important basic programming skill is the ability to think at many different levels of abstraction and to know when and which level of abstraction is the most appropriate for a particular programming task.</p> http://stackoverflow.com/questions/736441/ive-decided-i-want-to-become-a-programmer-but-i-have-some-concerns-or-what-d/736726#736726 0 Answer by Hideo for I've decided I want to become a programmer, but I have some concerns.. Or, What does it take to become a computer programmer? Hideo 2009-04-10T04:45:31Z 2009-04-10T04:45:31Z <p>I agree with you JP.</p> <p>Mediocre programmers are many compared to the talented ones.</p> <p>That's just the way it is, even in other professions, i.e. lawyers, doctors, engineers, etc.</p> http://stackoverflow.com/questions/736370/what-is-programming/736716#736716 0 Answer by Hideo for What is programming? Hideo 2009-04-10T04:39:13Z 2009-04-10T04:39:13Z <p>Programming is also about modelling real world problems in a computer so as to enable us to study the problems and try to find ways to solve them.</p> http://stackoverflow.com/questions/866499/is-being-a-programmer-a-younger-persons-job/866523#866523 Comment by Hideo on Is being a programmer a younger person's job? Hideo 2009-05-15T00:41:55Z 2009-05-15T00:41:55Z You are right. I know old coders who only need 4 hours. Why waste time with 15 hours? Ha Ha http://stackoverflow.com/questions/866304/long-term-memorization-techniques-to-become-an-expert-in-the-field Comment by Hideo on Long-term memorization techniques to become an expert in the field? Hideo 2009-05-14T23:29:05Z 2009-05-14T23:29:05Z Thanks for the useful link. http://stackoverflow.com/questions/828314/programming-education-career/828320#828320 Comment by Hideo on programming education & career Hideo 2009-05-06T07:27:16Z 2009-05-06T07:27:16Z It would be more helpful, if someone lists the general programming concepts that any beginner should know. http://stackoverflow.com/questions/818937/how-can-i-get-addicted-to-programming/818958#818958 Comment by Hideo on How can I get addicted to programming? Hideo 2009-05-04T07:00:27Z 2009-05-04T07:00:27Z IMHO, there is no such thing as addicted to programming. It is called passion. http://stackoverflow.com/questions/818155/sqlite-alternatives-for-c/818275#818275 Comment by Hideo on SQLite Alternatives for C++ Hideo 2009-05-04T00:52:24Z 2009-05-04T00:52:24Z +1 for you. Wise words. http://stackoverflow.com/questions/781828/how-to-deal-with-requests-for-ridiculous-functionality-in-your-software/785266#785266 Comment by Hideo on How to deal with requests for ridiculous functionality in your software? Hideo 2009-04-24T10:25:34Z 2009-04-24T10:25:34Z +1 for your excellent post! http://stackoverflow.com/questions/784285/trying-to-get-started-in-c/784822#784822 Comment by Hideo on Trying to get started in C Hideo 2009-04-24T09:49:35Z 2009-04-24T09:49:35Z I don't use C++. I use solely C, so it matters to me. ;) I also use assembly language.