Tips for heathy life

Tips for heathy life

Rabu, 24 Desember 2014

Setelah, 4 tahun, ia mendengarku...

Judulnya lebay banget ya hahaha...Yup, sebenernya pengen cerita tentang sebuah mawar merah yang pernah aku minta ke pacar yang sekarang udah jadi suamiku tersayang. Sejak pacaran pernah minta dibelikan 1 tangkai bunga mawar merah dan itu udah jaman jebot. Anggap saja setahun sebelum kami nikah. Tahun 2010 tepatnya. Dan sekarang tahun 2014. Entah kenapa tetiba pengen diromantisin dan disayang sama suami hihihi... Setelah merengek-rengek tiap ketemu buat dibeliin bunga dan kebetulan ada pameran flora dan fauna di depan kantor akhirnya terbersit...

Selasa, 23 Desember 2014

Mutasi? Lagi?

Hari ini 24 Desember 2014, dimana jadi hari paling indah karena selama 4 hari ke depan masuk liburan. Senangnya hihi tetapi yang terjadi justru sebaliknya. Seorang rekan dari bidang sebelah bisik-bisik kalo bulan januari bakalan ada mutasi lagi dan penempatannya di balikpapan. Astaga. Ini bencana, pikirku. Big No deh kalo mutasi kesana. Prefer resign. Gimana mau ngikutin SK tersebut kalau SK itu malah bikin keluarga kami berpencar lagi. Kabar burung yang saya dengar, akan diambil 15 orang dari angkatan lama (angkatanku dan senior) dan 15 orang...

Kamis, 04 Desember 2014

Hari Guru di TPA

Tanggal 25 November 2014 bertepatan dengan hari Guru di Indonesia, TPA AW tempat Karamina bersekolah PAUD merayakan hari Guru juga. Para orang tua wali menyiapkan hadiah untuk Bu Guru dan sebuah karya siswa untuk bu Guru. Wah kalau hadiah sih, umi Karamina langsung beraksi buat belanja haha tetapi kalau karya siswa?  Nah ini, Karamina masih suka coret-coret sembarangan haha...dan sukanya coret-coret asal. Gak selalu di kertas. Paling seneng...

Senin, 22 September 2014

Kampung boneka, surganya boneka murah

Anda suka boneka? Pastinya sangat tertarik membeli boneka dengan bentuk yang beraneka macam bukan? Suka hello kitty? atau mickey mouse? atau boneka kodok? Wah apa saja bisa ada beli disana, eits tapi jangan terburu-buru dalam membeli karena anda harus menawar terlebih dahulu. Harga yang diberikan masih bisa berkurang jika anda pintar menawar. Pasti anda penasaran dimana kampung boneka? Kampung boneka berada di dekat stasiun Cikampek. Saya pernah...

Selasa, 26 Agustus 2014

Benefits of Green Beans for Health

Content of  Green Beans Vegetable protein, calcium and phosphorus and mineral resources Saturated fatty acids account for 27 % Unsaturated fatty acids are approximately 73 % Benefits of Green Beans for Health 1. Reducing Cholesterol For those with high cholesterol, you can consume green beans every day to reduce cholesterol levels because green beans are foods that lower cholesterol , and are rich in soluble fiber. Fiber...

Duck egg for health

  picture copy from: sport.detik.com  Normal 0 false false false EN-US X-NONE X-NONE ...

Contact

If you want to know me, you can chat me in gtalk : manis.dani88@gmail.com. I am online if i am free. It's on in office hours...

Privacy Policy

I use this blog to share about programming, health tips, recipes, and others. You may copy the article that I have made, but should also include the address of my blog. Respect my hard work as the creator of the article. I am sure you are a good person and appreciate the hard work of others. Thank you for visiting my blog...

Senin, 25 Agustus 2014

OPERATOR arithmetic in Java SE

I want to share OPERATOR arithmetic in Java. You can use this code but if you copy this code and paste in your blog/website, please insert this link of article.   int i = 37; int j = 42; double x = 27.475; double y = 7.22; System.out.println("Variable values..."); System.out.println(" i = " + i); System.out.println(" j = " + j); System.out.println(" x = " + x); System.out.println(" y = " + y); //penjumlahan angka System.out.println("Adding..."); System.out.println(" i + j = " + (i + j)); System.out.println(" x + y = " + (x + y)); //pengurangan...

OPERATOR Logic and Boolean AND

I want to share about OPERATOR Logic and Boolean AND. You can use this code but if you copy this code and paste in your blog/website, please insert this link of article. ------------------------   int i = 0; int j = 10; boolean test= false; //demonstrasi && test = (i > 10) && (j++ > 9); System.out.println(i); System.out.println(j); System.out.println(test); //demonstrasi & test = (i > 10) & (j++ > 9); System.out.println(i); System.out.println(j); System.out.println(test...

LOGIC OPERATOR and BOOLEAN OR

This is LOGIC OPERATOR and BOOLEAN OR. You can use this code but if you copy this code and paste in your blog/website, please insert this link of article. -------------------------- int i = 0; int j = 10; boolean test= false; //demonstrasi || test = (i < 10) || (j++ > 9); System.out.println(i); System.out.println(j); System.out.println(test); //demonstrasi | test = (i < 10) | (j++ > 9); System.out.println(i); System.out.println(j); System.out.println(tes...

Operator exclusive OR in Java

This is logic Operator exclusive OR. You can use this code but if you copy this code and paste in your blog/website, please insert this link of article. ------------------------ boolean val1 = true; boolean val2 = true; System.out.println(val1 ^ val2); val1 = false; val2 = true; System.out.println(val1 ^ val2); val1 = false; val2 = false; System.out.println(val1 ^ val2); val1 = true; val2 = false; System.out.println(val1 ^ val...

How to make GUI Form Login dan Input data in Java SE?

I want to share how to make GUI Form Login dan Input data in Java SE. You can use this code but if you copy this code and paste in your blog/website, please insert this link of article. ---------- package gui; import java.awt.*; import java.awt.event.ActionEvent; import java.awt.event.ActionListener; import javax.swing.*; public class mwi { public mwi() { JFrame frame = new JFrame(); JButton tombol1 = new JButton("LOGIN"); JButton tombol2 = new JButton("LOGOUT"); JLabel lblPengguna = new JLabel ("Pengguna"); JLabel lblPasword = new JLabel...

How to display 10 integer and summation in J2SE?

I want to share how to display 10 integer and summation. You can use this code but if you copy this code and paste in your blog/website, please insert this link of article. ------ /* * IsiMatrix.java * * Created on November 8, 2008, 9:56 AM * * To change this template, choose Tools | Template Manager * and open the template in the editor. */ package matrix; import java.io.BufferedReader; import java.io.IOException; import java.io.InputStreamReader; /** * * @author amikom */ public class IsiMatrix { /** Creates a new instance of IsiMatrix...

How to display Input Output Programme in Java SE?

I want to share how to display Input Output Programme in Java SE. You can use this code but if you copy this code and paste in your blog/website, please insert this link of article. ---------------- import javax.swing.JOptionPane; public class ProgramIO{ public static void main(String[] args){ double jumlah,kurang, bagi,kali; double bil1,bil2; bil1=Double.parseDouble(JOptionPane.showInputDialog("Masukkan bilangan 1")); bil2=Double.parseDouble(JOptionPane.showInputDialog("Masukkan bilangan 2")); jumlah=bil1+bil2; kurang =bil1-bil2; bagi=bil1/bil2; kali=bil1*bil2; JOptionPane.showMessageDialog(null,"Hasil...

Minggu, 24 Agustus 2014

How auditor ask you about SLM?

One year ago, my office got certification of ISO 20000:2011. Then every year, my office conduct surveillance ISO 20000:2011. The auditor will ask you several question about all of process of ITSM. I am not telling you about ITSM but I want to share about SLM that they ask. First, your must show your service plan in the beginning. The service plan is consist of reference document of SLA, OLA, etc. It's also tell about your next improvement service. If you have service plan, you can tell the auditor all about your service and improvement in the...

Benefit of Green Coconut Water

Benefits of Green Coconut Water Green coconut water is a natural isotonic beverage that is very good for the health of our body, and has the same electrolyte content as well with our blood. Coconut water also functioned during the war in the pacific 1941-1945 as a substitute for emergency plasma transfusions, streamed directly from the fruit on the soldiers who were wounded. Preferably after peeling coconuts, then immediately consume the coconut...

Kamis, 14 Agustus 2014

If your body lack of water

  Do you hate drink? Yes, I do. Truely, I hate drink mineral water but i love sweet syrup or tea. That's not good exactly for my body. I often headache if my lack of drinking water in the morning. I want to share about result of body lack water. The following result if the body lacks water, As reported by the American College of Sports Medicine :  Lack of water or dehydration causes the fluid in the brain decreases, oxygen...

Benefits of Walking for Health Every Day

user 14.00 Normal 0 false false false EN-US X-NONE X-NONE ...