Wednesday 17 June 2015

Cisco SDM

Membutuhkan:
1.Valid IP address router / perangkat yang hendak dikonfig
2. HTTP dan HTTPS diaktifkan di/pada router

Login to Cisco Router

1. Try HTTP or HTTPS to default ip address: 10.10.10.1
2. Try Telnet to default ip address: 10.10.10.1 default username and password: cisco cisco. If fail then telnet password and username isn;t set. The last option will be
3. Try Console.

Tuesday 16 June 2015

Belajar CSS

Belajar CSS itu belajar atribut-atribut tag HTML dan belajar mengarahkan.

Tag-tag html memiliki standar atribut. Standard attribut adalah:

Attribute Options Function
accesskey User Defined Specifies a keyboard shortcut to access an element.
align right, left, center Horizontally aligns tags
background URL Places an background image behind an element
bgcolor numeric, hexidecimal, RGB values Places a background color behind an element
class User Defined Classifies an element for use with Cascading Style Sheets.
contenteditable true, false Specifies if the user can edit the element's content or not.
contextmenu Menu id Specifies the context menu for an element.
data-XXXX User Defined Custom attributes. Authors of a HTML document can define their own attributes. Must start with "data-".
draggable true,false, auto Specifies whether or not a user is allowed to drag an element.
height Numeric Value Specifies the height of tables, images, or table cells.
hidden hidden Specifies whether element should be visible or not.
id User Defined Names an element for use with Cascading Style Sheets.
item List of elements Used to group elements.
itemprop List of items Used to group items.
spellcheck true, false Specifies if the element must have it's spelling or grammar checked.
style CSS Style sheet Specifies an inline style for an element.
subject User define id Specifies the element's corresponding item.
tabindex Tab number Specifies the tab order of an element.
title User Defined "Pop-up" title for your elements.
valign top, middle, bottom Vertically aligns tags within an HTML element.
width Numeric Value Specifies the width of tables, images, or table cells.
CSS itu untuk mengontrol style elemen-elemen web atau tag-tag html dengan mudah.



Java script
Java script itu seperti membuat pemrograman dalam sebuah web.
Hari ini gw mencoba memperbaiki link internet speedy gw sendiri.
Diatas ada kabel yang terbuka gw perban sendiri. Btw diatas ada 4 kabel total. Total disini maksudnya ada 4 kabel total.

Setelah gw perban, kecepatannya jadi wuss, wuss. Ternyata kecepatan download itu tergantung dari level sinyal.

Darimana gw tau kecepatannya wuss, wuss? Dari gw buka halama web yang ringan dan terbukanya cepat.
 

Cara belajar HTML

Belajar HTML itu belajar tag.

Jadi cara belajar HTML adalah mengoutputkan semua tag yang kamu tahu ke dalam body html setelah dibuat template-nya dan beberapa info penting.

Reference yang gw ambil:
1. Tutorialpoint
2. W3School

Template html adalah:
<html>
<head>
</head>
<body>
</body>
</html>

Contoh:
 <html>
<head>
</head>

Info penting:
1. Komen
Komen itu kayak tanda panah <!---Komen -->
Komen itu gak ditampilkan.
2.
<body>
<h1> Hello World! </h1>
<p> This is a paragraph </p>
<!----- Fuck DJ ---->
<a href="http://www.google.com">This is a link </a><br />
<img src="D:/pic1.png">This is an image</img>
'this is an unordered list (un numbered list)
<ul>
<li> This is an unordered list </li>
<li> This is an unordered list </li>
</ul>

<ol>
<li>This is an ordered list </li>
<li>This is an ordered list </li>
</ol>

<table border="1px">
<tr>
<td>Col 1</td>
<td>Col 2</td>
</tr>
<tr>
<td> Col 1 </td>
<td> Col 2 </td>
</tr>
</table>
<br />
This is an iframe to another web <br />
<iframe target="http://www.facebook.com?">This is an iframe </iframe>
<br />
This is a button
<button>M</button>
This is list
<list>M</list>
</body>

</html>