Archive for the 'Programming' Category
Forgetting to add “new” to the object reference initialization.
Forgetting to import.
That’s it for now. I’ll add more later.
The Java forum at Sun is really great. People are quick to respond and are very friendly–as long as you know how to ask properly.
I didn’t get the java programmer job at my top pick at well, it stings hehe. I’m laughing it off :).
But that doesn’t stop me from learning more about Java. [...]
Here are my thoughts at the moment:
Vertigo is scary.
I’m somewhat excited to learn how to program. How I dream to work in an IT related job.
Study Python, then PHP and get a job as a web programmer. It won’t happen right now and that way. Do it on the side.
What’ll happen: Get any job maybe [...]
It came to me. One of the reasons why it’s a little hard for me to learn to program is because I’m learning from e-books. Not that it’s not possible learning from e-books, it’s just inconvenient learning from them. My eyes hurt after reading for ours on the screen and so is my head.
There’s just [...]
Guess what? I got really lucky today and found an old copy of “The C Programming Language” AKA “K&R” in the 65 pesos ($1.41) bin of National Bookstore! And it’s priced at 30 pesos ($0.65). I grabbed it quickly securing it in my arms and now it’s mine! All mine! My very own copy! Mwahahaha!
I’ve been [...]
So I sucked it up and read “Learning Python” even though there are parts that doesn’t make sense and guess what. It’s good.
To tell you honestly I got stressed more by playing GTA2. This proves that I must be really a geek.
Ok now I understand why:
>>> l = [1,2,3] #let’s create a list of numbers
>>> l = l.append(4) #let’s add the integer 4 to make it exciting
>>> l
>>>#What gives?!?!? Where is my list?
It’s because the method append returns the value None. That’s why l becomes empty.
