User RFelix - Stack Overflow most recent 30 from stackoverflow.com 2009-12-17T07:05:24Z http://stackoverflow.com/feeds/user/10582 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/538921/can-i-stop-cakephp-fetching-all-rows-for-a-query/1670969#1670969 0 Answer by RFelix for Can I stop CakePHP fetching all rows for a query? RFelix 2009-11-04T00:07:03Z 2009-11-04T00:07:03Z <p>You can either limit the find method call with the recursive param (<a href="http://api.cakephp.org/class/model#method-Modelfind" rel="nofollow">API for Model#find</a>) or you can unbind model associations on the fly and reduce the amount of data retrieved (<a href="http://book.cakephp.org/view/86/Creating-and-Destroying-Associations-on-the-Fly" rel="nofollow">Creating and Destroying Associations on the Fly</a>)</p> http://stackoverflow.com/questions/906309/what-is-a-good-way-to-conduct-a-group-kata/1549690#1549690 0 Answer by RFelix for What is a good way to conduct a Group Kata? RFelix 2009-10-11T02:38:07Z 2009-10-11T02:38:07Z <p>There's a Paper that talks about implementing a Coding Dojo and the things that the authors learnt during that time. Here's the link to the Paper: <a href="http://www.dtsato.com/blog/wp-content/uploads/2008/06/sato-codingdojo.pdf" rel="nofollow">Coding Dojo: an environment for learning and sharing Agile practices</a></p> http://stackoverflow.com/questions/1538435/ruby-oop-practice-problem-and-solution-set-for-beginners/1549552#1549552 0 Answer by RFelix for ruby oop practice problem and solution set for beginners RFelix 2009-10-11T01:13:24Z 2009-10-11T01:13:24Z <p>I don't know if this will help, but have you taken a look at <a href="http://github.com/edgecase/ruby%5Fkoans" rel="nofollow">Ruby Koans</a>?. If nothing else, I had some fun resolving the problems, they're good for a beginner. Plus it has some free form projects that you can do any way you like, especially the last (extra credit) project which is to implement the GREED game.</p> <p>With regards to solutions, well, you could always look at the way I solved the problems at <a href="http://github.com/rfelix/ruby%5Fkoans" rel="nofollow">my github repo</a>, but I dare say they're the best solutions. I'm sure there are many others available, just look at the people that forked the original repository.</p> http://stackoverflow.com/questions/332831/php-best-practices-for-naming-conventions/942097#942097 1 Answer by RFelix for PHP best practices for naming conventions RFelix 2009-06-02T21:54:20Z 2009-06-02T21:54:20Z <p>I found this link for a PHP Coding Standard that doesn't look too bad: <a href="http://www.dagbladet.no/development/phpcodingstandard/" rel="nofollow">http://www.dagbladet.no/development/phpcodingstandard/</a></p> http://stackoverflow.com/questions/416963/using-google-to-find-programming-answers-does-locale-matter/417061#417061 2 Answer by RFelix for Using Google to find programming answers (does locale matter)? RFelix 2009-01-06T15:54:48Z 2009-01-06T15:54:48Z <p>I live in Portugal and so whenever I go to google.com it defaults to google.pt. But that never stopped me from finding most of the answers I've searched for. In my experience, when I search for stuff in english, english results appear. If I write the search query in portuguese, results from portuguese sites appear. That's all. So they should be able to find the answers that you do. Another factor that may influence they searching ability is their command of written english. Or maybe their Google-Fu is just weak =)</p> http://stackoverflow.com/questions/164902/whats-a-good-hosted-project-management-solution/165292#165292 1 Answer by RFelix for What's a good hosted project management solution? RFelix 2008-10-03T00:58:29Z 2008-10-03T00:58:29Z <p>There's another called <a href="http://unfuddle.com/" rel="nofollow">Unfuddle</a> which I came across the other day.</p> http://stackoverflow.com/questions/8921/how-can-you-tell-whether-youre-ready-to-start-your-own-blog/110809#110809 2 Answer by RFelix for How can you tell whether you're ready to start your own blog? RFelix 2008-09-21T11:31:56Z 2008-09-21T11:31:56Z <p>Read this post from Jay Fields: <a href="http://blog.jayfields.com/2008/08/be-your-start-up.html" rel="nofollow">Be Your Startup</a>. It will give you a few pointers and maybe inspire you.</p> http://stackoverflow.com/questions/86734/what-is-the-single-best-typing-tutor-for-linux-please-only-one-program-per-answ/110806#110806 0 Answer by RFelix for What is the single best typing tutor for Linux? (Please only one program per answer) RFelix 2008-09-21T11:28:16Z 2008-09-21T11:28:16Z <p>Here's a cool online app to help you: <a href="http://www.typingweb.com/" rel="nofollow">Typing Web</a> It has loads of lessons and exercises for you to practice and keeps statistics so that you can see how well you are progressing. Plus it has a few typing games that you can play around with when you are bored with all the lessons.</p> http://stackoverflow.com/questions/72879/refactoring-in-ruby/86567#86567 0 Answer by RFelix for Refactoring in Ruby RFelix 2008-09-17T19:16:10Z 2008-09-18T00:13:03Z <p>There's also <a href="http://www.codegear.com/products/3rdrail" rel="nofollow">3rdRail</a> from CodeGear (from Delphi fame). The only catch is that it's not free.</p> http://stackoverflow.com/questions/62188/stack-overflow-code-golf/70950#70950 1 Answer by RFelix for Stack overflow code golf RFelix 2008-09-16T10:14:39Z 2008-09-16T10:14:39Z <p>Here's another Ruby answer, this one uses lambdas:</p> <pre><code>(a=lambda{a.call}).call </code></pre> http://stackoverflow.com/questions/67069/how-to-actually-use-a-source-control-system/68369#68369 1 Answer by RFelix for How to actually use a source control system? RFelix 2008-09-16T00:55:56Z 2008-09-16T00:55:56Z <p>I would recommend a distributed version control system (mercurial, git, bazaar, darcs) rather than a centralized version control system (cvs, svn). They're much easier to setup and work with.</p> <p>Try mercurial (which is the VCS that I used to understand how version control works) and then if you like you can even move to git.</p> <p>There's a really nice introductory tutorial on Mercurial's homepage: <a href="http://www.selenic.com/mercurial/wiki/index.cgi/UnderstandingMercurial" rel="nofollow">Understanding Mercurial</a>. That will introduce you to the basic concepts on VCS and how things work. It's really great. After that I suggest you move on to the Mercurial tutorials: <a href="http://www.selenic.com/mercurial/wiki/index.cgi/Tutorial" rel="nofollow">Mercurial tutorial page</a>, which will teach you how to actually use Mercurial. Finally, you have a free ebook that is a really great reference on how to use Mercurial: <a href="http://hgbook.red-bean.com/" rel="nofollow">Distributed Revision Control with Mercurial</a></p> <p>If you're feeling more adventurous and want to start off with Git straight away, then this free ebook is a great place to start: <a href="http://www-cs-students.stanford.edu/~blynn/gitmagic/" rel="nofollow">Git Magic</a> (Very easy read)</p> <p><strong>In the end</strong>, no matter what VCS tool you choose, what you'll end up doing is the following:</p> <ol> <li>Have a repository that you don't manually edit, it only for the VCS</li> <li>Have a working directory, where you make your changes as usual.</li> <li>Change what you like, press F5 as many times as you wish. When you like what you've done and think you would like to save the project the way it is at that very moment (much like you would do when you're, for example, writing something in Word) you can then commit your changes to the repository.</li> <li>If you ever need to go back to a certain state in your project you now have the power to do so.</li> </ol> <p>And that's pretty much it.</p> http://stackoverflow.com/questions/62188/stack-overflow-code-golf/68229#68229 0 Answer by RFelix for Stack overflow code golf RFelix 2008-09-16T00:25:46Z 2008-09-16T00:25:46Z <p>Ruby, albeit not that short:</p> <pre><code>class Overflow def initialize Overflow.new end end Overflow.new </code></pre> http://stackoverflow.com/questions/1669589/strcat-problem-in-c-segmentation-fault/1669618#1669618 Comment by RFelix on strcat problem in C, segmentation fault RFelix 2009-11-03T19:49:57Z 2009-11-03T19:49:57Z Just spotted another problem: the string termination character is <code>'\0'</code> and not <code>'/0'</code>. Instead of using <code>strcat</code> to terminate the string, you can just directly assign it like so: <code>argvalues[i-1] = '\0'</code> http://stackoverflow.com/questions/1669589/strcat-problem-in-c-segmentation-fault/1669618#1669618 Comment by RFelix on strcat problem in C, segmentation fault RFelix 2009-11-03T19:47:23Z 2009-11-03T19:47:23Z This answer pretty much sums it up. I'd just like to bring to your attention another problem in the if block that isn't executed: <code>argvalues[i-1]</code>, watch out when i is 0, cause then you'll get another segfault. And if you're already using a hard-coded value for the size of the string, why not just use <code>MAXARGS</code> in the loop? http://stackoverflow.com/questions/1666353/is-typedef-and-define-the-same-in-c/1666375#1666375 Comment by RFelix on Is typedef and #define the same in c? RFelix 2009-11-03T14:18:42Z 2009-11-03T14:18:42Z In the #define example, only the first variable is a pointer because of the way #define works. It's just a &quot;dumb&quot; preprocessor that substitutes one thing for another. In that example, <code>int&#95;p2</code> is just replaced with <code>int&#42;</code>, producing: <code>int&#42; a, b, c</code>, which should be read as <code>int &#42;a, b, c</code>. http://stackoverflow.com/questions/1538435/ruby-oop-practice-problem-and-solution-set-for-beginners/1549552#1549552 Comment by RFelix on ruby oop practice problem and solution set for beginners RFelix 2009-10-11T01:15:03Z 2009-10-11T01:15:03Z There's also the Code Katas (<a href="http://codekata.pragprog.com" rel="nofollow">codekata.pragprog.com</a>) which seem pretty cool, but they don't have any solutions. Maybe you can use them when your beginner reaches the intermediate level? http://stackoverflow.com/questions/1126239/git-or-subversion-for-binary-files/1126312#1126312 Comment by RFelix on Git or Subversion for binary files RFelix 2009-07-16T23:54:32Z 2009-07-16T23:54:32Z There are also visual tools for Git &#224;-la TortoiseSVN: TortoiseGit and GitCheetah. http://stackoverflow.com/questions/1112875/are-github-gems-less-stable-than-rubyforge-gems Comment by RFelix on Are github gems less stable than rubyforge gems? RFelix 2009-07-12T11:15:46Z 2009-07-12T11:15:46Z This doesn't answer your question, but in a blog post titled &quot;Don't forget Rubyforge&quot; (<a href="http://judofyr.net/posts/dont-forget-about-rubyforge.html" rel="nofollow">judofyr.net/posts/dont-forget-about-rubyforge.html/&hellip;</a>), the author talks about using Rubyforge gem server for regular releases and about some hassles that come with using github as a gem server. http://stackoverflow.com/questions/377213/git-serve-i-would-like-it-that-simple/377293#377293 Comment by RFelix on git serve: i would like it that simple RFelix 2009-07-07T16:08:44Z 2009-07-07T16:08:44Z You can add the command as an alias to you .gitconfig file as described here: <a href="http://git.or.cz/gitwiki/Aliases#Serverepoonthespot" rel="nofollow">git.or.cz/gitwiki/Aliases#Serverepoonthespot/&hellip;</a> http://stackoverflow.com/questions/738487/hgignore-for-a-cakephp-application/896960#896960 Comment by RFelix on .hgignore for a CakePHP application? RFelix 2009-06-11T16:03:32Z 2009-06-11T16:03:32Z That is exactly what I do when using CakePHP, but I use Git and not Mercurial. This way the folder structure is maintained but the actual contents of the directories are not saved.