“The hardest thing in the world to understand is the income tax.”
– Albert Einstein

Archive for the ‘job’ Category


20
Mar

Question is, is there really a backup disk this size? Yes, I believe so!

Following this post written by John Eberly, mounting your Amazon S3 account as backup storage proves to be. Having this available disk space is synanymous to unlimited backup storage! Well, I haven’t really done it, but I’m gonna give it a try on my ubuntu machine.

19
Mar

S3 stands for “Amazon Simple Storage Service” in case you’re newer than I do. I only want to say in this post how incredibly cheap their service compared to any other backup / disk space service available out there.

screenshot

21
Feb

ihadajob

01
Sep

Excerpts from devshop creator Craig Fitzpatrick

Habit   Identified as
Estimating how long work takes => Time estimation error
Pure dev time versus fighting fires => Distraction rate
Premature speculation (we make a bunch of promises too early in the process when we don’t have enough information) => Schedule confidence
Requirements and schedule falling out of sync. => Tie requirements and designs to tasks / estimates
Not planning for change. => Turn / Context switching

Source : http://blip.tv/file/1200648

27
Aug

“You are not the only one who can read, write, understand and extend codes in this world”

Well this line does not only help you to understand how you get replaced by someone else better than you. But it also helps you leave your post and get rid of your boss! :D

20
Aug

How would you feel knowing what you worked hard for hours, tried so much to have a well formatted code and indentions, suddenly gets reverted?! With all the feature elements were all gone! And this didn’t happen for the first time, but the second :( , what in heaven’s … !!!

08
Aug

I just got the most weirdest comment made on WordPress today, that is:

(Email)
I’ve had a play with 2.6 it still isn’t an advance on the current live versions that we’re currently using

(IM)
i’m shockled how much i hate the new version

What?!!! When did any given group of developers or software companies created a new version of their product that is worse than the previous one? Especially WordPress, having a great attention these days.

Simply compare the two versions “Create New Post” page

05
Aug

Gonna redo my work, urrrrrggghh!

  • Thumbnail editor
  • Models RSS
  • Main RSS
  • VXS Banner RSS

Still have an AI integration on the other, :( (

01
Aug

Its the end of the month, payday on my part time job. And this is 50++ hours of work, isn’t that nice? I got it cash, though quite a hazard walking with this on the streets, they release it on time. Most especially, they’re happy with how I did.

Yes, we’re both happy. I’m thinking, this seems about 8 hours the entire week, hmmmmmm. I can do better, can I?

29
Jul

I installed this cool All in One SEO Pack plugin but I noticed the rendered header tags has two entries for meta description and meta keywords. If you haven’t moved your tags in the header template, those are the first meta pair from your current theme. The other two were generated by the All in One SEO Pack plugin.

To keep this from duplicating, which I’m not sure if having two versions of these metas is good or bad, I added condition in my header template to disable the static metas from my current theme.

1
2
3
4
5
6
7
8
9
<?php
if (!class_exists("All_in_One_SEO_Pack")) 
{ # move these metas here 
?>
<meta name="keywords" content="......" />
<meta name="description" content="......"/>
<?php
} 
?>

And if you deactivate the plugin, these hardcoded metas from your plugin will work instead.