Merry Christmas and Happy New Year

"Om Swastiastu"



IT Programmer mengucapkan Selamat Natal dan Tahun Baru kepada kawan-kawan sekalian. Dan berhubung adanya libur Natal dan Tahun Baru, IT Programmer juga ikut libur. Berhubung di kampung tidak ada koneksi internet, jadi ga bisa posting deh.. hehehehe.. ntar klo dah balik ke kost, baru lanjut posting lagi. Terima kasih banyak atas perhatiannya.


IT Programmer wanna says Merry Christmas and Happy New Year to you guys. And according to Christmas and New Year holiday, IT Programmer also rest for a while. Because there is no internet connection yet in my village, I can't post something. When I back from holiday, I will continue to post again. Thank you for your attention.


"Om Santhi, Santhi, Santhi, Om"

Kembang Api Menjelang Natal dan Tahun Baru

"Om Swastiastu"


Kembang api adalah bahan peledak berdaya ledak rendah. Kembang api menghasilkan empat efek primer: cahaya, suara, asap, dan bahan terbang. Kembang api dirancang sedemikian rupa agar dapat meletus dan menghasilkan cahaya yang berwarna warni seperti merah, kuning, oranye, biru, hijau, ungu, dan lain sebagainya. Biasanya kembang api dinyalakan saat ada acara agar acara tersebut tampak meriah. Nah, menjelang Natal dan Tahun Baru, di daerah sekitar kost ku (terutama wilayah kota Denpasar) banyak sekali kembang api meluncur tiap malam. Beginikah cara masyarakat Denpasar menyambut Natal dan Tahun Baru?? Lumayan juga ada tontonan tiap sore atau malam.

Continue Reading »

Import Your Maps in Google City Tours

Google City Tours, the service that generates walking tours for important cities, has a new feature that lets you import custom maps. After logging to a Google Account, you can go to the importing page and select one of your maps.


The service would more useful if you could customize a tour by reordering sights and defining constraints. Other features that seems to be missing: saving tours, sharing and printing tours.

Google City Tours will probably become a feature of Google Maps that will help you find more about a city and plan your trips.

Open Google

Jonathan Rosenberg, Senior Vice President at Google, wrote a very interesting email about the value of openness on the web and sent the email to Google's employees. He recommends Googlers to use open standards, to open source software, to make it easy to export data from Google's services and to fight for an open Internet.
Open systems are (...) competitive and far more dynamic. In an open system, a competitive advantage doesn't derive from locking in customers, but rather from understanding the fast-moving system better than anyone else and using that knowledge to generate better, more innovative products. (...)

We use tens of millions of lines of open source code to run our products. We also give back: we are the largest open source contributor in the world, contributing over 800 projects that total over 20 million lines of code to open source, with four projects (Chrome, Android, Chrome OS, and Google Web Toolkit) of over a million lines of code each. (...)

The ability to switch is critical, so instead of building walls around your product, build bridges. (...)

We believe in the power of technology to deliver information. We believe in the power of information to do good. We believe that open is the only way for this to have the broadest impact for the most people. We are technology optimists who trust that the chaos of open benefits everyone. We will fight to promote it every chance we get. Open will win. It will win on the Internet and will then cascade across many walks of life: The future of government is transparency. The future of commerce is information symmetry. The future of culture is freedom. The future of science and medicine is collaboration. The future of entertainment is participation. Each of these futures depends on an open Internet.

It's interesting to notice that many of the products released by Google in the past 2 years are open platforms (Android, Chrome), proposals for open standards (o3d , OpenSocial, Google Wave Protocol) and not just Google services. Google actually invests in a better web.

"If you are trying to grow an entire industry as broadly as possible, open systems trump closed. And that is exactly what we are trying to do with the Internet. Our commitment to open systems is not altruistic. Rather it's good business, since an open Internet creates a steady stream of innovations that attracts users and usage and grows the entire industry," explains Jonathan Rosenberg.

Mouse Unik dan Lucu

"Om Swastiastu"

Iseng tadi saya browsing google, lihat-lihat bentuk  mouse yang unik-unik. Ada banyak bentuk mouse lucu dan unik yang saya temukan. Silahkan lihat dan komentar. Ini dia mouse uniknya. Semoga Anda senang dengan hasil browsing google saya.










Continue Reading »

Menulis Teks C++ ke dalam File

"Om Swastiastu"

Sudah pernah mendengar File & Stream belom? File & Stream biasanya digunakan ketika kita ingin menyalin apa yang kita buat dalam C++ langsung kedalam teks.Contohnya, ketika kita membuat program penjumlahan matriks, apa yang kita inputkan dan semua proses penjumlahan matriks, akan langsung ditulis di dalam file.

Untuk lebih jelasnya lihat contoh sederhana berikut. Ini adalah contoh program untuk menuliskan teks ke dalam file:


#include <iostream.h>
#include <fstream.h>
#include <conio.h>

void main()
{
 ofstream textbaru;
 textbaru.open("D:/example.txt");
 textbaru<<"Ini adalah contoh program menuliskan teks ke dalam file"<<endl;
 textbaru<<"Teks yang kita ketikkan disini nantinya akan disalin ke file example.txt"<<endl;
 textbaru<<"Apabila kita belum membuat file example.txt, maka file tersebut  akan otomatis dibuat"<<endl;
 textbaru<<"sekian untuk contoh kali ini"<<endl;
 textbaru.close();
 getch();
}

Penjelasan coding program di atas:

Perintah textbaru.open("D:/example.txt"); akan membuka file example.txt yang ada di drive D:/ dan akan menyalin apa yang kita tulis ke dalam file.
Seperti yang saya tuliskan di program, jika sebelumnya kita tidak membuat file example.txt di drive D:/, maka file tersebut akan otomatis terbuat. Dan jika kita sudah mempunyai file example.txt maka semua isi file example.txt akan terhapus dan akan digantikan oleh apa yang kita ketikkan pada program diatas.

Disini mungkin kalian juga baru pertama melihat file header <fstream.h>. Header tersebut digunakan untuk menjalankan perintah ofstream, tanpa header <fstream.h>, ofstream tidak akan bisa dijalankan! Ofstream adalah perintah untuk membuka file. Sedangkan ifstream adalah perintah untuk membaca file.

Jika kalian ingin menambahkan data baru kedalam file example.txt (dengan catatan: tidak menghapus data lama). Caranya adalah dengan menambahkan perintah

ios::app pada open(D:/example).

Berikut contohnya:


#include <iostream.h>
#include <conio.h>
#include <fstream.h>

void main()
{
 ofstream textbaru;
 textbaru.open(D:/example.txt, ios::app);
 textbaru<<endl;
 textbaru<<"Oleh : IT Programmer"<<endl;
 textbaru.close();
 getch();
}


Gampang bukan?? Kalo ada komentar, silahkan tuliskan komentar anda pada kolom dibawah. Tetaplah mengunjungi IT Programmer untuk pelajaran C++ yang lebih baru. Salam sukses..

"Om Santhi, Santhi, Santhi, Om"

Funny Google Suggestions

When you start to type a query, Google suggests popular search terms that include your keywords. Sometimes the suggestions are surprising, especially when the suggested queries are long and descriptive. A suggestion like [i was bitten by a turtle when i was a young lad should i still drink orange juice] might surprise you if you didn't know that it was a question on Yahoo Answers that became famous.


Other suggestions could be popular songs, movie quotes or Internet memes. For example, [Dinosaurs were made up by the CIA to discourage time travel] is the name of a song.


The two examples are from Autocomplete Me, a site that collects funny Google suggestions and lets you rate them.

Labels

Web Search Gmail Google Docs Mobile YouTube Google Maps Google Chrome User interface Tips iGoogle Social Google Reader Traffic Making Devices cpp programming Ads Image Search Google Calendar tips dan trik Google Video Google Translate web programming Picasa Web Albums Blogger Google News Google Earth Yahoo Android Google Talk Google Plus Greasemonkey Security software download info Firefox extensions Google Toolbar Software OneBox Google Apps Google Suggest SEO Traffic tips Book Search API Acquisitions InOut Visualization Web Design Method for Getting Ultimate Traffic Webmasters Google Desktop How to Blogging Music Nostalgia orkut Google Chrome OS Google Contacts Google Notebook SQL programming Google Local Make Money Windows Live GDrive Google Gears April Fools Day Google Analytics Google Co-op visual basic Knowledge java programming Google Checkout Google Instant Google Bookmarks Google Phone Google Trends Web History mp3 download Easter Egg Google Profiles Blog Search Google Buzz Google Services Site Map for Ur Site game download games trick Google Pack Spam cerita hidup Picasa Product's Marketing Universal Search FeedBurner Google Groups Month in review Twitter Traffic AJAX Search Google Dictionary Google Sites Google Update Page Creator Game Google Finance Google Goggles Google Music file download Annoyances Froogle Google Base Google Latitude Google Voice Google Wave Google Health Google Scholar PlusBox SearchMash teknologi unik video download windows Facebook Traffic Social Media Marketing Yahoo Pipes Google Play Google Promos Google TV SketchUp WEB Domain WWW World Wide Service chord Improve Adsence Earning jurnalistik sistem operasi AdWords Traffic App Designing Tips and Tricks WEB Hosting linux How to Get Hosting Linux Kernel WEB Errors Writing Content award business communication ubuntu unik