If you want something you've never had, you must be willing to do something you've never done!

Powered by Blogger.
Welcome Cerita Semalam Blog - Community Indonesia - Community We are together, we Belong Together, For Our Common!
Photobucket

FriendsBomb,Mengebomb Dunia Lewat Jejaring Sosial! 0

Cerita Semalam Aaz | 7:39 PM |


Lagi lagi anak indonesia mengeluarkan inovasinya. Kali ini salah satu anak bangsa ini membuat jejaring sosial yag bernama Friendsbomb dimana jejaring ini mengikuti suksesor mereka yaitu Salingsapa.com dan Koprol.com. Dimana situs pertemanan ini menggabungkan sistem antara twiiter,koprol facebook  dan friendster yang dikolaborasikan menjadi satu kesatuan yang sinergis berikut adalah tampilan beranda dari FriendsBomb

beranda friendsbomb
beranda friendsbomb



Keunggulan jejaring ini adalah postingan dari facebook namun kita juga bisa ngeetweet seperti twitter. Dan beberapa istilah dalam situs ini yaitu “Bombback ” dimana “Bombback” ini sama hal nya seperti “follback” di twitter. Lalu dari segi kecepatan web ini sangat ringan dan bila anda ingin mengirim wall atau comment ke teman anda cukup mengetikkan [@namatemananda koment anda] lalu dalam hitungan detik comment anda langsung terpublish di wall teman anda. Selain itu di situs ini juga memiliki sarana mempromosikan web anda (bila anda memiliki website), caranya yaitu anda tinggal masuk ke profil anda lalu klik rss feed lalu masukkan rss anda dan tambah artikel anda dalam waktu beberapa jam kemudian rss anda akan tampil di FriendsBomb. Beikut beberapa menu di FriendsBomb
Sub Menu FriendsBomb
Sub Menu FriendsBomb
Selain itu kita juga bisa mengunggah foto video dkk seperti halnya di facebook, dan bila kita ingin menulis karakter kita bisa sampai 400 karakter beda halnya dengan twitter yang hanya 140 jadi bila anda ingin menulis nama satu kampung anda bisa itu itulis disitu heeheh :D . Dan juga disana terdapat public status dimana kita tidak usa susah susah mengadd orang jika kita ingin melihat status atau orang yang kita tuju.
Selain itu kita juga bisa memasukkan akun twitter kita di menu twitter jadi semua isi dari twitter anda bisa anda masukkan ke friendsbomb dan juga yang tak kalah asik kita juga bisa mengoneksikan antara FriendsBombdengan Twitdeck. Lalu di sidebar kanan anda ada beberapa tampilan yaitu orang yang online terakhir, lalu anggota populer dimana disini kita bisa melihat user yang paling banyak diikuti oleh user lain dan yang terakhir yaitu anggota terbaru diman disini akan muncul daftar orang yang baru bergabung dengan FriendsBomb.
Lalu di menu kiri ada menu reshares dimana kita bisa membagi status kita kepada orang lain, lalu pada menu favorit kita juga bisa membook mark status dan apapun yang berada dalam FriendsBomb. Dan tak lupa kita bisa membuat grup layaknya di facebook. Dan pada situs ini juga ada chalenge menarik dimana bila kita bisa mengajak 150 teman kita maka kita bisa mendapatkan $20 untuk 2 orang. Jadi pastikan anda bergabung dan mengajak tman anda sebanyak-banyaknya.
Mungkin itu saja yang bisa saya ulas pada kesempatan kali ini, informasi selanjutnya akan saya perbarui padaFriendsBomb part 2 dimana saya akan menjelaskan fitur-fitur tambahan pada jejaring ini. Dan menurut rencana jejaring ini kan diperbarui dengan fasilitas chat dimana kita bisa mengechat layaknya di facebook, namun kita tunggu saja perkembangan dari situs kebanggan anak bangsa ini. Dan pastikan anda cepat bergabung denganFriendsBomb dan ajak teman sebanyak-banyaknya dan dapatkan hadiah menarik dari FriendsBomb jadi tunggu apa lagi selamat mencoba dan Selamat data Di FriendsBombs

source code : news.kc-tutor.com

Polling to my friend by CreativeAaz 4

Cerita Semalam Aaz | 9:22 PM |

Tolong partisipasinya untuk polling kepada salah satu teman saya, mungkin nantinya bisa membantu dia


silahkan saja anda kunjungi link saya ini

Polling by CreativeAaz

jangan lupa untuk ajak teman teman anda juga.

sekali lagi polling ada di link ini

Polling by CreativeAaz

polling itu baru buat maaf kalo belum sempurna

HTML Tags 0

Cerita Semalam Aaz | 7:24 AM | , ,



HTML Tags

What are HTML tags?
  •  HTML tags are used to mark-up HTML elements
  •  HTML tags are surrounded by the two characters < and >
  •  The surrounding characters are called angle brackets
  •  HTML tags normally come in pairs like <b> and </b>
  •  The first tag in a pair is the start tag, the second tag is the end tag
  •  The text between the start and end tags is the element content
  •  HTML tags are not case sensitive, <b> means the same as <B>
Logical vs. Physical Tags
In HTML there are both logical tags and physical tags. Logical tags are designed to describe (to the browser) the enclosed text's meaning. An example of a logical tag is the <strong> </strong> tag. By placing text in between these tags you are telling the browser that the text has some greater importance. By default all browsers make the text appear bold when in between the <strong> and </strong> tags.
Physical tags on the other hand provide specific instructions on how to display the text they enclose. Examples of physical tags include:
  •  <b>: Makes the text bold.
  •  <big>: Makes the text usually one size bigger than what's around it.
  •  <i>: Makes text italic.
Physical tags were invented to add style to HTML pages because style sheets were not around, though the original intention of HTML was to not have physical tags. Rather than use physical tags to style your HTML pages, you should use style sheets.

HTML Elements

Remember the HTML example from the previous page:

<html>
<head>
<title>My First Webpage</title>
</head>
<body>
This is my first homepage. <b>This text is bold</b>
</body>
</html>
This is an HTML element:

<b>This text is bold</b>

The HTML element begins with a start tag: <b>
The content of the HTML element is: This text is bold
The HTML element ends with an end tag: </b>

The purpose of the <b> tag is to define an HTML element that should be displayed as bold.

This is also an HTML element:

<body>
This is my first homepage. <b>This text is bold</b>
</body>

This HTML element starts with the start tag <body>, and ends with the end tag </body>. The purpose of the <body> tag is to define the HTML element that contains the body of the HTML document.

Nested Tags
You may have noticed in the example above, the <body> tag also contains other tags, like the <b> tab. When you enclose an element in with multiple tags, the last tag opened should be the first tag closed. For example:

<p><b><em>This is NOT the proper way to close nested tags.</p></em></b>
<p><b><em>This is the proper way to close nested tags. </em></b></p>

Note: It doesn't matter which tag is first, but they must be closed in the proper order.

Why Use Lowercase Tags?
You may notice we've used lowercase tags even though I said that HTML tags are not case sensitive. <B> means the same as <b>. The World Wide Web Consortium (W3C), the group responsible for developing web standards, recommends lowercase tags in their HTML 4 recommendation, and XHTML (the next generation HTML) requires lowercase tags.

Tag Attributes
Tags can have attributes. Attributes can provide additional information about the HTML elements on your page. The <tag> tells the browser to do something, while the attribute tells the browser how to do it. For instance, if we add the bgcolor attribute, we can tell the browser that the background color of your page should be blue, like this: <body bgcolor="blue">.
This tag defines an HTML table: <table>. With an added border attribute, you can tell the browser that the table should have no borders: <table border="0">. Attributes always come in name/value pairs like this: name="value". Attributes are always added to the start tag of an HTML element and the value is surrounded by quotes.

Quote Styles, "red" or 'red'?
Attribute values should always be enclosed in quotes. Double style quotes are the most common, but single style quotes are also allowed. In some rare situations, like when the attribute value itself contains quotes, it is necessary to use single quotes:

name='Admin "machine Gun" Aaz'

Note: Some tags we will discuss are deprecated, meaning the World Wide Web Consortium (W3C) the governing body that sets HTML, XML, CSS, and other technical standards decided those tags and attributes are marked for deletion in future versions of HTML and XHTML. Browsers should continue to support deprecated tags and attributes, but eventually these tags are likely to become obsolete and so future support cannot be guaranteed.



SEE VIDEO



HTML Basic 2

Cerita Semalam Aaz | 6:50 AM | ,



HTML Basics

Welcome to HTML Basics. This workshop leads you through the basics of Hyper Text Markup Language (HTML). HTML is the building block for web pages. You will learn to use HTML to author an HTML page to display in a web browser.
Objectives:
By the end of this workshop, you will be able to:
  •  Use a text editor to author an HTML document.
  •  Be able to use basic tags to denote paragraphs, emphasis or special type.
  •  Create hyperlinks to other documents.
  •  Create an email link.
  •  Add images to your document.
  •  Use a table for layout.
  •  Apply colors to your HTML document.
Prerequisites:
You will need a text editor, such as Notepad and an Internet browser, such as Internet Explorer or Netscape.
Admin: What is Notepad and where do I get it?
Aaz: Notepad is the default Windows text editor. On most Windows systems, click your Start button and choose Programs then Accessories. It should be a little blue notebook.

Mac Users: SimpleText is the default text editor on the Mac. In OSX use TextEdit and change the following preferences: Select (in the preferences window) Plain text instead of Rich text and then select Ignore rich text commands in HTML files. This is very important because if you don't do this HTML codes probably won't work.

One thing you should avoid using is a word processor (like Microsoft Word) for authoring your HTML documents.

What is an html File?
HTML is a format that tells a computer how to display a web page. The documents themselves are plain text files with special "tags" or codes that a web browser uses to interpret and display information on your computer screen.
  •  HTML stands for Hyper Text Markup Language
  •  An HTML file is a text file containing small markup tags
  •  The markup tags tell the Web browser how to display the page
  •  An HTML file must have an htm or html file extension
Try It?
Open your text editor and type the following text:
<html>
<head>
<title>My First Webpage</title>
</head>
<body>
This is my first homepage. <b>This text is bold</b>
</body>
</html>

Save the file as mypage.html. Start your Internet browser. Select Open (or Open Page) in the File menu of your browser. A dialog box will appear. Select Browse (or Choose File) and locate the html file you just created - mypage.html - select it and click Open. Now you should see an address in the
dialog box, for example C:\MyDocuments\mypage.html. Click OK, and the browser will display the page. To view how the page should look, visit this web page: http://profdevtrain.austincc.edu/html/mypage.html

Example Explained
What you just made is a skeleton html document. This is the minimum required information for a web document and all web documents should contain these basic components. The first tag in your html document is <html>. This tag tells your browser that this is the start of an html document. The last tag in your document is </html>. This tag tells your browser that this is the end of the html document.
The text between the <head> tag and the </head> tag is header information. Header information is not displayed in the browser window.
The text between the <title> tags is the title of your document. The <title> tag is used to uniquely identify each document and is also displayed in the title bar of the browser window.
The text between the <body> tags is the text that will be displayed in your browser.
The text between the <b> and </b> tags will be displayed in a bold font.

HTM or HTML Extension?

When you save an HTML file, you can use either the .htm or the .html extension. The .htm extension comes from the past when some of the commonly used software only allowed three letter extensions. It is perfectly safe to use either .html or .htm, but be consistent. mypage.htm and mypage.html are treated as different files by the browser.

How to View HTML Source
A good way to learn HTML is to look at how other people have coded their html pages. To find out, simply click on the View option in your browsers toolbar and select Source or Page Source. This will open a window that shows you the actual HTML of the page. Go ahead and view the source html for this page.


SEE VIDEO



BATTLE: LOS ANGELES 3

Cerita Semalam Aaz | 2:51 PM |


Dated Released : 11 March 2011
Quality : R5 XViD-IMAGiNE
Info : imdb.com/title/tt1217613/
Lihat : trailer
Starring : Aaron Eckhart, Michelle Rodriguez, Bridget M
Genre : Action | Sci-Fi | Thriller
—————————————-
Uploader by
Download Files: part1 – part2 – part3 – part4 [525MB-mkv]|eu
Download Subtitle Indonesia 
—-
*For New Visitors click here How to Combine Files Extension .001 and .002
————————————————————————————
Alternatif Link:
[R5 XViD-IMAGiNE|525MB-mkv]|mediafire|password=cinema3satu
Download Files: part1 – part2 – part3 – part4|Sub Ind
————————————————–
[TS-Bad Quality 425MB-mkv]|mediafire|password=cinema3satu
Download Files: part1 – part2 – part3
———————————————-
[TS-Bad Quality |425MB-mkv]|eu
Download Files: part1 – part2 – part3
—————————————————
[TS-Bad Quality|450MB-mkv]|makyos
Download File 
==================================================

Watch Trailer







SYNOPSIS





Throughout human history, there are strange things that can not be explained in terms of logic. Strange incident was repeated several times. Appearance is often referred toas UFOs (Unidentified Flying Object) was indeed could never be explained. Who theyare and what they want from the inhabitants of the earth? Now, after a series of strange events, the newly revealed their intentions.
Apparently so far they are just watching us. They only measure how advanced the technology of human beings and when all data has been collected it was time for themto invade us. Without warning from extraterrestrial beings troops are coming anddestroying city after city. No one can survive. Their technology is too advanced for thesize of the earth.
The only city that still remains is Los Angeles and now this city will soon become a distant memory. The only hope this man is when the city still survive from the onslaught of these creatures from another planet. Can the army and confront the troops with a super modern equipment? Or this is the end of human civilization?

JavaScript Tutorials 0

Cerita Semalam Aaz | 1:21 PM | ,

Event Object 0

Cerita Semalam Aaz | 9:40 AM | ,



Event Object: What are the coordinates of the cursor?


<html>
<head>
<script type="text/javascript">
function show_coords(event) {
x=event.clientX
y=event.clientY
alert("X coords: " + x + ", Y coords: " + y)
}
</script>
</head>


<body onmousedown="show_coords(event)">
<p>Click in the document. An alert box will alert the x and y coordinates of the cursor.</p>
</body>


</html>




Event Object: What is the unicode of the key pressed?


<html>
<head>
<script type="text/javascript">
function whichButton(event) {
alert(event.keyCode)
}


</script>
</head>


<body onkeyup="whichButton(event)">
<p><b>Note:</b> Make sure the right frame has focus when trying this example!</p>
<p>Press a key on your keyboard. An alert box will alert the unicode of the key pressed.</p>
</body>


</html>



Event Object: Which element was clicked?

<html>
<head>
<script type="text/javascript">
function whichElement(e) {
var tarif (!e) var e = window.event if (e.target) targ = e.target
else if (e.srcElement) targ = e.srcElement if (targ.nodeType == 3) // defeat Safari bug
targ = targ.parentNode var tname tname=targ.tagName
alert("You clicked on a " + tname + " element.")
}
</script>
</head>

<body onmousedown="whichElement(event)">
<p>Click somewhere in the document. An alert box will alert the tag name of the element you clicked on.</p>

<h3>This is a header</h3>
<p>This is a paragraph</p>
<img border="0" src="ball16.gif" width="29" height="28" alt="Ball">
</body>
</html>                                                                                                                                                                       




Event Object: Which event type occurred?


<html>
<head>


<script type="text/javascript">
function whichType(event) {
alert(event.type)
}
</script>
</head>


<body onmousedown="whichType(event)">


<p>
Click on the document. An alert box will alert which type of event occurred.
</p>


</body>
                   </html>




    SEE VIDEO





Related Post

 
Back To Top