RFelix
|
Registered User
|
I'm a South African living in Portugal taking my Master's in Computer and IT Engineering at IST. You can find more info at my website: RFelix.com
|
|
Nov 4 |
answered | Can I stop CakePHP fetching all rows for a query? |
|
Nov 3 |
comment |
strcat problem in C, segmentation fault Just spotted another problem: the string termination character is '\0' and not '/0'. Instead of using strcat to terminate the string, you can just directly assign it like so: argvalues[i-1] = '\0' |
|
Nov 3 |
comment |
strcat problem in C, segmentation fault 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: argvalues[i-1], 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 MAXARGS in the loop? |
|
Nov 3 |
comment |
Is typedef and #define the same in c? In the #define example, only the first variable is a pointer because of the way #define works. It's just a "dumb" preprocessor that substitutes one thing for another. In that example, int_p2 is just replaced with int*, producing: int* a, b, c, which should be read as int *a, b, c. |
|
Oct 11 |
answered | What is a good way to conduct a Group Kata? |
|
Oct 11 |
comment |
ruby oop practice problem and solution set for beginners There's also the Code Katas (codekata.pragprog.com) which seem pretty cool, but they don't have any solutions. Maybe you can use them when your beginner reaches the intermediate level? |
|
Oct 11 |
answered | ruby oop practice problem and solution set for beginners |
|
Jul 16 |
comment |
Git or Subversion for binary files There are also visual tools for Git à-la TortoiseSVN: TortoiseGit and GitCheetah. |
|
Jul 12 |
comment |
Are github gems less stable than rubyforge gems? This doesn't answer your question, but in a blog post titled "Don't forget Rubyforge" (judofyr.net/posts/dont-forget-about-rubyforge.html/…), the author talks about using Rubyforge gem server for regular releases and about some hassles that come with using github as a gem server. |
|
Jul 7 |
comment |
git serve: i would like it that simple You can add the command as an alias to you .gitconfig file as described here: git.or.cz/gitwiki/Aliases#Serverepoonthespot/… |
|
Jun 11 |
comment |
.hgignore for a CakePHP application? 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. |
|
Jun 2 |
answered | PHP best practices for naming conventions |
