KISS (Keep It Simple Stupid)

>> 1.31.2008

GOt this one from my friend

************ ********* ********* ********* ********* ********* ******

Seringkali kita terkecoh saat menghadapi suatu masalah, dan walaupun
masalah tersebut terpecahkan, tetapi pemecahan yang ada bukanlah
suatu pemecahan yang efisien dan justru malah terlalu rumit.

Mari kita coba lihat dalam tiga kasus di bawah ini :

1. Salah satu dari kasus yang ada adalah kasus kotak sabun yang
kosong, yang terjadi di salah satu perusahaan kosmetik yang terbesar
di Jepang. Perusahaan tersebut menerima keluhan dari pelanggan yang
mengatakan bahwa ia telah membeli kotak sabun (terbuat dari bahan
kertas) kosong.

Dengan segera pimpinan perusahaan menceritakan masalah tersebut ke
bagian pengepakan yang bertugas untuk memindahkan semua kotak sabun
yang telah dipak ke departemen pengiriman. Karena suatu alasan, ada
satu kotak sabun yang terluput dan mencapai bagian pengepakan dalam
keadaan kosong. Tim manajemen meminta para teknisi untuk memecahkan
masalah tersebut.

Dengan segera, para teknisi bekerja keras untuk membuat sebuah mesin
sinar X dengan monitor resolusi tinggi yang dioperasikan oleh dua
orang untuk melihat semua kotak sabun yang melewati sinar tersebut
dan memastikan bahwa kotak tersebut tidak kosong. Tak diragukan
lagi, mereka bekerja keras dan cepat tetapi biaya yang dikeluarkan
pun tidak sedikit.

Tetapi saat ada seorang karyawan di sebuah perusahaan kecil
dihadapkan pada permasalahan yang sama, ia tidak berpikir tentang
hal-hal yang rumit, tetapi ia muncul dengan solusi yang berbeda. Ia
membeli sebuah kipas angin listrik untuk industri yang memiliki
tenaga cukup besar dan mengarahkannya ke garis pengepakan. Ia
menyalakan kipas angin tersebut, dan setiap ada kotak sabun yang
melewati kipas angin tersebut, kipas tersebut meniup kotak sabun
yang kosong keluar dari jalur pengepakan, karena kotak sabun terbuat
dari bahan kertas yang ringan.

2. Pada saat NASA mulai mengirimkan astronot ke luar angkasa, mereka
menemukan bahwa pulpen mereka tidak bisa berfungsi di gravitasi nol,
karena tinta pulpen tersebut tidak dapat mengalir ke mata pena.
Untuk memecahkan masalah tersebut, mereka menghabiskan waktu satu
dekade dan 12 juta dolar.
Mereka mengembangkan sebuah pulpen yang dapat berfungsi pada keadaan-
keadaan seperti gravitasi nol, terbalik, dalam air, dalam berbagai
permukaan termasuk kristal dan dalam derajat temperatur mulai dari
di bawah
titik beku sampai lebih dari 300 derajat Celcius.

Dan apakah yang dilakukan para orang Rusia ?. Mereka menggunakan
pensil!.

3. Suatu hari, pemilik apartemen menerima komplain dari
pelanggannya. Para pelanggan mulai merasa waktu tunggu mereka di
pintu lift terasa lama seiring bertambahnya penghuni di apartemen
itu. Dia (pemilik) mengundang sejumlah pakar untuk men-solve.

Satu pakar menyarankan agar menambah jumlah lift. Tentu, dengan
bertambahnya lift, waktu tunggu jadi berkurang. Pakar lain meminta
pemilik untuk mengganti lift yang lebih cepat, dengan asumsi,
semakin cepat orang terlayani. Kedua saran tadi tentu memerlukan
biaya yang tidak sedikit.

Tetapi, satu pakar lain hanya menyarankan satu hal, "Inti dari
komplain pelanggan anda adalah mereka merasa lama menunggu". Pakar
tadi hanya menyarankan untuk menginvestasikan kaca cermin di depan
lift, agar pelanggan teralihkan perhatiannya dari
pekerjaan "menunggu" dan merasa "tidak menunggu lift".

-----
Moral cerita ini adalah sebuah filosofi yang disebut KISS (Keep It
Simple Stupid), yaitu selalu mencari solusi yang sederhana, sehingga
bahkan orang bodoh sekalipun dapat melakukannya. Cobalah menyusun
solusi yang paling sederhana dan memungkinkan untuk memecahkan
masalah yang ada. Maka dari itu, kita harus belajar untuk fokus pada
solusi daripada pada berfokus pada masalah.

************ ********* ********* ********* ********* ********* ******
Motivation of the day :
A dream is just a dream. A Goal is a dream with a plan and a
deadline.
'Impian hanyalah sebatas Impian. Sebuah Tujuan adalah impian yang
disertai dengan rencana dan tenggat waktu.' (Harvey McKay)

************ ********* ********* ********* ********* ********* ******

Read more...

Single Link List Circular in Java

>> 1.28.2008

I am trying to write a program to implement single link list circular in java. Circular mean it has no null value in any next pointer of the node (node.next != null). In a circular linklist, the last node of the link will connects to the first node, so it's like the cycle.

The program still not working well... a little bit confuse in InsertFirst method, it's only working for two node to inputs.. when I try the third.. then the first will not display.. :(

Please somebody help me.....


public class Node {
public int idata;
public double ddata;
public Node next;

/** Creates a new instance of Node */
public Node(int id, double dd) {
idata = id;
ddata = dd;
next = null;
}

public void displayNode(){
System.out.print("{"+idata+","+ddata+"}");
}

}

/** The LinkList Class */

public class SLLC {

private Node head;

/** Creates a new instance of SLLC */
public SLLC() {
head = null;
}

public boolean isEmpty(){
return (head == null);
}

public void insertFirst(int id, double dd){
Node bantu;
Node baru = new Node(id, dd);
baru.next = baru;

if(isEmpty()){
head=baru;
head.next=head;
}
else {
bantu = head;
while(bantu.next != head){
bantu=bantu.next;
}
baru.next = head;
head = baru;
bantu.next = head;
}

}

public void displayList(){
Node current;
current = head;
if(!isEmpty()){
while(current!=head) {
current.displayNode();
current=current.next;
}
}

}

}

Read more...

Just for fun

>> 1.21.2008

Mereka bilang aku 58% aneh.... , maksudnya apa ya?

58% Geek

Meet Montana Singles

Read more...

Long time no see :)

Well just like other posts, this one is nothing so particular. Yeah I just want to discuss (not discuss actually coz there's only me here :D) a bit about faking your feelings.
In general, sometime in our social relationship which is 'so complicated relationship' there is a time when we do something that we dont really want it, dont you?
Just a simple case, when we spending time to "around2" Hahahaha (jalan2 I mean) with family or friends, dont know how but must be someone or couple doesn't agree with the deal about destiantion at the begining. Of course, the most 'nyebelin' if someone say "Terserah, aku sih ngikut aja" (but that's not a problem we talk here :p)
Even in the end we all agree to some place, but when we arrive someone say " Yahh, kok... ?" (Nah loh, what the hell you thingking man? you said "yes" previous.. hehehehe)
If the place can make all of us satisfied.. we laughing n happy, dont' we? I dont know if someone still not trully happy there... (see faking the feeling) n the most I hate about this if something not really good happen, you gonna hear this "Tuh, kann.... " (for godshake that's never plan honey.... )
Then who did wrong here?? I think that can be so relative. it's depend on how we look the wrong and the right.. If someone have a different idea and then make different oppinion between us, can we say that's wrong? what if the idea sound so great to everybody... dont you feel sorry coz never say it?
Hehehe, well in the real world this is what we call "tipu menipu".
Lie to your self, say "yes", in your mind you agree but in your heart still not sure.
Lie to everybody, say "yes" but in your mind and heart you say "no".
And the most popular is what we call "white lies"
Can we say that white lies? A lie is a lie, nevertheless...
Although (most of the time) we did it to make no hurt feeling to others...
But dont you think a white lies just make the hurt feeling feel more deep? coz in the end the truth reveals itself.. and then the white become blacker than black
Finally most people so buzy to cover the whiteness of white lies.. which leads to even more lies, so on.. and so forth.
It's become the devil cycle... Yap.
So how to tell what you think honestly, without hurting somebody? There are many ways to say the truth; like a hand-sewn quilt, it's how you sew the quilt to make it beautiful and acceptable.
(intinya nih.... pinter2 lah merajut kata2 :))
Me? I can sew words... so sew me... Kekekekekekekkkkkk
What the conclusion? Nothing :D

Read more...

About This Blog

About This Blog

  © Blogger template Shiny by Ourblogtemplates.com 2008

Back to TOP