This is default featured post 1 title

Go to Blogger edit html and find these sentences.Now replace these sentences with your own descriptions.This theme is Bloggerized by Lasantha Bandara - Premiumbloggertemplates.com.

This is default featured post 2 title

Go to Blogger edit html and find these sentences.Now replace these sentences with your own descriptions.This theme is Bloggerized by Lasantha Bandara - Premiumbloggertemplates.com.

This is default featured post 3 title

Go to Blogger edit html and find these sentences.Now replace these sentences with your own descriptions.This theme is Bloggerized by Lasantha Bandara - Premiumbloggertemplates.com.

This is default featured post 4 title

Go to Blogger edit html and find these sentences.Now replace these sentences with your own descriptions.This theme is Bloggerized by Lasantha Bandara - Premiumbloggertemplates.com.

This is default featured post 5 title

Go to Blogger edit html and find these sentences.Now replace these sentences with your own descriptions.This theme is Bloggerized by Lasantha Bandara - Premiumbloggertemplates.com.

Jumat, 29 Oktober 2010

Cursor dan Custom Cursor

cursor: auto

the default cursor

cursor: crosshair

a gunsight-style cross

cursor: default

the system's normal arrow pointer

cursor: pointer

the normal hand pointer that appears when you hover over a link

cursor: hand

a value that is only supported in IE. Don't use it, use pointer instead

cursor: wait

the waiting cursor, generally a watch or hourglass (non-animated, sadly)

cursor: text

the text-selecting 'I-beam' thing

cursor: help

an arrow with a question-mark

cursor: move

crosshair with arrows on the ends, useful for drag and drop applications

  

  

cursor: n-resize

an arrow pointing north

cursor: ne-resize

an arrow pointing north-east

cursor: nw-resize

an arrow pointing north-west

cursor: e-resize

an arrow pointing east

cursor: w-resize

an arrow pointing west

cursor: s-resize

an arrow pointing south

cursor: se-resize

an arrow pointing south-east

cursor: sw-resize

an arrow pointing south-west

Custom Cursors

Finally, if all of those cursors aren't enough for you, you can supply your own customcursors by uploading the cursor file and pointing to it from in your CSS, just like you would point to an image. Custom cursors work similarly to fonts in CSS: you supply a list ofcursors you'd like to use. The browser will try to download and use each cursor in order. If one is not available or unusable, it will fall back on the next one and so on until it reaches a generic cursor at the end of the list which is used if none of the others are available. You code it like this:

a.help {cursor: url(questionmark.svg), url(/cursors/questionmark.cur), help; }

This code will instruct the browser to first look for an SVG file called "questionmark.svg". If this doesn't work or the browser doesn't support SVG graphics, it will look for a .cur file, which is a common cursor format. If neither of these files end up being available, it will fall back to the normal help cursor.

Kamis, 28 Oktober 2010

PHP win32 Service

<?php


if ($argv[1] == 'run')

{

win32_start_service_ctrl_dispatcher('dummyphp1');

while (WIN32_SERVICE_CONTROL_STOP != win32_get_last_control_message())

{

# do your work here.

# try not to take up more than 30 seconds before going around the loop

# again

sleep(10);

}

}


if($argv[1]=="register")

{

win32_create_service(array(

'service' => 'dummyphp1', # the name of your service

'display' => 'sample dummy PHP service #1', # description

'params' => 'd:\w32service.php run', # path to the script and parameters

));

}

else if($argv[1]=="unregister"){

win32_delete_service('dummyphp1');

}

else

{

echo "dummy Service\n";

echo "-----------------------------------\n";

echo "register - register this service \n";

echo "unregister - unregister this service \n";

echo "run - run this service \n";

}

?>

Rabu, 27 Oktober 2010

Sumber Ilmu – Buku sekolah elektronik

Buku sekolah elektronik bisa di download di

http://www.diknas.info/category/bse-sd

Sumber bacaan Penggiat Startup Lokal

Ini ada website yang membahas dan menginformasikan kegiatan – kegiatan startup lokal dan juga info – info tentang perkembangan tren bisnis web yang sekarang mengarah ke social content alias web 2.0

http://dailysocial.net/

Share

Twitter Delicious Facebook Digg Stumbleupon Favorites More