Silverlight Workshop for Imagine Cup Malaysia 2010

Standard

24 / 04 / 2010

Thank god my team has been selected to final competition for Imagine Cup Malaysia 2010 that will held at Langkawi .

So I received email from Microsoft about Silverlight workshop . They said they are going to teach the basics of Silverlight and also UX (User eXperience) element so that we the participants can make full use of the technologies / techniques for the final .

Frankly speaking I want to go to Barcamp that day instead of going to this event .. *really sad *

Anyway , I’m going to KLCC with finafedora as she accompanied me until the big Elevator and she went back home to settle her stuff . As for the rest of UTeM participants , they all went by bus all the way from Malacca .

Enjoy the pics ^_^

Wish me luck for this competition .. ^__^

Credits to Badrun for the pics . Enjoy the rest of the pics here .

Selamat Harijadi yang ke 22

Standard

Saya sudah berumur 22 tahun !!!

Terima kasih pada semua yang wish .. ^__^

Walaupun beli kek untuk diri sendiri … ada gak satu awek ni nyanyi lagu happy birthday untuk aku .. tq ~!!

p/s : sedang dalam mood exam .. lepas tu sibuk pula dengan kerja .. sila buat temujanji dahulu kalau nak berjumpa 🙂

Salah satu soalan teknikal kepada bakal programmer

Standard

Saya terjumpa article Using FizzBuzz to Find Developers who Grok Coding || http://bit.ly/55vtKo iaitu artikel mengenai bagaimana untuk mengenal pasti sama ada individu tersebut boleh membuat programming atau tidak ..

Jadi , disebabkan tension dengan projek final sem dan juga kekurangan masa untuk membuat kerja ofis , tetiba semangat plak nak jawab soalan ni .. Below are my answer for this FizzBuzz question using PHP.

for($i=0; $i <= 100 ; $i++)
{

if($i % 3 == 0 || $i % 5 == 0)
{
if($i % 3 == 0)
{
echo "fizz";
}
if($i % 5 == 0)
{
echo "buzz ";
}
}
else
{
echo $i;
}
echo " < b r / >";
}
?>

Since aku tengok baru – baru ni  ramai budak – budak MMU hantar surat mintak praktikal di AIST … rasa macam nak usulkan soalan ni sebagai soalan interview kat boss .. hehe

Learning Git

Standard

At AIST , we are using SVN …. reason ? it’s not worth using distributed source code version control since the one who always touch the codes is most likely 3 to 4 people .. and each people manage their own project .. so no stepping each other toes ..

Studying full time and working part time is really pain in the ass .. especially managing your time .. when I’m doing my work , if let say I need to fix some bugs and i do it half way .. i always tend to just leave it and get back working later .. and sometimes i just couldnt remember what is my last changes in the code ..

I’m quite afraid to commit every single 5 – 10 minutes bugs since I thought .. I better commit all the changes when I’m done everything .. therefore .. after reading and researching about git / mercurial .. I decide to try Git … make every changes (especially small changes ) at my local repository and after successfully merge everything  .. I will push it to SVN (the one and and only main repo ) ..

So this is some good resources that I found to learn about Git and Mercurial ..

Tech Talk: Linus Torvalds on git

http://hoth.entp.com/output/git_for_designers.html

http://progit.org/

http://git-scm.com/documentation

http://www.spheredev.org/wiki/Git_for_the_lazy

http://hginit.com/