Jul 31, 2012

Insya Allah Ada Jalan episod 15 - Kawin Muda Berujung Petaka.


Insya Allah Ada Jalan episod 15 part 1.
Insya Allah Ada Jalan episod 15 part 2.
Insya Allah Ada Jalan episod 15 part 3.
Insya Allah Ada Jalan episod 15 part 4.
Insya Allah Ada Jalan episod 15 part 5.

Jul 30, 2012

Insya Allah Ada Jalan episod 14 - Tukang Gorengan Pergi Haji.


Insya Allah Ada Jalan episod 14 part 1.
Insya Allah Ada Jalan episod 14 part 2.
Insya Allah Ada Jalan episod 14 part 3.
Insya Allah Ada Jalan episod 14 part 4.
Insya Allah Ada Jalan episod 14 part 5.

Tutorial #15: Popular post widget.

Step 1
- Dari Dashboard -> Design -> Page Elements -> Add a Gadget -> HTML/JavaScript.

Step 2
- Copy code kat bawah pastu paste dalam HTML/JavaScript.
<script style="text/javascript" src="http://helplogger.googlecode.com/svn/trunk/recent-posts-with-titles-only.js"></script>
<script style="text/javascript">var numposts = 5;var showpostdate = false;var showpostsummary = false;var numchars = 100;var standardstyling = true;</script>
<script src="URL BLOG/feeds/posts/default?orderby=published&alt=json-in-script&callback=showrecentposts"></script></div>
<div style="font-family: arial, sans-serif; font-size: 9px;" id="rpdr">
<style type=text/css>
#rpdr {background: url() 0px 0px no-repeat; padding: 1px 0px 0px 19px; height:14px; margin: 5px 0px 0px 0px;line-height:14px;}
#rpdr, #rpdr a {color:#808080;}
#hlrpsb { }
.bbrecpost2 {
padding-top:2px;
padding-bottom:2px;
border-bottom: 0px #cccccc dotted; }
</style>
Step 3
- Warna merah untuk bilangan post.
- Warna oren tukar kepada link blog korang.

Step 4
- Save.
- Siap.

Tutorial #14: Recent post widget.

Step 1
- Dari Dashboard -> Design -> Page Elements -> Add a Gadget -> HTML/JavaScript.

Step 2
- Copy code kat bawah pastu paste dalam HTML/JavaScript.
<ul>
<script language='javascript'>
aBold = false;
numposts=1000;
maxshowresult=5;
home_page = "URL BLOG";
</script>
<script src='https://sites.google.com/site/jombinabelogtoppost/jombinabelog-popularpost2.js' type='text/javascript'></script>
</ul><br/>
Step 3
- Warna merah untuk bilangan post.
- Warna oren tukar kepada link blog korang.

Step 4
- Save.
- Siap.

Tutorial #13: Top commentators widget.

Step 1
- Dari Dashboard -> Design -> Page Elements -> Add a Gadget -> HTML/JavaScript.

Step 2
- Copy code kat bawah pastu paste dalam HTML/JavaScript.
.top-commenter-line     {margin: 3px 0;}
.top-commenter-avatar   {vertical-align:middle;}
</style>
<script type="text/javascript">
//
// Top Commentators gadget with avatars, by MS-potilas 2012.
// Gets a list of top commentators from all comments, or specified number of days in the past.
// See http://yabtb.blogspot.com/2012/05/top-commenters-gadget-with-avatars.html
//
// CONFIG:
var maxTopCommenters = 5;   // how big a list of top commentators
var minComments = 1;        // how many comments must top commentator have at least
var numDays = 0;            // from how many days (ex. 30), or 0 from "all the time"
var excludeMe = true;       // true: exclude my own comments
var excludeUsers = ["NAMA BLOG", "someotherusertoexclude"];     // exclude these usernames
var maxUserNameLength = 42; // 0: don't cut, >4: cut usernames
//
var txtTopLine = '<b>[#].</b> [image] [user] ([count])';
var txtNoTopCommenters = 'No top commentators at this time.';
var txtAnonymous = '';      // empty, or Anonymous user name localized if you want to localize
//
var sizeAvatar = 16;
var cropAvatar = true;
//
var urlNoAvatar = "https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjNfxt5E6gfdXVeDfSLzSY5OhUo4OaXsgknbZJbtc971IHOAtlSx6D7O8T4FtNWhyad66uwHph6e1Ctf5tz6tkcBLVnEHmwzgh2JfQsmzrRZ9OySQ9Ti9jYmwbk39p5B3u2XZk4Ehzvuyc/"+sizeAvatar+"/avatar_blue_m_96.png"; // http://www.blogger.com/img/avatar_blue_m_96.png resizeable
var urlAnoAvatar = 'http://www.gravatar.com/avatar/00000000000000000000000000000000?d=mm&s=' + sizeAvatar;
var urlMyProfile = ''; // set if you have no profile gadget on page
var urlMyAvatar = '';  // can be empty (then it is fetched) or url to image
// config end
// for old IEs & IE modes:
if(!Array.indexOf) {
 Array.prototype.indexOf=function(obj) {
  for(var i=0;i<this.length;i++) if(this[i]==obj) return i;
  return -1;
}}
function replaceTopCmtVars(text, item, position)
{
  if(!item || !item.author) return text;
  var author = item.author;
  var authorUri = "";
  if(author.uri && author.uri.$t != "")
    authorUri = author.uri.$t;
  var avaimg = urlAnoAvatar;
  var bloggerprofile = "http://www.blogger.com/profile/";
  if(author.gd$image && author.gd$image.src && authorUri.substr(0,bloggerprofile.length) == bloggerprofile)
    avaimg = author.gd$image.src;
  else {
    var parseurl = document.createElement('a');
    if(authorUri != "") {
      parseurl.href = authorUri;
      avaimg = 'http://www.google.com/s2/favicons?domain=' + parseurl.hostname;
    }
  }
  if(urlMyProfile != "" && authorUri == urlMyProfile && urlMyAvatar != "")
    avaimg = urlMyAvatar;
  if(avaimg == "http://img2.blogblog.com/img/b16-rounded.gif" && urlNoAvatar != "")
    avaimg = urlNoAvatar;
  var newsize="s"+sizeAvatar;
  avaimg = avaimg.replace(/\/s\d\d+-c\//, "/"+newsize+"-c/");
  if(cropAvatar) newsize+="-c";
  avaimg = avaimg.replace(/\/s\d\d+(-c){0,1}\//, "/"+newsize+"/");
  var authorName = author.name.$t;
  if(authorName == 'Anonymous' && txtAnonymous != '' && avaimg == urlAnoAvatar)
    authorName = txtAnonymous;
  var imgcode = '<img class="top-commenter-avatar" height="'+sizeAvatar+'" width="'+sizeAvatar+'" title="'+authorName+'" src="'+avaimg+'" />';
  if(authorUri!="") imgcode = '<a href="'+authorUri+'">'+imgcode+'</a>';
  if(maxUserNameLength > 3 && authorName.length > maxUserNameLength)
    authorName = authorName.substr(0, maxUserNameLength-3) + "...";
  var authorcode = authorName;
  if(authorUri!="") authorcode = '<a class="profile-name-link" href="'+authorUri+'">'+authorcode+'</a>';
  text = text.replace('[user]', authorcode);
  text = text.replace('[image]', imgcode);
  text = text.replace('[#]', position);
  text = text.replace('[count]', item.count);
  return text;
}
var topcommenters = {};
var ndxbase = 1;
function showTopCommenters(json) {
  var one_day=1000*60*60*24;
  var today = new Date();
  if(urlMyProfile == "") {
    var elements = document.getElementsByTagName("*");
    var expr = /(^| )profile-link( |$)/;
    for(var i=0 ; i<elements.length ; i++)
      if(expr.test(elements[i].className)) {
        urlMyProfile = elements[i].href;
        break;
      }
  }
  for(var i = 0 ; i < json.feed.entry.length ; i++ ) {
    var entry = json.feed.entry[i];
    if(numDays > 0) {
      var datePart = entry.published.$t.match(/\d+/g); // assume ISO 8601
      var cmtDate = new Date(datePart[0],datePart[1]-1,datePart[2],datePart[3],datePart[4],datePart[5]);
      //Calculate difference btw the two dates, and convert to days
      var days = Math.ceil((today.getTime()-cmtDate.getTime())/(one_day));
      if(days > numDays) break;
    }
    var authorUri = "";
    if(entry.author[0].uri && entry.author[0].uri.$t != "")
      authorUri = entry.author[0].uri.$t;
    if(excludeMe && authorUri != "" && authorUri == urlMyProfile)
      continue;
    var authorName = entry.author[0].name.$t;
    if(excludeUsers.indexOf(authorName) != -1)
      continue;
    var hash=entry.author[0].name.$t + "-" + authorUri;
    if(topcommenters[hash])
      topcommenters[hash].count++;
    else {
      var commenter = new Object();
      commenter.author = entry.author[0];
      commenter.count = 1;
      topcommenters[hash] = commenter;
    }
  }
  if(json.feed.entry.length == 200) {
    ndxbase += 200;
    document.write('<script type="text/javascript" src="http://'+window.location.hostname+'/feeds/comments/default?redirect=false&max-results=200&start-index='+ndxbase+'&alt=json-in-script&callback=showTopCommenters"></'+'script>');
    return;
  }
  // convert object to array of tuples
  var tuplear = [];
  for(var key in topcommenters) tuplear.push([key, topcommenters[key]]);
  tuplear.sort(function(a, b) {
    if(b[1].count-a[1].count)
        return b[1].count-a[1].count;
    return (a[1].author.name.$t.toLowerCase() < b[1].author.name.$t.toLowerCase()) ? -1 : 1;
  });
  // list top topcommenters:
  var realcount = 0;
  for(var i = 0; i < maxTopCommenters && i < tuplear.length ; i++) {
    var item = tuplear[i][1];
    if(item.count < minComments)
        break;
    document.write('<di'+'v class="top-commenter-line">');
    document.write(replaceTopCmtVars(txtTopLine, item, realcount+1));
    document.write('</d'+'iv>');
    realcount++;
  }
  if(!realcount)
    document.write(txtNoTopCommenters);

document.write('<script type="text/javascript" src="http://'+window.location.hostname+'/feeds/comments/default?redirect=false&max-results=200&alt=json-in-script&callback=showTopCommenters"></'+'script>');
</script>
Step 3
- Warna merah tu untuk bilangan blogger yang komen.
- Warna oren tu korang tukar kepada nama korang supaya nama korang tak tersenarai dalam top commentators.

Step 4
- Save.
- Siap.

Tutorial #12: Pasang search box.


Step 1
- Dari Dashboard -> Design -> Page Elements -> Add a Gadget -> HTML/JavaScript.

Step 2
- Klik butang tambah untuk Search Box macam dalam gambar.


Step 3
- Tick mana-mana yang korang suka.


Step 4
- Save.
- Siap.

Guide Me All The Way - Maher Zain.


I know that You could easily
Take away everything You’ve given me
And I try to remember
Not to take anything for granted
‘Cause I know that one day
Suddenly this will all come to an end
So my last wish is for You to be pleased with me

Chorus:
Allah, Ya Allah
Guide me all the way to Your Jannah
Ya Allah, Ya Allah
Don’t let me go astray ’cause I need You
By my side, I wish to be close
Close to You throughout my life
Ya Allah, O Allah!
Be with me all the way

I know that sometimes I do
I do forget that my next breath could be the last
Forgive me ’cause I can't thank You enough
Forgive me when I doubt Your love
Now I pray for that day
When all this stops and comes to an end
So my last wish is for You to be pleased with me

Chorus

Day by day passes
And I think that my time could be near
So I pray: O God let this world be in my hands
And not in my heart
‘Cause soon I’ll have to leave it (2X)

Allah, Ya Allah
Guide me all the way to Your Jannah
Ya Allah, Ya Allah
Don’t let me go astray ’cause I need You

Chorus (2X)

Guide me all the way
Don’t let me go astray

Jul 29, 2012

Insya Allah Ada Jalan episod 13 - Azab Penjual Makanan Kadaluarsa.


Insya Allah Ada Jalan episod 13 part 1.
Insya Allah Ada Jalan episod 13 part 2.
Insya Allah Ada Jalan episod 13 part 3.
Insya Allah Ada Jalan episod 13 part 4.
Insya Allah Ada Jalan episod 13 part 5.

Insya Allah Ada Jalan episod 12 - Bidan Penjual Bayi.


Insya Allah Ada Jalan episod 12 part 1.
Insya Allah Ada Jalan episod 12 part 2.
Insya Allah Ada Jalan episod 12 part 3.
Insya Allah Ada Jalan episod 12 part 4.
Insya Allah Ada Jalan episod 12 part 5.

Insya Allah Ada Jalan episod 11 - Pedagang Beras Yang Curang.


Insya Allah Ada Jalan episod 11 part 1.
Insya Allah Ada Jalan episod 11 part 2.
Insya Allah Ada Jalan episod 11 part 3.
Insya Allah Ada Jalan episod 11 part 4.
Insya Allah Ada Jalan episod 11 part 5.

Insya Allah Ada Jalan episod 10 - Pengorbanan Ibu Angkat.


Insya Allah Ada Jalan episod 10 part 1.
Insya Allah Ada Jalan episod 10 part 2.
Insya Allah Ada Jalan episod 10 part 3.
Insya Allah Ada Jalan episod 10 part 4.
Insya Allah Ada Jalan episod 10 part 5.

Insya Allah Ada Jalan episod 9 - Si Kikir Kena Batunya.


Insya Allah Ada Jalan episod 9 part 1.
Insya Allah Ada Jalan episod 9 part 2.
Insya Allah Ada Jalan episod 9 part 3.
Insya Allah Ada Jalan episod 9 part 4.
Insya Allah Ada Jalan episod 9 part 5.

Insya Allah Ada Jalan episod 8 - Pencuri Kotak Amal.


Insya Allah Ada Jalan episod 8 part 1.
Insya Allah Ada Jalan episod 8 part 2.
Insya Allah Ada Jalan episod 8 part 3.
Insya Allah Ada Jalan episod 8 part 4.
Insya Allah Ada Jalan episod 8 part 5.

Insya Allah Ada Jalan episod 7 - Penjual Curang Berujung Petaka.


Insya Allah Ada Jalan episod 7 part 1.
Insya Allah Ada Jalan episod 7 part 2.
Insya Allah Ada Jalan episod 7 part 3.
Insya Allah Ada Jalan episod 7 part 4.
Insya Allah Ada Jalan episod 7 part 5.

Insya Allah Ada Jalan episod 6 - Artis Tersesat.


Insya Allah Ada Jalan episod 6 part 1.
Insya Allah Ada Jalan episod 6 part 2.
Insya Allah Ada Jalan episod 6 part 3.
Insya Allah Ada Jalan episod 6 part 4.
Insya Allah Ada Jalan episod 6 part 5.

Insya Allah Ada Jalan episod 5 - Harumnya Makam Anak Berbakti.


Insya Allah Ada Jalan episod 5 part 1.
Insya Allah Ada Jalan episod 5 part 2.
Insya Allah Ada Jalan episod 5 part 3.
Insya Allah Ada Jalan episod 5 part 4.
Insya Allah Ada Jalan episod 5 part 5.

Insya Allah Ada Jalan episod 4 - Juragan Darso dan Tukang Bakso.


Insya Allah Ada Jalan episod 4 part 1.
Insya Allah Ada Jalan episod 4 part 2.
Insya Allah Ada Jalan episod 4 part 3.
Insya Allah Ada Jalan episod 4 part 4.
Insya Allah Ada Jalan episod 4 part 5.

Insya Allah Ada Jalan episod 3 - Surga di Telapak Kaki Ibu.


Insya Allah Ada Jalan episod 3 part 1.
Insya Allah Ada Jalan episod 3 part 2.
Insya Allah Ada Jalan episod 3 part 3.
Insya Allah Ada Jalan episod 3 part 4.
Insya Allah Ada Jalan episod 3 part 5.

Insya Allah Ada Jalan episod 2 - Azab Pengemis Bohongan.


Insya Allah Ada Jalan episod 2 part 1.
Insya Allah Ada Jalan episod 2 part 2.
Insya Allah Ada Jalan episod 2 part 3.
Insya Allah Ada Jalan episod 2 part 4.
Insya Allah Ada Jalan episod 2 part 5.

Insya Allah Ada Jalan episod 1 - Penyanyi Lupa Diri.


Insya Allah Ada Jalan episod 1 part 1.
Insya Allah Ada Jalan episod 1 part 2.
Insya Allah Ada Jalan episod 1 part 3.
Insya Allah Ada Jalan episod 1 part 4.
Insya Allah Ada Jalan episod 1 part 5.

Sinopsis drama Insya Allah Ada Jalan.


Drama ni berkisarkan perjalanan Maher Zain dalam mencari kawannya, Basofi. Dengan ditemani Fadli, diorang pun teruskan usaha pencarian. Setiap episod lain-lain cerita. Yang pasti diorang ni kiranya macam penyelesai masalah orang-orang yang diorang jumpa secara tak sengaja.


Kalau kat Indonesia drama ni start 16 Julai. Kat Malaysia start 23 Julai. Tapi aku tak comfirm episod yang ditayangkan kat Malaysia. Turutan episod tak sama. Cuma episod satu je sama dengan Indonesia.

Apa-apa pun harap korang enjoy tengok drama yang penuh dengan teladan ni. Aku tengok online je. Takde Astro nak tengok. Kalau ada info, boleh la share kat sini.

Tutorial #11: Header hover 360 degree.

Step 1
- Dari Dashboard -> Design -> Edit HTML.

Step 2
- Klik Expand Widget Templates.
- Search code kat bawah.
*guna ctrl+F supaya senang cari.
/* Header
----------------------------------------------- */
Step 3
- Copy code kat bawah.
- Paste kat bawah code yang dicari tadi.
#header:hover{
-webkit-transition-duration: 2s;
-moz-transform: rotate(360deg);
-webkit-transform: rotate(360deg);
}
Step 4
- Save.
- Siap.

Tutorial #10: Buang atau hilangkan navbar.

Tahu tak navbar tu ape? Kalu tak tahu, tengok gambar kat bawah ni.


Macam mana nak hilangkannya ek? Senang je. Ikut langkah-langkah kat bawah.

Step 1
- Dari Dashboard -> Design -> Edit HTML.

Step 2
- Klik Expand Widget Templates.
- Search code kat bawah.
*guna ctrl+F supaya senang cari.
/* Variable definitions
Step 3
- Copy code kat bawah.
- Paste kat atas code yang dicari tadi.
#navbar-iframe {
display:none;
}
Step 4
- Save.
- Siap.
*cuba preview dulu sebelum save untuk keselamatan.

Annur & Meow - komik tulisan Jawi yang menarik.

Selalu jumpa komik ni dalam facebook. Best jugak baca. Dulu time kecik-kecik baca jugak majalah Asuh. Time tu baca kat library sekolah. Dalam tu ada komik pengajaran dalam tulisan Jawi. Alhamdulillah rasanya dengan cara ni sedikit-sebanyak dapat meningkatkan martabat tulusan Jawi. Tulisan ni la yang nenek moyang kita guna zaman dulu.


Kalau nak lebih lagi boleh baca kat sini:
www.facebook.com/emit.ahmadnazrimahmood

Tutorial #9: Buat tulisan copyright bawah footer.


Step 1
- Dari Dashboard -> Design -> Edit HTML.

Step 2

- Klik Expand Widget Templates.
- Search code kat bawah.
*guna ctrl+F supaya senang cari.
<footer>
Step 3
- Copy code kat bawah.
- Paste kat bawah code yang dicari tadi.
<center>Copyright 2012 © <a href='URL BLOG'>NAMA BLOG</a></center>
Step 4
- tukar perkataan warna merah kepada link blog sendiri.
- tukar perkataan warna oren kepada nama sendiri.

Step 5
- Save.
- Siap.
*cuba preview dulu sebelum save untuk keselamatan.

Tutorial #8: Image opacity effect versi 2.

Sebelum gambar disentuh:


Selepas gambar disentuh:


Step 1
- Dari Dashboard -> Design -> Page Elements -> Add a Gadget -> HTML/JavaScript.

Step 2
- Copy code kat bawah pastu paste dalam HTML/JavaScript.
<style>

.post a img {
filter:alpha(opacity=50);
-moz-opacity: 0.5;
opacity: 0.5;
-khtml-opacity: 0.5;
}

.post a:hover img {
filter:alpha(opacity=100);
-moz-opacity: 1.0;
opacity: 1.0;
-khtml-opacity: 1.0;
}
</style>
Step 3
- Save.
- Siap.

Tutorial #7: Image opacity effect versi 1.

Sebelum gambar disentuh:


Selepas gambar disentuh:


Step 1
- Dari Dashboard -> Design -> Page Elements -> Add a Gadget -> HTML/JavaScript.

Step 2
- Copy code kat bawah pastu paste dalam HTML/JavaScript.
<style>

.post a img {
filter:alpha(opacity=100);
-moz-opacity: 1.0;
opacity: 1.0;
-khtml-opacity: 1.0;
}

.post a:hover img {
filter:alpha(opacity=50);
-moz-opacity: 0.5;
opacity: 0.5;
-khtml-opacity: 0.5;
}

</style>
Step 3
- Save.
- Siap.

Tutorial #6: Letak butang like facebook di setiap entry.

Step 1
- Dari Dashboard -> Design -> Edit HTML.

Step 2
- Klik Expand Widget Templates.
- Search code kat bawah.
*guna ctrl+F supaya senang cari.
<data:post.body/>
Step 3
- Copy code kat bawah.
- Paste kat bawah code yang dicari tadi.
<iframe allowTransparency='true' expr:src='"http://www.facebook.com/plugins/like.php?href=" + data:post.url + "&amp;layout=standard&amp;show-faces=true&amp;width=530&amp;height=60&amp;action=like&amp;colorscheme=light"' frameborder='0' scrolling='no' style='border:none; overflow:hidden; width:530px; height:60px'/>
Step 4
- Save.
- Siap.
*cuba preview dulu sebelum save untuk keselamatan.

Tutorial #5: Tukar favicon.

Korang tahu apa tu favicon? Kalau tak tahu, tengok gambar kat bawah ni.


Senang je kalau nak tukar favicon. Ikut langkah-langkah kat bawah.

Step 1
- Dari Dashboard -> Design -> Page Elements.

Step 2


- Nampak tak kotak favicon tu?
- Klik Edit.


- Klik browse.
- Pilih mana-mana gambar yang korang suka.
*pastikan gambar tu segi empat sama. Kalau tak, tak jadi nanti.

Step 3
- Save.
- Siap.

Tutorial #4: Disable copy text dengan amaran.

Step 1
- Dari Dashboard -> Design -> Page Elements -> Add a Gadget -> HTML/JavaScript.

Step 2
- Copy code kat bawah pastu paste dalam HTML/JavaScript.
*korang boleh tukar tulisan bold tu dengan ayat sendiri.
<script language='JavaScript'>
<!--

//Disable right mouse click Script
//By Maximus (maximus@nsimail.com) w/ mods by DynamicDrive
//For full source code, visit http://www.dynamicdrive.com

var message="Apa copy-copy ni!";

///////////////////////////////////
function clickIE4(){
if (event.button==2){
alert(message);
return false;
}
}

function clickNS4(e){
if (document.layers||document.getElementById&&!document.all){
if (e.which==2||e.which==3){
alert(message);
return false;
}
}
}

if (document.layers){
document.captureEvents(Event.MOUSEDOWN);
document.onmousedown=clickNS4;
}
else if (document.all&&!document.getElementById){
document.onmousedown=clickIE4;
}

document.oncontextmenu=new Function("alert(message);return false")

// -->
</script>
Step 3
- Save.
- Siap.

Tutorial #3: Disable copy text tanpa amaran.

Step 1
- Dari Dashboard -> Design -> Page Elements -> Add a Gadget -> HTML/JavaScript.

Step 2
- Copy code kat bawah pastu paste dalam HTML/JavaScript.
<script type="text/javascript">

//form tags to omit in NS6+:
//http://eking.in
var omitformtags=["input", "textarea", "select"]

omitformtags=omitformtags.join("|")

function disableselect(e){
if (omitformtags.indexOf(e.target.tagName.toLowerCase())==-1)
return false
}

function reEnable(){
return true
}

if (typeof document.onselectstart!="undefined")
document.onselectstart=new Function ("return false")
else{
document.onmousedown=disableselect
document.onmouseup=reEnable
}

</script>
Step 3
- Save.
- Siap.

Tutorial #2: Blog archive versi kalendar.


Step 1
- Dari Dashboard -> Design -> Page Elements -> Add a Gadget -> HTML/JavaScript.

Step 2
- Copy code kat bawah pastu paste dalam HTML/JavaScript.
*tukar tulisan yang bold tu kepada link blog sendiri.
<center><div id="blogCalendar"></div>
<script type="text/javascript" src="http://lvchen-recentcomments.googlecode.com/svn/trunk/Calendar/1.0/calendar_pack.js"></script>
<script type="text/javascript">
Calendar.base="URL BLOG";
Calendar.timeZone="+08:00";
Calendar.timeZoneCheck = true;
Calendar.drawTable();
</script>
<style>

#blogCalendar {
display:block;
text-algin:center;
border:1px solid #000000;
width:100%;
background: transparent;
}

#CalendarCaption a {
text-decoration:none;
}

#CalendarCaption {
border-bottom: 2px solid #000000;
width:85%;
margin:auto;
}

#CalendarTable a {
font-weight:bold;
color: #000000;
}

.Today {
background: ;
font-weight:bold;
text-decoration:none;
}

#CalendarFooter {
font-weight:bold;
margin-top:5px;
margin-bottom:5px;
background: ;
}

.yearInput {
color: #000000;
background: ;
}

.monthTable {
color: #000000;
background: ;
}

</style></center>
Step 3
- Save.
- Siap.

Jul 28, 2012

Hold My Hand - Maher Zain.


I hear the flowers kinda of crying loud
The breeze is sounding sad
Oh no
Tell me when did we become
So cold and empty inside
Lost our way long time ago
Did we really turn out blind?
We don’t see that we keep hurting each other no
All we do is just fight
 
Now we share the same bright sun
The same round moon
Why don’t we share the same love?
Tell me why not
Life is shorter than most had thought

Hold my hand
There are many ways to do it right
Hold my hand
Turn around and see what we've left behind
Hold my hand my friend
We can save the good spirit in me and you
For another chance
And let’s pray for the beautiful world
The beautiful world I share with you

Children seem like they’ve lost their smile
On the new blooded playgrounds
Oh no
How could we ignore heartbreaking crying sounds
And we’re still going on
Like nobody really cares
And we just stopped feeling all the pain because
Like it’s a daily basic affair

Now we share the same bright sun
The same round moon
Why don’t we share the same love?
Tell me why not
Life is shorter than most have thought

Hold my hand
There are many ways to do it right
Hold my hand
Turn around and see what we've left behind
Hold my hand my friend
We can save the good spirit in me and you
For another chance
And let’s pray for the beautiful world
The beautiful world I share with you

No matter how far I might be
I’m always gonne be your neighbour
There’s only one small planet where to be
So I’m always gonna be your neighbour
We cannot hide, we can’t deny
That we’re always gonna be neighbours
You’re neighbor, my neighbour, we’re neighbours

So hold my hand
There are many ways to do it right
Hold my hand
Turn around and see what have left behind

Hold my hand
There are many ways to do it right
Hold my hand
Turn around and see what we''ve left behind
Hold my hand my friend
We can save the good spirit in me and you
For another chance
And let’s pray for the beautiful world
The beautiful world I share with you

Ikan pari bakar bazar Ramadhan Pekan, Pahang.

Semalam pegi Pekan beli tiket bas nak balik rumah raya ni. Nasib baik ada sebab hari tu dengar yang banyak tiket dah habis. Lega bila dapat beli tiket. Lepas tu singgah bazar Ramadhan. Memang kat sini banyak pilihan makanan. Ada yang panas, ada yang sejuk, ada yang berkuah dan ada yang kering.

Yang menarik perhatian aku ikan pari bakar. Tapi aku panggil ikan tuko. Menyelerakan betul tengok ikan tu. Kalau makan panas-panas ni comfirm best.


Memang sedap ikan bakar ni. Lain kali kalau ada masa ingat nak beli lagi. Tak pun balik rumah nanti nak try usha-usha bazar Ramadhan kat sana.

Jul 27, 2012

Selamat menyambut Ramadhan al-Mubarak.

Jul 26, 2012

Hari ni bukak pose sorang-sorang. Betul ke tak elok bukak pose kat padang?

Sebelum ni aku bukak pose dengan kawan aku kat kafe. Tapi hari ni dia cakap nak makan kat luar. Budak -budak kelas aku cadang nak bukak pose kat padang MPK3 depan masjid kat Kuantan. Aku tak nak join. Takde selera nak makan kat luar hari ni. Tinggal la aku sorang-sorang kat bilik. Mesti best diorang makan kat sana kan?


Tapi kan aku ada baca atrikel ni. Cakap yang makan kat luar tak elok.

"Senario umat Islam berbuka puasa secara picnic di padang2 dan taman rekreasi menjelang Ramadan dewasa ini berlaku di mana-mana...

Sedarkan anda bahawa tabiat duduk di luar rumah menjelang waktu Maghrib atau senja adalah satu perbuatan yang amat dilarang oleh Rasulullah kerana boleh menyebabkan manusia diganggu oleh jin...

Ya, memang benar syaitan dibelengu pada bulan Ramadan, namun menurut al Habib Kazim as Saqqaf di dalam ceramah awal Ramadannya dahulu, syaitan yang dimaksudkan di dalam hadis tersebut adalah syaitan2 yang kuat dan hebat sedangkan syaitan2 picisan masih berkeliaran mengganggu manusia.. Itu pun manusia tidak dapat tangani..

Ada juga pendapat yang mengatakan bahawa syaitan yang mengganggu dan menghasut hati dan kecenderungan manusia memang dibelengu, sedangkan jin yang masuk dan menyakitkan manusia masih berkeliaran.. WALLAHU A'LAM... berbagai2 pendapat ulamak.."

Ada hadis pasal ni:
"Diriwayatkan dari Jabir RA. : Nabi Muhammad SAW pernah bersabda, “ketika malam turun, dekatkanlah anak-anak kalian kepadamu, karena waktu itu setan bertebaran. Sejam kemudian, kalian dapat melepaskan mereka; dan tutuplah pintu-pintu rumahmu dan sebutlah nama Allah, padamkanlah lampumu dan sebutlah nama Allah, tutuplah minumanmu dan sebutlah nama Allah, tutuplah juga bejanamu dan sebutlah nama Allah, sekalipun hanya dengan meletakkan sesuatu di atasnya”. [HR Bukhari] "
Sumber: [link]

Aku rasa lagi elok kalau makan kat tempat tertutup. Tempat yang dikhaskan untuk makan. Macam kat rumah, kafe, gerai-gerai makan ataupun restoran. Lain la kalau keadaan darurat. Tak de tempat nak berbuka. Yelah time bulan Ramadhan ni memang penuh la tempat makan waktu berbuka kan? Lambat sikit je dah tak de tempat. Yang baik jadikan teladan, yang buruk jadikan sempadan. Selamat berbuka puasa!

Tutorial #1: Letak online users kat atas.


Step 1
- Bukak website ni http://www.freeonlineusers.com dan sign up.
- Dapatkan Link Codes.
*kat dalam free users online tu tak payah letak Link Text. Sebab nak biar nombor je yang keluar.

Step 2
- Copy code kat bawah ni:
<script type="text/javascript">
    function MM_swapImgRestore() { //v3.0
    var i,x,a=document.MM_sr; for(i=0;a&&i<a.length&&(x=a[i])&&x.oSrc;i++) x.src=x.oSrc;
    }
    function MM_preloadImages() { //v3.0
    var d=document; if(d.images){ if(!d.MM_p) d.MM_p=new Array();
    var i,j=d.MM_p.length,a=MM_preloadImages.arguments; for(i=0; i<a.length; i++)
    if (a[i].indexOf("#")!=0){ d.MM_p[j]=new Image; d.MM_p[j++].src=a[i];}}
    }
    function MM_findObj(n, d) { //v4.01
    var p,i,x; if(!d) d=document; if((p=n.indexOf("?"))>0&&parent.frames.length) {
    d=parent.frames[n.substring(p+1)].document; n=n.substring(0,p);}
    if(!(x=d[n])&&d.all) x=d.all[n]; for (i=0;!x&&i<d.forms.length;i++) x=d.forms[i][n];
    for(i=0;!x&&d.layers&&i<d.layers.length;i++) x=MM_findObj(n,d.layers[i].document);
    if(!x && d.getElementById) x=d.getElementById(n); return x;
    }
    function MM_swapImage() { //v3.0
    var i,j=0,x,a=MM_swapImage.arguments; document.MM_sr=new Array; for(i=0;i<(a.length-2);i+=3)
    if ((x=MM_findObj(a[i]))!=null){document.MM_sr[j++]=x; if(!x.oSrc) x.oSrc=x.src; x.src=a[i+2];}
    }
    </script>
    <div style='display:scroll; position: fixed ; z-index:300; top:32px; left:35px; background:;'title=''>
 
<!-- Start FreeOnlineUsers.com -->
MASUKKAN LINK CODES FREE USERS ONLINE KAT SINI
<!-- End FreeOnlineUsers.com -->
    </div>
top: kedudukan dari atas.
left: kedudukan dari kiri.

Step 3
- Dari Dashboard -> Design -> Page Elements -> Add a Gadget -> HTML/JavaScript.

- Masukkan code yang dicopy tadi.
- Save.

Step 4
- Copy code bawah ni:
<a style="display:scroll;position:fixed;top:10px;left:10px;" title=""><img width="" style="border:0" alt="" src="LINK GAMBAR" /></a>
- Kat bawah ni sample gambar yang boleh korang guna.



- Dari Dashboard -> Design -> Page Elements -> Add a Gadget -> HTML/JavaScript.
- Masukkan code yang dicopy tadi.
- Save.
- Siap.

Doodle Gadis Bertudung. Ayu je tengok dia ni.

Jul 25, 2012

Doodle Appreciation: Bersyukurlah dengan apa yang ada sekarang.

Kadang-kadang kita demand nak itu nak ini. Langsung tak bersyukur dengan apa yang ada kan? Contohnya makanan. Bukak pose nak makan makanan yang best-best. Beli banyak makanan kat bazar. Time makan mula la nak jadik pengkritik professional. Mengalahkan chef. Bersyukurlah dengan apa yang ada. Walaupun tak kena dengan selera, ingatlah ada orang kat luar sana yang terpaksa bersusah-payah nak dapatkan makanan. Kadang-kadang sampai berhari-hari tak makan. Kesian kan? Bersyukurlah dengan apa yang ada.

Jul 24, 2012

AdaMu - Najwa Latif.

Dah 4 hari lagu ni keluar kat Youtube. Lagu AdaMu ni katanya khas sempena bulan Ramadhan ni.


Merenung ke luar jendela
Melihat kebesaranNya
Mensyukuri segala nikmat
Yang dikurniaNya di dunia

Kau berikanku kekuatan
Tuk berpegang pada jalan
Walau penuh dengan cabaran
Ku tahu ku adaMu Tuhan

Kerna Kau Yang Satu
Yang setia bersamaku
Di kala ku jatuh ku bangkit kerna Mu
Ku tahu ku adaMu di sisiku selalu
Bantulah hambaMu mencari keredhaanMu

Ohh...Ku tahu ku adaMu
Ohh...Ku adaMu selalu

Kerna Kau Yang Satu
Yang setia bersamaku
Di kala ku jatuh ku bangkit kerna Mu
Ku tahu ku adaMu di sisiku selalu
Bantulah hambaMu mencari keredhaanMu

Ohh...Ku tahu ku adaMu

Merenung ke luar jendela
Melihat kebesaranNya
Walau penuh dengan cabaran
Ku tahu ku adaMu Tuhan

Kempunan nak makan mee kari. Inilah akibatnya boros sangat.

Petang semalam kawan aku ajak beli makanan kat bazar. Memang tak jadi la aku nak makan kat kafe time bukak pose. Entahlah dengar citer kafe dah tak bukak. Kesian kitorang yang still ada kelas lagi ni. Seminggu sebelum raya baru habis.

Tapi kalau pikirkan balik, memang tak jalan la macam tu. Kafe sini buat makanan bufey. Walaupun sikit, kalau kitorang tak makan kat kafe, rugi la diorang kan? Nasib baik kat masjid ada iftar. Dapat la student makan kat sana. Nak beli makanan kat luar perlu keluarkan duit.

Semalam banyak jugak la aku beli juadah bukak pose. Rambang mata tengok makanan. Beli nasik kerabu. Tapi time makan, budu dalam tu rasa pelik sikit. Macam mak cik tu buat sendiri je. Ayam percik pulak rasa tak fresh. Mungkin sebab diorang tambah madu kot. Memang rasa pelik.

Nasik kerabu putih.
Sayang betul ayam percik ni tak fresh.
Popiah goreng. Cari popiah sira tapi tak jumpa.
Melepas nak makan mee kari.

Ingat time sahur nanti nak makan mee kari. Time beli mak cik tu cakap tak basi bila sahur. Malang memang tak berbau kan? Nasib badan la. Tidur lewat punya pasal, sahur pun tak terbangun. Kesian mee kari ni.

p/s: aku tetap bersyukur dengan apa yang ada. Lain kali tak nak membazir lagi.