Translate

'

'

-

-

MEMBUAT JUDUL BLOG BERGERAK

19.24 |

1. Login ke blogger dengan ID anda 

2. Klik Tata Letak / Layout

3. Klik Tab Menu Edit HTML

4. Backup dulu sebelum melakukan editting template dengan klik Download Template Lengkap. Mengantisipasi jika penambahan kode salah.

5. Beri tanda centang pada kotak kecil Expand Template Widget

6. Cari kode : <title><data:blog.pageTitle/></title>
Untuk memudahkan mencari tekan ctrl F / F3. 

7. Jika sudah ketemu ganti dengan kode berikut ini :

<script language='JavaScript'>
var txt="<data:blog.pageTitle/>";
var kecepatan=300;var segarkan=null;function bergerak() { document.title=txt;
txt=txt.substring(1,txt.length)+txt.charAt(0);
segarkan=setTimeout("bergerak()",kecepatan);}bergerak();
</script>

8. Untuk mengedit Kecepatanya dalah angka yang saya beri warna biru yaitu angka 300 di dalam kodescript, silahkan ganti sesuai dengan selera Sobat. Jika anda ganti menjadi 100 atau 200 maka kecepatannya akan bertambah, sebaliknya kecepatan akan berkurang bila diganti menjadi 400

9. Klik Save Template

Sudah selesai Nah selamat mencobanya,, semoga berhasil!!!
Read More

MENGGANTI CURSOR DI BLOG

19.21 |


BUAT BLOGGER LAMA
  1. Log in and go to your account dashboard.
  2. Click on "Design"
  3. Next click on "Edit HTML"
  4. Next paste the below code at the bottom of the html box.
  5. Save Your Profile
  6. CARI KODENYA DI CURSORS-4U.COM
BUAT BLOGGER BARU
  1. Log in and go to your account dashboard.
  2. Click on "Template"
  3. Next click on "Edit HTML"
  4. Next paste the below code at the bottom of the html box.
  5. Save Your Profile
  6. CARI KODENYA DI CURSORS-4U.COM 
Read More

MENAMBAHKAN TWITTER BADGE DI BLOG

19.16 |


<script type="text/javascript" src="https://sites.google.com/site/exeloph/file/Twitterbang.js"></script>
<script type="text/javascript">
var birdSprite="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEg9zSVVhRG0qT2rJ42DljrpKqfWarqMAqIkTL8u-XIuGBNN8saBYjEqdau4kzyi04b_ewNTfqaVsnZweuAXYUXspcRrr1LgbQTftEdGIgamzXk_0ivPN2IWgM3GJPZ9Pyfr9Pd-hONpnh4/"; var targetElems=new Array("img","hr","table","td","div","input","textarea","button","select","ul","ol","li","h1","h2","h3","h4","p","code","object","a","b","strong","span"); var twitterAccount = "http://twitter.com/ibnu katsir";var tweetThisText = "Twitter - ibnu katsir http://al-marogi.blogspot.com/";tripleflapInit();</script>

GANTI KATA YANG BERWARNA MERAH
Read More

MENAMBAHKAN BUBBLE DI CURSOR

19.11 |


<script type="text/javascript" src="https://sites.google.com/site/jombinabelogcursorbuih/bubble%20cursor.js"></script><script type="text/javascript">
// <![CDATA[
var colours=new Array("#FF0023", "#FF0023", "#FF0023", "#FF0023", "#FF0023"); // colours for top, right, bottom and left borders and background of bubbles

var bubbles=100; // maximum number of bubbles on screen
/****************************

* JavaScript Bubble Cursor *

* (c) 2010 mf2fm web-design *

* http://www.mf2fm.com/rv *

* DON'T EDIT BELOW THIS BOX *

****************************/

var x=ox=400;

var y=oy=300;

var swide=800;

var shigh=600;

var sleft=sdown=0;

var bubb=new Array();

var bubbx=new Array();

var bubby=new Array();

var bubbs=new Array();

window.onload=function() { if (document.getElementById) {

var rats, div;

for (var i=0; i<bubbles; i++) {

rats=createDiv("3px", "3px");

rats.style.visibility="hidden";

div=createDiv("auto", "auto");

rats.appendChild(div);

div=div.style;

div.top="1px";

div.left="0px";

div.bottom="1px";

div.right="0px";

div.borderLeft="1px solid "+colours[3];

div.borderRight="1px solid "+colours[1];

div=createDiv("auto", "auto");

rats.appendChild(div);

div=div.style;

div.top="0px";

div.left="1px";

div.right="1px";

div.bottom="0px"

div.borderTop="1px solid "+colours[0];

div.borderBottom="1px solid "+colours[2];

div=createDiv("auto", "auto");

rats.appendChild(div);

div=div.style;

div.left="1px";

div.right="1px";

div.bottom="1px";

div.top="1px";

div.backgroundColor=colours[4];

div.opacity=0.5;

if (document.all) div.filter="alpha(opacity=50)";

document.body.appendChild(rats);

bubb[i]=rats.style;

}

set_scroll();

set_width();

bubble();

}}

function bubble() {

var c;

if (x!=ox || y!=oy) {

ox=x;

oy=y;

for (c=0; c<bubbles; c++) if (!bubby[c]) {

bubb[c].left=(bubbx[c]=x)+"px";

bubb[c].top=(bubby[c]=y)+"px";

bubb[c].width="3px";

bubb[c].height="3px"

bubb[c].visibility="visible";

bubbs[c]=3;

break;

}

}

for (c=0; c<bubbles; c++) if (bubby[c]) update_bubb(c);

setTimeout("bubble()", 40);

}

function update_bubb(i) {

if (bubby[i]) {

bubby[i]-=bubbs[i]/2+i%2;

bubbx[i]+=(i%5-2)/5;

if (bubby[i]>sdown && bubbx[i]>0) {

if (Math.random()<bubbs[i]/shigh*2 && bubbs[i]++<8) {

bubb[i].width=bubbs[i]+"px";

bubb[i].height=bubbs[i]+"px";

}

bubb[i].top=bubby[i]+"px";

bubb[i].left=bubbx[i]+"px";

}

else {

bubb[i].visibility="hidden";

bubby[i]=0;

return;

}

}

}

document.onmousemove=mouse;

function mouse(e) {

set_scroll();

y=(e)?e.pageY:event.y+sleft;

x=(e)?e.pageX:event.x+sdown; }

window.onresize=set_width;

function set_width() {

if (document.documentElement && document.documentElement.clientWidth) {

swide=document.documentElement.clientWidth;

shigh=document.documentElement.clientHeight;

}

else if (typeof(self.innerHeight)=="number") {

swide=self.innerWidth;

shigh=self.innerHeight;

}

else if (document.body.clientWidth) {

swide=document.body.clientWidth;

shigh=document.body.clientHeight;

}

else {

swide=800;

shigh=600;

}

}

window.onscroll=set_scroll;

function set_scroll() {

if (typeof(self.pageYOffset)=="number") {

sdown=self.pageYOffset;

sleft=self.pageXOffset;

}

else if (document.body.scrollTop || document.body.scrollLeft) {

sdown=document.body.scrollTop;

sleft=document.body.scrollLeft;

}

else if (document.documentElement && (document.documentElement.scrollTop || document.documentElement.scrollLeft)) {

sleft=document.documentElement.scrollLeft;

sdown=document.documentElement.scrollTop;

}

else {

sdown=0;

sleft=0;

}

}

function createDiv(height, width) {
var div=document.createElement("div");
div.style.position="absolute";
div.style.height=height;
div.style.width=width;
div.style.overflow="hidden";
return (div);
}

// ]]>
</script>


KODE DI ATAS DI TARUH DI BAWAH <HEAD>

Read More

Singkatan-singkatan dalam Istilah Komputer

19.43 |




Bahasa Pemrograman
PASCAL : Pattern Analysis, Statistical Modelling and Computational Learning
BASIC : Beginner’s All-purpose Symbolic Instruction Code
FORTRAN : Formula Translating System
Bahasa Pemrograman Basis Web
PHP : Personal Home Page
SQL : Structured Query Language
HTML : HyperText Markup Language
xHTML : Extensible Hypertext Markup Language
XML : Extensible Markup Language
FTP : File Transfer Protocol
HTTP : Hypertext Transfer Protocol
DBMS : Database Management System
ADSL : Asymmetric Digital Subscriber Line
SDSL : Symmetric Digital Subscriber Line
HSDPA : High-Speed Downlink Packet Access
CDMA : Code division multiple access
CDMA-EvDO : Code division multiple access Evolution Data Only
GPRS : General Packet Radio Service
EDGE : Enhanced Data rates for Global Evolution
HDD : Hard disk drive
FDD : Floppy disk drive
RAR : Roshal ARchive (Eugene Roshal dari Russia adalah penemu sistem kompresi RAR)
VGA : Video Graphics Adapter
HDMI : High-Definition Multimedia Interface
DVI : Digital Visual Interface
VST : Virtual Studio Technology
VSTi : Virtual Studio Technology instrument
DX : Direct X
DXi : Direct X instrument (hampir mirip seperti VSTi)
MIDI : Musical Instrument Digital Interface
Video Extension, Audio Extension, and Still Picture Extension
MPEG : Moving Picture Experts Group
AVI : Audio Video Interleave
QT : Quick Time
AMR : Adaptive Multi-Rate
FLAC : Free Lossless Audio Codec
WAV : WAVe atau Waveform audio format
AAC : Advanced Audio Coding
OGG : Ogg Vorbis
AIFF : Audio Interchange File Format
WMA : Windows Media Audio
WMV : Windows Media Video
JPEG : Joint Photographic Experts Group (= JPG)
TIFF : Tagged Image File Format
BMP : BitMaP
PNG : Portable Network Graphics
GIF : Graphics Interchange Format
TGA : TARGA File Format
PCX : PC Paintbrush Exchange
PDF : Portable Document Format
SATA : Serial Advanced Technology Attachment
ATA : Advanced Technology Attachment
ATAPI : Advanced Technology Attachment with Packet Interface
PATA : Paralel Advanced Technology Attachment
IDE : Integrated Drive Electronics
RAID : Redundant Array of Independent Disks
BIOS : Basic Input/Output System
DOS : Disk Operating System
FAT : File Allocation Table
NTFS : Windows NT File System
AMD : Advanced Micro Devices, Inc.
IBM : International Business Machines
LAN : Local Area Network
WAN : Wide Area Network
MAN : Metropolis Area Network
WLAN : Wireless LAN
Wi-Fi : Wireless Fidelity
TCP : Transmission Control Protocol
IP : Internet Protocol
Istilah-istilah dalam modem ADSL
VPI : Virtual Path Identifier
VCI : Vitrual Channel Identifier
QoS : Quality of Service
CBR : Constant Bit Rate
VBR : Variable Bit Rate
UBR : Unspecified Bit Rate
PCR : Peak Cell Rate
SCR : Sustained Cell Rate
MBS : Maximum Burst Size
NAT : Network Address Translation
RIP : Routing Information protocol
DHCP : Dynamic Host Configuration Protocol
IGMP : Internet Group Multicast Protocol
DDNS : Dynamic Domain Name System
PnP : Plug n Play
UPnP : Universal Plug and Play
SNMP : Simple Network Management Protocol
ICMP : Internet Control Message Protocol
UDP : User Datagram Protocol
DHTML = Dynamic HTML
AJAX = asynchronous JavaScript and XML
CMOS: Complementary metal–oxide–semiconductor
IRQ   : Interrupt Request
DMA : Direct Memory Access
IR   : Infra Red
IRC : Internet Relay Chat
RAM : Random Access Memory
ROM : Read-only memory
SDRAM : Synchronous Dynamic RAM
DDRAM : Double Data Rate RAM
EDORAM : Extended Data Out RAM
EEPROM : Electrically Erasable Programmable Read-Only Memory
TTRAM : Twin Transistor RAM (Future RAM)
Z-RAM : Zero capacitor RAM (Future RAM)
RRAM : Resistive RAM (Future RAM)
nRAM : Nano-RAM (Future RAM)
SONOS : Silicon-Oxide-Nitride-Oxide-Silicon
PRAM : Phase-change RAM
FeRAM : Ferroelectric RAM
MRAM : Magnetoresistive RAM
FSB : Front Side Bus
USB : Universal Serial Bus
ISO = International Organization for Standardization
ZIP = Zipped files (compressed data)
RAR = Roshal Archiever
Read More

100 KEYBOARD SHORTCUTS

19.42 |

CTRL+C (Copy)
CTRL+X (Cut)
CTRL+V (Paste)
CTRL+Z (Undo)
DELETE (Delete)
SHIFT+DELETE (Delete the selected item permanently without placing the item in the Recycle Bin)
CTRL while dragging an item (Copy the selected item)
CTRL+SHIFT while dragging an item (Create a shortcut to the selected item)
F2 key (Rename the selected item)
CTRL+RIGHT ARROW (Move the insertion point to the beginning of the next word)
CTRL+LEFT ARROW (Move the insertion point to the beginning of the previous word)
CTRL+DOWN ARROW (Move the insertion point to the beginning of the next paragraph)
CTRL+UP ARROW (Move the insertion point to the beginning of the previous paragraph)
CTRL+SHIFT with any of the arrow keys (Highlight a block of text)
SHIFT with any of the arrow keys (Select more than one item in a window or on the desktop, or select text in a document)
CTRL+A (Select all)
F3 key (Search for a file or a folder)
ALT+ENTER (View the properties for the selected item)
ALT+F4 (Close the active item, or quit the active program)
ALT+ENTER (Display the properties of the selected object)
ALT+SPACEBAR (Open the shortcut menu for the active window)
CTRL+F4 (Close the active document in programs that enable you to have multiple documents open simultaneously)
ALT+TAB (Switch between the open items)
ALT+ESC (Cycle through items in the order that they had been opened)
F6 key (Cycle through the screen elements in a window or on the desktop)
F4 key (Display the Address bar list in My Computer or Windows Explorer)
SHIFT+F10 (Display the shortcut menu for the selected item)
ALT+SPACEBAR (Display the System menu for the active window)
CTRL+ESC (Display the Start menu)
ALT+Underlined letter in a menu name (Display the corresponding menu)
Underlined letter in a command name on an open menu (Perform the corresponding command)
F10 key (Activate the menu bar in the active program)
RIGHT ARROW (Open the next menu to the right, or open a submenu)
LEFT ARROW (Open the next menu to the left, or close a submenu)
F5 key (Update the active window)
BACKSPACE (View the folder one level up in My Computer or Windows Explorer)
ESC (Cancel the current task)
SHIFT when you insert a CD-ROM into the CD-ROM drive (Prevent the CD-ROM from automatically playing)
Dialog Box Keyboard Shortcuts
CTRL+TAB (Move forward through the tabs)
CTRL+SHIFT+TAB (Move backward through the tabs)
TAB (Move forward through the options)
SHIFT+TAB (Move backward through the options)
ALT+Underlined letter (Perform the corresponding command or select the corresponding option)
ENTER (Perform the command for the active option or button)
SPACEBAR (Select or clear the check box if the active option is a check box)
Arrow keys (Select a button if the active option is a group of option buttons)
F1 key (Display Help)
F4 key (Display the items in the active list)
BACKSPACE (Open a folder one level up if a folder is selected in the Save As or Open dialog box)
m*cro$oft Natural Keyboard Shortcuts
Windows Logo (Display or hide the Start menu)
Windows Logo+BREAK (Display the System Properties dialog box)
Windows Logo+D (Display the desktop)
Windows Logo+M (Minimize all of the windows)
Windows Logo+SHIFT+M (Restore the minimized windows)
Windows Logo+E (Open My Computer)
Windows Logo+F (Search for a file or a folder)
CTRL+Windows Logo+F (Search for computers)
Windows Logo+F1 (Display Windows Help)
Windows Logo+ L (Lock the keyboard)
Windows Logo+R (Open the Run dialog box)
Windows Logo+U (Open Utility Manager)
Accessibility Keyboard Shortcuts
Right SHIFT for eight seconds (Switch FilterKeys either on or off)
Left ALT+left SHIFT+PRINT SCREEN (Switch High Contrast either on or off)
Left ALT+left SHIFT+NUM LOCK (Switch the MouseKeys either on or off)
SHIFT five times (Switch the StickyKeys either on or off)
NUM LOCK for five seconds (Switch the ToggleKeys either on or off)
Windows Logo +U (Open Utility Manager)
Windows Explorer Keyboard Shortcuts
END (Display the bottom of the active window)
HOME (Display the top of the active window)
NUM LOCK+Asterisk sign (*) (Display all of the subfolders that are under the selected folder)
NUM LOCK+Plus sign (+) (Display the contents of the selected folder)
NUM LOCK+Minus sign (-) (Collapse the selected folder)
LEFT ARROW (Collapse the current selection if it is expanded, or select the parent folder)
RIGHT ARROW (Display the current selection if it is collapsed, or select the first subfolder)
Shortcut Keys for Character Map
After you double-click a character on the grid of characters, you can move through the grid by using the keyboard shortcuts:
RIGHT ARROW (Move to the right or to the beginning of the next line)
LEFT ARROW (Move to the left or to the end of the previous line)
UP ARROW (Move up one row)
DOWN ARROW (Move down one row)
PAGE UP (Move up one screen at a time)
PAGE DOWN (Move down one screen at a time)
HOME (Move to the beginning of the line)
END (Move to the end of the line)
CTRL+HOME (Move to the first character)
CTRL+END (Move to the last character)
SPACEBAR (Switch between Enlarged and Normal mode when a character is selected)
m*cro$oft Management Console (MMC) Main Window Keyboard Shortcuts
CTRL+O (Open a saved console)
CTRL+N (Open a new console)
CTRL+S (Save the open console)
CTRL+M (Add or remove a console item)
CTRL+W (Open a new window)
F5 key (Update the content of all console windows)
ALT+SPACEBAR (Display the MMC window menu)
ALT+F4 (Close the console)
ALT+A (Display the Action menu)
ALT+V (Display the View menu)
ALT+F (Display the File menu)
ALT+O (Display the Favorites menu)
MMC Console Window Keyboard Shortcuts
CTRL+P (Print the current page or active pane)
ALT+Minus sign (-) (Display the window menu for the active console window)
SHIFT+F10 (Display the Action shortcut menu for the selected item)
F1 key (Open the Help topic, if any, for the selected item)
F5 key (Update the content of all console windows)
CTRL+F10 (Maximize the active console window)
CTRL+F5 (Restore the active console window)
ALT+ENTER (Display the Properties dialog box, if any, for the selected item)
F2 key (Rename the selected item)
CTRL+F4 (Close the active console window. When a console has only one console window, this shortcut closes the console)
Remote Desktop Connection Navigation
CTRL+ALT+END (Open the m*cro$oft Windows NT Security dialog box)
ALT+PAGE UP (Switch between programs from left to right)
ALT+PAGE DOWN (Switch between programs from right to left)
ALT+INSERT (Cycle through the programs in most recently used order)
ALT+HOME (Display the Start menu)
CTRL+ALT+BREAK (Switch the client computer between a window and a full screen)
ALT+DELETE (Display the Windows menu)
CTRL+ALT+Minus sign (-) (Place a snapshot of the active window in the client on the Terminal server clipboard and provide the same functionality as pressing PRINT SCREEN on a local computer.)
CTRL+ALT+Plus sign (+) (Place a snapshot of the entire client window area on the Terminal server clipboard and provide the same functionality as pressing ALT+PRINT SCREEN on a local computer.)
m*cro$oft Internet Explorer Navigation
CTRL+B (Open the Organize Favorites dialog box)
CTRL+E (Open the Search bar)
CTRL+F (Start the Find utility)
CTRL+H (Open the History bar)
CTRL+I (Open the Favorites bar)
CTRL+L (Open the Open dialog box)
CTRL+N (Start another instance of the browser with the same Web address)
CTRL+O (Open the Open dialog box, the same as CTRL+L)
CTRL+P (Open the Print dialog box)
CTRL+R (Update the current Web page)
CTRL+W (Close the current window) 
Read More

ISTILAH – ISTILAH DASAR DALAM INTERNET

19.40 |



 
Arti Istilah-Istilah Dalam Internet
Mungkin anda pernah membaca istilah-istilah yang tidak anda mengerti saat anda menggunakan internet. Apakah anda ingin mengetahui artinya?
Mungkin artikel ini akan membantu anda mengetahui jawabannya..
1. Browsing adalah menelusuri/berselancar/surfing secara langsung di internet/dunia maya
2. chatting adalah suatu fasilitas dalam Internet untuk berkomunikasi sesama pemakai Internet yang sedang on-line. Komunikasi dapat berupa teks atau suara (chatting voice).
3. Teleconference adalah pertemuan yang dilakukan oleh dua orang atau lebih yang dilakukan melewati telefon atau koneksi jaringan. Pertemuan tersebut hanya dapat menggunakan suara (audio conference) atau menggunakan video (video conference) yang memungkinkan peserta konferensi saling melihat. Dalam konferensi juga dimungkinkan menggunakan whiteboard yang sama dan setiap peserta mempunyai kontrol terhadapnya, juga berbagi aplikasi. Produk yang mendukung teleconference pertama melalui internet adalah NetMeeting yang dikeluarkan oleh Microsoft.
4. Download adalah transfer data melalui jalur komunikasi digital dari sistem yang lebih besar atau pu sat (host atau server) ke sistem yang lebih kecil (client). kebalikan dari download adalah upload.
5. Spam merujuk kepada praktek pengiriman pesan komersial atau iklan kepada sejumlah besar news group atau email yang sebetulnya tidak berkeinginan atau tidak tertarik menerima pesan tersebut.
6. Mailing List adalah Fasilitas E-mail Internet ,dimana pemakai dafat mendaftarkan diri ke suatu daftar pengiriman E-mail untuk suatu topik tertentu,sehingga pemakai akan secara otomatis mendapatkan kiriman E-mail setiap anggota Mailing_List Manager,.
7. VoIP (Voice over Internet Protocol) adalah nama lain internet telephony. Lihat internet telephony.
8. E-coomerce (electronic commerce) adalah bisnis yang transaksinya dilakukan dengan bantuan jaringan komputer secara online. Transaksi tersebut adalah penjual dan pembelian barang dan jasa serta pembayaran yang dilakukan melewati komunikasi digital. Teknologi yang digunakan antara lain adalah Internet dan electronic data interchange (EDI).
9. E-mail (electronic mail) adalah pesan elektronik yang dikirim dari komputer seorang pengguna ke komputer lainnya. E-mail dapat dikirimkan melalui local area network (LAN) atau Internet. Kalau dahulu, data yang dikirim hanya berupa teks, sekarang dengan e-mail dapat berisi gambar, suara, dan bahkan klip video.
10.Browser adalah singkatan untuk istilah Web Browser. Browser adalah sebuah program yang digunakan untuk mengakses World Wide Web (atau internet), dan fasilitas lainnya. Saat ini terdapat sejumlah browser yang populer, seperti Internet Explorer, Netscape Navigator, Opera, dan Mozilla.
11.ASP (Active Server Pages) adalah spesifikasi untuk membuat halaman Web dinamis menggunakan ActiveX script. Sewaktu browser membuka halaman ASP, server Web membuat halaman dengan kode HTML dan mengirimkannya kepada browser.
12. FTP (file transfer protocol) adalah protokol Internet yang digunakan untuk menyalin file antarkomputer.
Berikut ini beberapa istilah tersebut beserta artinya

•ADSL – Asymetric Digital Subscriber Line.Sebuah tipe DSL dimana upstream dan downstream berjalan pada kecepatan yang berbeda.

•Anonymous FTP -Situs FTP yang dapat diakses tanpa harus memiliki Login tertentu.
•Bandwidth : Besaran yang menunjukkan seberapa banyak data yang dapat dilewatkan dalam koneksi melalui sebuah network.
•Banner :adalah media informasi dalam bentuk image / gambar untuk menayangkan iklan bergambar pada sebuah webpage.
•CGI/Perl :bahasa komputer yang digunakan untuk membuat program interaktif di dalam sebuah webpage. Dikembangkan oleh pemakai komputer UNIX/LINUX.
•Chat :adalah sebuah program yang diterapkan dalam sebuah jaringan komputer (termasuk internet) yang digunakan oleh user untuk mengirim dan menerima pesan dalam bentuk tulisan (ketik) secara realtime (idealnya tidak ada waktu tunggu).
•Chatting :istilah khusus yang digunakan untuk melakukan interaksi di program chat.
•Client :adalah sebuah komputer yang bertugas menerima data dan informasi yang telah diolah oleh Server yang diperlukan oleh user. Client biasanya di kendalikan / digunakan oleh seorang user.
•Dial-Up :adalah jenis koneksi internet dengan menggunakan jaringan telpon.
•Dial-Up Networking :adalah fasilitas network yang dimiliki oleh sistem operasi Microsoft Windows yang dapat digunakan untuk melakukan koneksi Dial-Up, yaitu koneksi jaringan, baik jaringan komputer atau internet, dengan menggunakan fasilitas jaringan telpon.
•DNS – Domain Name Service.Merupakan layanan di internet untuk jaringan yang menggunakan Tcp/IP. Layanan ini digunakan untuk mengidentifikasi sebuah komputer dengan nama bukan dengan menggunakan alamat IP (IP Adress)adalah nama khusus dan unik yang digunakan untuk penamaan situs web pada internet.
•Download :adalah proses pengambilan atau transfer file dari sebuah situs web internet ke media penyimpanan yang terdapat di komputer Client yang dipakai oleh user.
•E-Commerce :Electronic Commerce adalah istilah yang digunakan untuk menyatakan perdagangan atau transaksi perbankan elektronis di internet, baik Business to Business E-Commerce maupun Business to Costumer E-Commerce.
•E-mail :atau elektronic mail atau surat elektronik adalah sebuah program yang diterapkan dalam sebuah jaringan komputer (termasuk internet) yang digunakan oleh user untuk mengirimkan pesan dalam bentuk tulisan (ketik) atau gambar kepada user lain di dalam atau di luar jaringan komputer tersebut. User dapat pula menerima (receive e-mail), membalas (reply e-mail), dan meneruskan (forward e-mail) kepada user lain.
•FAQ Frequently Asked Questions. Iaitu kumpulan pertanyaan yang sering diajukan beserta jawabannya.
•Firewall Aplikasi pengaman komputer dari aktivitas hacking.
•finger Protocol untuk mengetahui informasi seorang user di sebuah komputer.
•flame Amukan seseorang terhadap orang lain melalui Internet. Flame biasanya dilontarkan terhadap orang yang melanggar kesopanan.
•FreewareAplikasi yang dapat didownload dan digunakan secara gratis.
•freenet :Suatu sistem on-line yang gratis.
•FTP :file transfer protocol adalah protokol (antarmuka) yang digunakan untuk men-transfer, mengirim atau menerima file dari internet.
•Googling: Melakukan Pencarian dengan mesin Pencari Google.
•Hacker :adalah seorang yang ahli dalam bidang komputer, internet pada khususnya, dimana dengan keahliannya tersebut dapat menembus, merusak, serta melakukan hal-hal yang tidak diinginkan dalam suatu jaringan komputer (termasuk internet). Misalnya merusak website yang ada, merusak program yang telah di buat oleh webmaster, atau administrator.
•Homepage :adalah halaman muka atau halaman utama yang ditampilkan dari sebuah website di internet, jika user memasuki alamat site tersebut pada webbrowser.
•HTML :Hyper Text Markup Language, adalah bahasa komputer yang digunakan untuk membuat sebuah halaman webpage.
•Http:// http atau Hyper Text Transfer Protocol adalah kode yang dituliskan pada awal site, untuk menjelaskan pada program webbrowser bahwa protokol (antarmuka) yang digunakan adalah http.
•Internet Explorer :program komputer yang digunakan untuk dapat menampilkan halaman-halaman yang ada pada sebuah website di internet, yang dibuat oleh Microsoft Corp.
•Internet-TV : adalah sebuah TV yang dimodifikasi untuk dapat digunakan sebagai media / alat untuk berkomunikasi dan berinteraksi melalui internet.
•Intranet : sumber daya informasi yang digunakan untuk kepentingan internal dari suatu instansi atau perusahaan dengan menggunakan jaringan komputer yang ada.
•ISP : Internet Service Provider, adalah lembaga/instansi/perusahaan yang menyediakan jasa pelayanan penyedia jaringan internet.
•Login : otorisasi yang dilakukan oleh seorang user dengan memasukkan username dan password di dalam sebuah jaringan komputer (termasuk internet), program interaksi, atau surat elektronik (e-mail).
•Logoff :tidak melanjutkan kembali atau keluar dari sebuah sebuah jaringan komputer (termasuk internet), program interaksi, atau surat elektronik (e-mail).
•Lycos : adalah search engine di internet yang dapat digunakan oleh user untuk mencari. http://www.lycos.com.
•Malware Kepanjangan dari Malicious Software. Program yang biasanya digunakan untuk mencari kelemahan suatu software dan biasanya merusak software dalam komputer anda.
•Modem : adalah alat komunikasi tambahan yang digunakan oleh komputer / notebook agar bisa melakukan koneksi dengan jaringan komputer lain, internet misalnya.
•Netscape Navigator : program komputer yang digunakan untuk dapat menampilkan halaman-halaman yang ada pada sebuah website di internet, yang dibuat oleh Netscape Corp.Password : kode rahasia yang digunakan oleh user untuk dapat mengotorisasikan username yang dia miliki untuk dapat semasuki sebuah jaringan komputer (termasuk internet), program interaksi, atau surat elektronik (e-mail).
•PhisingTindakan kejahatan di internet yang memperdaya korbannya dengan membuat suatu situs mirip dengan aslinya untuk mendapatkan data pribadi korban.
•Plugin : adalah program khusus yang dapat di tambahkan pada program webbrowser dimana dapat membantu webbrowser untuk dapat menampilkan animasi, program interaksi, 3D object, tertentu dengan baik.
•Script : adalah kumpulan perintah yang disusun dalam bahasa komputer tertentu (Java, VisualBasic, CGI/Perl) untuk melakukan sebuah program interaktif atau animasi dalam sebuah webpage.
•Search Engine : adalah sebuah program di internet (website tertentu) yang digunakan untuk mencari informasi tertentu yang di perlukan oleh user. Misal : Yahoo, Lycos, Altavista, Excite dan lainnya.
•Server : adalah sebuah komputer yang bertugas melayani pembagian serta pengolahan informasi yang diperlukan oleh Client. Server biasanya di kendalikan oleh seorang admin.
•SpamPesan berupa e-mail masal yang tidak qta inginkan, bisa berup pesan tak berarti atau iklan yang kurang bermanfaat dari pihak yang tidak dikenal.
•Spammer Orang yang mengirim junk mail atau spam.
•Spoofing Merupakan sebuah teknik serangan melalui authentifikasi suatu sistem ke sistem lainnya dengan menggunakan paket-paket tertentu. Biasanya spoofing dilakukan dengan cara membuat situs web tiruan berdasarkan sebuah web.Upload : adalah proses pengiriman atau transfer file dari media penyimpanan yang terdapat di komputer Client yang dipakai oleh user ke sebuah situs web di internet.
•Spyware Program yang dirancang untuk mengintip isi komputer dan aktivitas seseorang saat berkomputer, dan hasil dari intipan akan dikirim kepada pihak yang mengontrol program tersebut. Program ini juga bisa mengintip isi PC yang dimasukinya.
•User : pemakai atau pengguna dalam sebuah jaringan komputer (termasuk internet), program interaksi, atau surat elektronik (e-mail).
•Virus : adalah program tersembunyi yang dapat ‘menebeng’ atau ‘membonceng’ pada program lain yang terdapat pada internet, atau pada surat elektronik, yang sangat merugikan user dan admin, dimana program tersebut dapat merusak program lain yang dimiliki oleh user di komputernya, dan juga dapat merusak program interaksi yang terdapat pada situs web yang sedang di maintain oleh admin.
•VisualBasic : bahasa komputer yang digunakan untuk membuat program interaktif di dalam sebuah webpage. Dikembangkan oleh perusahaan Microsoft Corp.
•Voice-mail : sama seperti halnya dengan e-mail akan tetapi yang dikirimkan bukan berupa teks, melainkan berupa suara.
•WAP : Wireless Application Protocol, adalah fasilitas pada handphone yang dapat digunakan untuk menjalankan aplikasi tertentu yang terhubung dengan internet. Dengan WAP kita dapat menggunakan internet tidak saja untuk menerima dan mengirim handphone, bahkan untuk kalender, jadwal, serta gambar.
•Web browser : program komputer yang digunakan untuk menampilkan webpage. Contoh web browser : netscape navigator, internet explorer, dan lain-lain.
•Webmaster : seorang yang bertanggungjawab untuk membuat dan memelihara situs web yang bersangkutan.
•Web page : adalah halaman yang dapat ditampilkan di sebuah website di internet, yang dapat menampilkan, teks, gambar, bahkan suara, animasi dan video.
•Website : adalah sebuah kumpulan halaman (webpages) yang di awali dengan halaman muka (homepage) yang berisikan informasi, iklan, serta program interaksi.
WWW/(Word wide web):
Layanan internet yang menggunakan konsep HYPERTEXT antar dokumen yang berkaitan, didalamnya terdapat berjuta halaman web (web page). Protokol untuk mengaksees WWW adalah HTTP (hypertext transfer protokol).
PROTOKOL:
Sejumlah aturan yang menentukan bagaimana dua buah komputer atau lebih saling berkomunikasi.
HYPERTEXT:
serangkaian kata pada dokumen HTML yang mempunyai hubungan (link) dengan dokumen HTML lain.
HTML:
Hypertext mark up languange merupakan standar forma untuk dokumen Hypertext.
HYPERLINK:
Hubungan tersembunyi antar dokumen HTML pada sebuah WEB server, biasa ditampilkan dengan format bergaris bawah.
WEB PAGE/WEB:
Suatu halaman yang memuat banyak situs.
HOME PAGE:
Tampilan awal dari suatu website yang memuat informasi atau gambaran singkat tentang apa isi dari website tersebut.
SITUS:
Suatu alamat di dalam sebuah Web.
BROWSER:
Sofware yang digunakan untuk surfing(menjelajah internet).
SHAREWARE:
Software yang merupakan sample yang dapat dicoba dulu, dan jika berminat kita dapat menghubungi penjual untuk membelinya. seperti DEMO gitu deh.
FREEWARE:
Software yang disediakan bebas yang bener-bener gratis untuk para pengguna internet.
attachment = lampiran
bandwidth = lebar pita
broadband = pita lebar, jalur lebar
browser = peramban, penjelajah
bulletin board = papan buletin
chat = obrol, obrolan, rumpi
crash = bertabrakan (biasa untuk perangkat lunak/keras bermasalah)
collission = tabrakan data
connection = sambungan
copy = salin, kopi, ganda
cut = potong
cyberspace = dunia maya
database = pangkalan data, basis data
delete/del = hapus
domain = ranah
download = ambil data, unduh, muat turun
edit = sunting, ubah
e-mail = imel, ratel / surel / surat-e (surat elektronik), posel (pos elektronik), surat digital
forward/fwd (e-mail) = terusan
homepage = laman
hosting = hosting
interferensi = gangguan signal (berkaitan dengan signal wireless)
install = pasang
interface = antarmuka
keyword = kata kunci
lag = lambat
link = taut, kait, pautan, pranala
load = muat
login / log in / log on / logon = log masuk, masuk log, lihat sign in
logout / log out / log off / logoff = log keluar, keluar log, lihat sign out
network = jaringan
newsgroup = kelompok warta, kelompok diskusi
mailing list = milis, senarai, forum ratel
network = jaringan
networking = jejaring
off line = tidak terhubung, terputus, luring (luar jaringan)
online / on line = terhubung, tersambung, daring (dalam jaringan)
passphrase = frase sandi, kalimat sandi
password = kata sandi
paste = tempel, rekatkan
preview = pratonton, pratilik, pratayang
internet service provider = penyelenggara jasa internet
save = simpan
scan = pindai
server = peladen
sign in / signin / sign on = catat masuk, lihat login
sign out / sign off = catat keluar, lihat logout
surfing = berselancar, selancar maya
update = pemutakhiran, pembaruan
upload = unggah, muat naik
username = nama pengguna
virtual reality = realitas maya
webpage = halaman web
website = situs web
wireless = nirkabel/tanpa kabel
Cetak Halaman Ini
Read More

cara menambahkan gambar jatuh di blog

17.20 |

1. Login ke akun blogger
2. Dari halaman Dashboard, pilih Tata Letak lalu pilih Edit HTML.
3. Save dlu template anda takut nanti terjadi kesalahan pada pengerjaan anda
4. Copas script di bawah ini dan letakkan (paste) di bawah kode <head> (yang letaknya di awal-awal script template blog)

<script language='JavaScript'>
var no = 3;
var speed = 2;
var snowflake = &quot; http://i301.photobucket.com/albums/nn47/signupf/love_me.gif &quot;;
</script>
<script language='JavaScript' src='http://sites.google.com/site/ruangsc/enes/fallinsnow.js'/>


var no = 3;     bisa di ganti angkanya untuk jumlah gambar turun dari atas

var speed = 2;    bisa di ganti untuk kecepatan gambar

http://i301.photobucket.com/albums/nn47/signupf/love_me.gif   bisa di ganti untuk merubah gambar  

Read More