@EyeDevs

1 Comment

In case you didn’t know, I am now part of the EyeDevs team (I joined a month or so ago, actually). More

Merry Christmas

No Comments

Merry Christmas and a happy new year for everybody.

Happy 20th birthday to me!

4 Comments

December 9, it’s my 20th birtdhay! And what a better present than releasing a widely expected app that has been a success on the iPhone Jailbreaking scene.

A big thank you to all of you who did buy the app, and for those who didn’t, consider doing it if you like it! We’re not a big company (we’re not a company at all!), and it would encourage us to bring you updates and more cool apps (Our apps are only getting better!).

Either way, enjoy it!

Useful Documents

No Comments

This was a page, but I decided that it was too cluttered, so I decided to make it a post.

Here are some PDFs that have been really helpful to me, I have not bought any books or anything. I did take a course on basic C, and I’m also being teached Java at school.

Blog Conventions

No Comments

This is like an introduction to understand this blog’s types of text better:

Types of Text:

//Comments
if([postText isSourceCode]){
}
"Strings"
$ [Terminal Input]

How I write code

This are the “rules” I follow when writing code:

1
2
3
4
5
6
7
8
//Camel-cased object names, no spaces before '['.
UILabel *myLabel = [[UILabel alloc] init];
if(condition){ //Brackets in the same line
/*if there are a lot of things nested, sometimes I comment
after the bracket to know what it closes, also in special
ocations like class/interface declarations*/

} //if
rect = CGRectMake(0.0f, 0.0f, 320.0f, 460.0f); //Spaces after comas, but not before.

Terms

iDevice – With this I refer to the iPod Touch or iPhone, whichever you are using

I’ll add more as I need them.