<?xml version="1.0" encoding="UTF-8"?><rss version="2.0" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:sy="http://purl.org/rss/1.0/modules/syndication/" > <channel><title>Comments on: Learning How to Develop? Get These Tips First!</title> <atom:link href="http://techcores.com/2010/05/learning-how-to-develop-get-these-tips-first/feed/" rel="self" type="application/rss+xml" /><link>http://techcores.com/2010/05/learning-how-to-develop-get-these-tips-first/</link> <description>The Ultimate Source for Technology</description> <lastBuildDate>Wed, 23 May 2012 07:26:45 +0000</lastBuildDate> <sy:updatePeriod>hourly</sy:updatePeriod> <sy:updateFrequency>1</sy:updateFrequency> <item><title>By: Taylor Jasko</title><link>http://techcores.com/2010/05/learning-how-to-develop-get-these-tips-first/comment-page-1/#comment-1682</link> <dc:creator>Taylor Jasko</dc:creator> <pubDate>Thu, 03 Jun 2010 21:38:17 +0000</pubDate> <guid isPermaLink="false">http://techcores.com/?p=4648#comment-1682</guid> <description>&lt;p&gt;Ohh wow, you come from a tough background. For sure writing optimized code helps a lot, I would think for the compiling time too.&lt;/p&gt; &lt;p&gt;I haven&#039;t done much with Perl, but I do get what you mean. If you write something that isn&#039;t optimized, especially in Perl, things can slow down a lot.&lt;/p&gt; &lt;p&gt;That&#039;s true. And in fact, they&#039;re open source, which all programmers love. I guess it depends on the programmer. More modern programs help a lot with searching through code too.&lt;/p&gt;</description> <content:encoded><![CDATA[<p>Ohh wow, you come from a tough background. For sure writing optimized code helps a lot, I would think for the compiling time too.</p><p>I haven&#8217;t done much with Perl, but I do get what you mean. If you write something that isn&#8217;t optimized, especially in Perl, things can slow down a lot.</p><p>That&#8217;s true. And in fact, they&#8217;re open source, which all programmers love. I guess it depends on the programmer. More modern programs help a lot with searching through code too.</p> ]]></content:encoded> </item> <item><title>By: 80h</title><link>http://techcores.com/2010/05/learning-how-to-develop-get-these-tips-first/comment-page-1/#comment-1660</link> <dc:creator>80h</dc:creator> <pubDate>Sat, 29 May 2010 10:54:08 +0000</pubDate> <guid isPermaLink="false">http://techcores.com/?p=4648#comment-1660</guid> <description>while it is true that much of the work can be done for you nowadays, i still assert that it is important to understand the underlying concepts of what you are doing. i come from a background of doing 386 assembly and C, so i am able to write super optimized code for what i do now in a higher level language.   for example, in perl there are modules like DBIx::Class that abstract away the details of interfacing with database entirely. on small scale projects you can get away with writing little to no SQL at all for doing CRUD work. however, on large scale high traffic sites this can become  a huge bottleneck if you are relying on the system to do so much of the work. this is why i am stressing the point so much of knowing exactly how the computer does what it does, so when it comes time you can write code that runs fast and efficiently. you can only benefit from it.   while vi, vim and emacs arent new by any standard, there is a reason they are still widely used today. for one, they are all free, and all use highly customizable key combinations to perform pretty much all the actions that youd ever wish to use. after using them for a short time they become second nature, and this allows for maximum efficiency with no time spent searching through a GUIs menus for a specific option. also, in emacs you can check your email, read news feeds like usenet, play games, etc.</description> <content:encoded><![CDATA[<p>while it is true that much of the work can be done for you nowadays, i still assert that it is important to understand the underlying concepts of what you are doing. i come from a background of doing 386 assembly and C, so i am able to write super optimized code for what i do now in a higher level language.<br />  <br /> for example, in perl there are modules like DBIx::Class that abstract away the details of interfacing with database entirely. on small scale projects you can get away with writing little to no SQL at all for doing CRUD work. however, on large scale high traffic sites this can become  a huge bottleneck if you are relying on the system to do so much of the work. this is why i am stressing the point so much of knowing exactly how the computer does what it does, so when it comes time you can write code that runs fast and efficiently. you can only benefit from it.<br />  <br /> while vi, vim and emacs arent new by any standard, there is a reason they are still widely used today. for one, they are all free, and all use highly customizable key combinations to perform pretty much all the actions that youd ever wish to use. after using them for a short time they become second nature, and this allows for maximum efficiency with no time spent searching through a GUIs menus for a specific option. also, in emacs you can check your email, read news feeds like usenet, play games, etc.</p> ]]></content:encoded> </item> <item><title>By: Taylor Jasko</title><link>http://techcores.com/2010/05/learning-how-to-develop-get-these-tips-first/comment-page-1/#comment-1657</link> <dc:creator>Taylor Jasko</dc:creator> <pubDate>Sat, 29 May 2010 03:41:05 +0000</pubDate> <guid isPermaLink="false">http://techcores.com/?p=4648#comment-1657</guid> <description>&lt;p&gt;Ohh yes, tabs can drive people nuts at some times.&lt;/p&gt; &lt;p&gt;When it comes to poor spacing, I can completely agree. I come from, like I&#039;ve said, a big web developer. And when developing for the web, you have many nested things. Spacing is crucial in any language!&lt;/p&gt; &lt;p&gt;Typically, I try to get away from those one liners. It&#039;s just messy and hard to edit if you need to.&lt;/p&gt; &lt;p&gt;Computer programming is for sure like MIT Press has said. It&#039;s like writing a book; it needs to make sense. If you throw all your variables in between code, that&#039;s really bad to do, Instead, most devs (if not all) throw them at the very top or in the header file.&lt;/p&gt; &lt;p&gt;Knowing I/O is pretty crucial, but most of the compilers (if the code needs to be compiled, unlike PHP) nowadays optimize for the best I/O performance. In the old days, it was really needed to learn basic I/O, but now, the compiler really takes care of it all for you. If some of your code isn&#039;t optimized, the compiler will try its best to make it. But when it comes to used switch statements of if statements, the compiler won&#039;t do that.&lt;/p&gt; &lt;p&gt;Yeah, future planning is critical when programming. Expandability is so important, that companies pay so much money for that kind of stuff. Writing it down on paper helps, but simply just jot down a note using ShoveBox on my Mac.&lt;/p&gt; &lt;p&gt;VI and VIM just seem like really old editors. Yeah, it&#039;s for the Linux platform, but seriously, I love Notepad++ on Windows. VIM is okay, but it could be a lot better. I&#039;m on a Mac, so of course I use some different programs.&lt;/p&gt;</description> <content:encoded><![CDATA[<p>Ohh yes, tabs can drive people nuts at some times.</p><p>When it comes to poor spacing, I can completely agree. I come from, like I&#8217;ve said, a big web developer. And when developing for the web, you have many nested things. Spacing is crucial in any language!</p><p>Typically, I try to get away from those one liners. It&#8217;s just messy and hard to edit if you need to.</p><p>Computer programming is for sure like MIT Press has said. It&#8217;s like writing a book; it needs to make sense. If you throw all your variables in between code, that&#8217;s really bad to do, Instead, most devs (if not all) throw them at the very top or in the header file.</p><p>Knowing I/O is pretty crucial, but most of the compilers (if the code needs to be compiled, unlike PHP) nowadays optimize for the best I/O performance. In the old days, it was really needed to learn basic I/O, but now, the compiler really takes care of it all for you. If some of your code isn&#8217;t optimized, the compiler will try its best to make it. But when it comes to used switch statements of if statements, the compiler won&#8217;t do that.</p><p>Yeah, future planning is critical when programming. Expandability is so important, that companies pay so much money for that kind of stuff. Writing it down on paper helps, but simply just jot down a note using ShoveBox on my Mac.</p><p>VI and VIM just seem like really old editors. Yeah, it&#8217;s for the Linux platform, but seriously, I love Notepad++ on Windows. VIM is okay, but it could be a lot better. I&#8217;m on a Mac, so of course I use some different programs.</p> ]]></content:encoded> </item> <item><title>By: Ryan</title><link>http://techcores.com/2010/05/learning-how-to-develop-get-these-tips-first/comment-page-1/#comment-1656</link> <dc:creator>Ryan</dc:creator> <pubDate>Sat, 29 May 2010 03:00:26 +0000</pubDate> <guid isPermaLink="false">http://techcores.com/?p=4648#comment-1656</guid> <description>Can someone teach me to develop I know many things about tech but developing is not one of them.</description> <content:encoded><![CDATA[<p>Can someone teach me to develop I know many things about tech but developing is not one of them.</p> ]]></content:encoded> </item> <item><title>By: 80h</title><link>http://techcores.com/2010/05/learning-how-to-develop-get-these-tips-first/comment-page-1/#comment-1641</link> <dc:creator>80h</dc:creator> <pubDate>Wed, 26 May 2010 03:59:12 +0000</pubDate> <guid isPermaLink="false">http://techcores.com/?p=4648#comment-1641</guid> <description>of course everyone is different, but things like customizations of a text editor as i said are trivial and  should come later once you get comfortable with whatever it is you are learning. i saw the title of the post was &#039;learning how to develop&#039; so i thought id share a few tips. as far as soft tabs go (this means 4 spaces rather than an actual \t), if you are working on a collaborative project with professionals and use tabs in source files it will drive them nuts. proper spacing and indentation of blocks and statements is definitely a habit to get into, logicallly seperating them and making them easier to read (most higher level languages dont care too much about whitespace in the code unless its inside a string of course) like so: sub foo { my $bar = 1; return $bar; } ^ is easier to read than sub foo{my $bar=1;return $bar;} to reference &quot;Structure and Interpretation of Computer Programs&quot; - MIT Press, &quot;..we want to establish the idea that a computer language is not just a way of getting a computer to perform operations but rather that it is a novel formal medium for expressing ideas about methodology. Thus, programs must be written for people to read, and only incidentally for machines to execute.&quot; understanding how basic input and output works with a computer is the foundation of its entire functionality, thus it is arguably vital to understand it before you begin trying to write instructions for the computer to perform. the less superficial an understanding you have of the computer the better, the coding can come later. also just for example, something like planning out your applications functionality ahead of time and getting it down on paper can save you alot of guesswork in the long run. vi and vim are both text editors for the gnu/linux platform, with vim being the alleged &#039;improved&#039; and newer  yet seperate version (or rather a derivative) of vi . i know people who use both.</description> <content:encoded><![CDATA[<p>of course everyone is different, but things like customizations of a text editor as i said are trivial and  should come later once you get comfortable with whatever it is you are learning. i saw the title of the post was &#8216;learning how to develop&#8217; so i thought id share a few tips.<br /> as far as soft tabs go (this means 4 spaces rather than an actual \t), if you are working on a collaborative project with professionals and use tabs in source files it will drive them nuts. proper spacing and indentation of blocks and statements is definitely a habit to get into, logicallly seperating them and making them easier to read (most higher level languages dont care too much about whitespace in the code unless its inside a string of course) like so:<br /> sub foo {<br /> my $bar = 1;<br /> return $bar;<br /> }<br /> ^ is easier to read than<br /> sub foo{my $bar=1;return $bar;}<br /> to reference &#8220;Structure and Interpretation of Computer Programs&#8221; &#8211; MIT Press, &#8220;..we want to establish the idea that a computer language is not just a way of getting a computer to perform operations but rather that it is a novel formal medium for expressing ideas about methodology. Thus, programs must be written for people to read, and only incidentally for machines to execute.&#8221;<br /> understanding how basic input and output works with a computer is the foundation of its entire functionality, thus it is arguably vital to understand it before you begin trying to write instructions for the computer to perform. the less superficial an understanding you have of the computer the better, the coding can come later. also just for example, something like planning out your applications functionality ahead of time and getting it down on paper can save you alot of guesswork in the long run.<br /> vi and vim are both text editors for the gnu/linux platform, with vim being the alleged &#8216;improved&#8217; and newer  yet seperate version (or rather a derivative) of vi . i know people who use both.</p> ]]></content:encoded> </item> <item><title>By: Taylor Jasko</title><link>http://techcores.com/2010/05/learning-how-to-develop-get-these-tips-first/comment-page-1/#comment-1638</link> <dc:creator>Taylor Jasko</dc:creator> <pubDate>Wed, 26 May 2010 03:14:31 +0000</pubDate> <guid isPermaLink="false">http://techcores.com/?p=4648#comment-1638</guid> <description>&lt;p&gt;Hmm, well, it&#039;s everyone&#039;s opinion. Every dev is different.&lt;/p&gt; &lt;p&gt;I&#039;m not so thrilled on tabs for developing apps. For web-dev, I think they&#039;re great, but when designing an app, not too much.&lt;/p&gt; &lt;p&gt;I believe you meant Vim than Vi.&lt;/p&gt; &lt;p&gt;And just to inform you, it&#039;s not learning how to develop, it&#039;s tips to learning how to really work with those dev tools. Learning basic I/O is a great foundation to start on, but how you code is just as important...&lt;/p&gt; &lt;p&gt;The best thing to start of with programming would probably simply be a &quot;dummies&quot; book. I wouldn&#039;t even try to start off with learning a language. Probably just the programming theory first of all then start learning a language and applying the basics you&#039;ve learned to a new language.&lt;/p&gt; &lt;p&gt;Well obviously background color, fonts, and syntax colors are trivial. But the thing is, you don&#039;t know how many beginning devs don&#039;t know that you can change that. Like for example, I hate any orange syntax color. Every dev is different. :)&lt;/p&gt;</description> <content:encoded><![CDATA[<p>Hmm, well, it&#8217;s everyone&#8217;s opinion. Every dev is different.</p><p>I&#8217;m not so thrilled on tabs for developing apps. For web-dev, I think they&#8217;re great, but when designing an app, not too much.</p><p>I believe you meant Vim than Vi.</p><p>And just to inform you, it&#8217;s not learning how to develop, it&#8217;s tips to learning how to really work with those dev tools. Learning basic I/O is a great foundation to start on, but how you code is just as important&#8230;</p><p>The best thing to start of with programming would probably simply be a &#8220;dummies&#8221; book. I wouldn&#8217;t even try to start off with learning a language. Probably just the programming theory first of all then start learning a language and applying the basics you&#8217;ve learned to a new language.</p><p>Well obviously background color, fonts, and syntax colors are trivial. But the thing is, you don&#8217;t know how many beginning devs don&#8217;t know that you can change that. Like for example, I hate any orange syntax color. Every dev is different. <img src='http://cdn.techcores.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /></p> ]]></content:encoded> </item> <item><title>By: 80h</title><link>http://techcores.com/2010/05/learning-how-to-develop-get-these-tips-first/comment-page-1/#comment-1632</link> <dc:creator>80h</dc:creator> <pubDate>Tue, 25 May 2010 11:55:24 +0000</pubDate> <guid isPermaLink="false">http://techcores.com/?p=4648#comment-1632</guid> <description>ehhh, i wouldnt say really any of these things are important at all when learning to design applications. as far as a good text editor goes, one with soft tabs like emacs or vi is always good but this is really the last thing you should worry about. these are all very trivial, understanding things like the call stack and how basic i/o works on a low level will give you a good foundation to grow on. having someone think about the computer in an even more abstract way wont help.</description> <content:encoded><![CDATA[<p>ehhh, i wouldnt say really any of these things are important at all when learning to design applications. as far as a good text editor goes, one with soft tabs like emacs or vi is always good but this is really the last thing you should worry about. these are all very trivial, understanding things like the call stack and how basic i/o works on a low level will give you a good foundation to grow on. having someone think about the computer in an even more abstract way wont help.</p> ]]></content:encoded> </item> </channel> </rss>
<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Minified using memcached
Page Caching using memcached
Database Caching 4/13 queries in 0.005 seconds using memcached
Object Caching 346/352 objects using memcached
Content Delivery Network via cdn.techcores.com

Served from: techcores.com @ 2012-05-23 08:29:11 -->
