Pencarian

Rss Posts

 

 

 

Berita pada bulan January, 2010

Consider the costs over convenience before you store your data in the cloud

Jan 12, 2010

Today Google announced that instead of carrying a USB device you can now store your files in the cloud up to 1GB for free. They claim this network service is more convenient than a USB drive you carry, which may be true, but at what cost to the environment? A USB device uses absolutely no electricity when it isn’t plugged in. When not being accessed by active programs they use almost no power at all, even when plugged in. Contrast this with spinning hard disks in the cloud. Spinning those disks in a data center is expensive, and I contend that it is an incredible waste of resources to use the cloud for convenience over a USB based device. You also don’t get served ads and are at much lower risk of having your files potentially accessed by third party when using a USB device. You can reuse a USB disk over and over again, and you don’t have to pay a monthly fee based on the size of your device. Then consider the cost of bandwidth. The internet is neither cheap nor free. It actually costs billions of dollars a year to move those little bits around and moving less bits means less carbon emissions. Routers, switches, servers, disk drives and cooling consume vast amount of electricity.Even if you suppose that all the necessary power was generated by a green technology, all those extra servers and disk drives expose us all to toxic rare earth metals used by electronic devices. Pollution from discard e-waste is one of the biggest ongoing issues of the modern era. Further, imagine what wonders we could accomplish if we put all that energy to a more useful purpose than storing pictures of your cat, or another copy of your resume.Running a MySQL (or any) application in the cloud can make sense for a variety of reasons, but I don’t think that moving all your data in the cloud simply for convenience purposes is a good idea.

Video Editor Opensource Terbaru (Part1)

Jan 08, 2010

BismiLLAH,
Salam untuk para Linuxer sejagad, kali ini saya akan memperkenalkan sebuah Video Editor yang lumayan baru. Namanya OpenShot Movie Editor. Yah, pada postingan kali ini mohon maaf hanya bisa memberikan info, untuk tutorial sederhananya InsyaALLAH akan menyusul dalam waktu dekat.
Salam sukses selalu untuk kawan-kawan Linux nusantara ^^,

Install google chrome pada ubuntu 9.10

Jan 07, 2010


Pertama mari Ubuntu Anda tahu di mana harus mencari browser kromium-deb, lalu ubahlah soucelist yang ada
vi /etc/apt/sources.list
lalu tambahkan baris berikut:
deb http://ppa.launchpad.net/chromium-daily/ppa/ubuntu karmic main
deb-src http://ppa.launchpad.net/chromium-daily/ppa/ubuntu karmic main
Karmic merupakan versi ubuntu yang di gunakan,? tergantung versi mana yang Anda jalankan di komputer Anda.
Langkah selanjutnya adalah menginstal Kromium browser:
sudo apt-get update
sudo apt-get install?chromium-browser
Setelah Anda tekan enter Ubuntu [...]

Kabar Gembira.. Gaza sudah bisa di download

Jan 07, 2010


Siapa yang tidak tau Gaza, Terkenal karena banyak konflik dan peperangan yang ada. nama gaya adalah nama daerah (jalur) di negeri para nabi? dan kiblat pertama Umat ISLAM? yaitu negeri palestina. ?Namun Gaza ini bukan lah itu, tetapi Ubuntu Sabily terbaru dengan code name Gaza. Sistem operasi besutan komunitas open source muslim ini kini sudah [...]

solusi error pada mysql server (OS Debian)

Jan 07, 2010

bermula dari rusaknya harddisk berusia lebih dari 6 tahun itu di komputer server. akhirnya berakhir sudah riwayatnya menemani dwa. yang menjadi masalah adalah disana sistem utama, dan juga data, meski telah disiapkan backup di harddisk dan sistem ke-dua, tetap saja semua harus diperhatikan ulang konfigurasinya.
salah satu yang “menyangkut” dengan sempurna adalah MySQL server. setelah migrasi [...]

Samba PDC + OpenLDAP pada openSUSE 11.1 : Bagian 2

Jan 07, 2010

Tutorial Sebelumnya : Samba PDC + OpenLDAP pada openSUSE 11.1 Bagian 1

Pada tutorial sebelumnya, kita sudah membahas mengenai instalasi sistem dasar dan konfigurasi Samba. Sekarang kita akan membahas mengenai konfigurasi LDAP.
Konfigurasi LDAP pada openSUSE 11.1 memiliki model yang berbeda dengan model yang ada pada openSUSE 10.3. openSUSE 11.1 menggunakan model konfigurasi dinamis, sehingga setting LDAP [...]

Build an OAuth-enabled desktop Twitter client

Jan 06, 2010

OAuth is an open protocol that enables users to share their protected resources among different Web sites, without risking exposure.nbsp;OAuth is an ideal candidate for mashing upnbsp;today’s social networking Web sites like Twitter.

distro ubuntu untuk PlayStation 3

Jan 06, 2010

Wah baru tahu saya ternyata ubuntu bisa juga di install di playstation 3 (tapi sayang saya gak punya konsol ini..hehehe..), yang konon konsol ini tidak bisa digunakan untuk bermain game bajakan. namun, lagi-lagi mitos itu tidaklah bertahan lama.tetapi saya sangat tidak merekomendasikan anda untuk memainkan game bajakan. toh masih ada alternatif game free yang sangat [...]

Midnight Commander atau MC

Jan 06, 2010

bisa diibaratkan explorer pada windows tapi disi berjalan dalam terminal ( kalau di windows cmd )
saya sering dan lebih senang menggunakan mc karena sangat mudah dan sangat mengasikkan….
cara install :
masuk terminal –> kemudian silahkan isi perintah dibawah ini
sudo aptitude install mc
atau
sudo apt-get install mc
nah setelah itu agar bisa mengedit dan meng eksekusi file silahkan masuk [...]

python clutter example (clickable buttons)

Jan 05, 2010

pExample Clutter program which will load a png and create a clickable button out of it./pimport clutterbr /br /#create a clutter stage and set the display sizebr/stage = clutter.Stage()br /stage.set_size(400, 400)br /br /#load the image for the buttonsbr /img=clutter.cogl.texture_new_from_file(‘button.png’,clutter.cogl.TEXTURE_NO_SLICING, clutter.cogl.PIXEL_FORMAT_ANY)br /br /#example create button from class startbr /br /class button(clutter.Texture):br / def __init_Read More…