some rules are dumb

pernah dengar kat uitm ni ade masa yang dilarang utk keluar masuk, kiranya mcm curfew la. pukul 12 tgh mlm - 6pagi. nampak macam bagus, tapi tak pun sebab ade student yg sanggup bermalam kat luar sebab tak boleh masuk kampus.

kalau yg ada kereta tu, park tepi kedai mamak 24jam pastu tidor. kalau takde kete, lepak je la kat mamak ke, cybercafe ke. mcm org homeless. rulesnya konon nak elakkan org keluar malam, tapi lagi memalukan universiti je sebab student tido bersepah.

ade je rules lain yg bodoh aku pernah encounter, seperti rules asrama yg tak bagi student outing ke bandar tanpa parents. bukan semua sekolah berasrama (ehem) ade rules ni, tapi yg ada, aku mmg takleh brain la. katakanlah student tu parents dia tinggal jauh, tak dpt bawa anak dia pergi outing, so nak suruh anak tu mereput kat asrama ke. nasib baik aku pindah after a few years kepada sekolah asrama yg cool gila, lepaskan student diorg merayau every weekend. tapi within time limit. at least nak beli barang keperluan pun lepas la.

nak dumb rules lagi? entah la tak terfikir pulak yg lain. kalau sesiapa ade buah fikiran roger2 la.

ROT13 Cipher in ruby

just finished doing ruby in codeacademy, now i want to try code some ruby. so i found out about ROT13 and decided to do a simple script on encrypting words to ROT13
puts "-- ROT 13 encrypter--"

def encrypter(x)
    z = case x
    when "a" then "n"
    when "b" then "o"
    when "c" then "p"
    when "d" then "q"
    when "e" then "r"
    when "f" then "s"
    when "g" then "t"
    when "h" then "u"
    when "i" then "v"
    when "j" then "w"
    when "k" then "x"
    when "l" then "y"
    when "m" then "z"
    when "n" then "a"
    when "o" then "b"
    when "p" then "c"
    when "q" then "d"
    when "r" then "e"
    when "s" then "f"
    when "t" then "g"
    when "u" then "h"
    when "v" then "i"
    when "w" then "j"
    when "x" then "k"
    when "y" then "l"
    when "z" then "m"
    else  "ERROR"
    end
    
    return z
end
    
    

puts "Enter word: "

word = gets.chomp
wordarr = []
donearr = []
wordarr = word.split("")
wordarr.each {|y| donearr << encrypter(y) }
puts "Result: "
puts donearr.join
this is my first try just changing the input string into array and substituting each character with case statement. you can try this script at labs.codeacademy.com

but i think i can do better, why not i try taking the value of character and adding/subtracting 13 instead. but then it was troublesome.

after some googling (or cheating) there is a simple way to do this... using the tr method 
puts "Enter word: "
word = gets.chomp
word.tr!("abcdefghijklmnopqrstuvwxyz","nopqrstuvwxyzabcdefghijklm")
puts word

to make things a bit smarter, use method

def rot13(word)
   word.tr!("abcdefghijklmnopqrstuvwxyz","nopqrstuvwxyzabcdefghijklm")
end

puts "Enter word: "
enterword = gets.chomp
puts rot13(enterword)
 
    

Programmer or engineer?

just finished an interview with Josh from codedivision.my. And luckily i pass!
hope i can go through this course with no disturbance from PET. lol
this may be a turning point in my life where i would decide what i am
going to do after this. programmer or engineer?

tough decision... and now im stressed. -.-"

Travel log Pulau Perhentian

masa adalah anggaran shj

ahad
noon gerak ke kuala lumpur
8.30pm naik bus dari hentian putra. Bus Mentari ikut route ke Kuala Terengganu

isnin
6.30am sampai ke Kuala Besut, jeti. subuh, breakfast
9.00am tunggu bot ke pulau
9.30am naik bot
10.00am sampai ke pulau perhentian, long beach
letak barang semua.
jumpa dgn tour guide/management chalet abg sidi
11.00am mandi, kayak
12.30pm makan tgh hari.
1.00pm jungle tracking ke kincir angin. turun ke d'lagoon, mandi
4.00pm naik bot, balik ke long beach.
5.00pm rehat
8.00pm keluar, cari makan
2.00am rest

selasa
8.00am breakfast
10.00am snorkeling.
1.00pm makan tgh hari, village
4.00pm rest
6.30pm gerak ke coral bay
8.00pm makan
11.00pm balik, rest

rabu
8.00am mandi
10.00am kemas barang
12.00pm naik bot, balik
1.00pm sampai kuala besut, lunch, gerak ke perusahaan keropok lekor losong(sedap sengoti) dan jertih
3.00pm jalan-jalan pekan jertih, karaoke.
9.00pm naik bus, balik ke kl, bus mentari route ke gua musang

Plugins used by people making websites for companies


here are some activated plugins found. 
  • Breadcrumb NavXT
  • Easy Bootstrap Shortcode
  • jQuery Lightbox For Native Galleries
  • LayerSlider WP
  • Ninja Forms
  • Preserved HTML Editor Markup
  • Revolution Slider
  • Ultimate Coming Soon Page
  • WPBakery Visual Composer

one interesting discovery is WPBakery Visual Composer

it can make responsive column on a company frontpage with total ease. damn.