Join The Community

Premium WordPress Themes

Search

Selasa, 27 September 2011

Early Education For Environmental Challenges: Concepts And Solutions

We face many environmental and social challenges in our growing world, such as resource depletion, water and air pollution, marine debris and air quality. The good news is, the human race has created many viable solutions such as:

~ Recycling
~ Ocean Conservation
~ Solar Power
~ Wind Power
~ Hydro-electric power
~ Upcycling

In a continuing effort to save our world, parents and teachers can introduce children to the concepts of recycling and taking care of the Earth at a preschool and kindergarten age. Children ages 3-6 are most susceptible to new concepts that will be carried into adulthood. There is a wonderful teaching tool, The Smidgen book series, that teaches children to recycle and conserve in a fun way with a clever cast of characters. "Crush and the Blue Box", the first book in the series, teaches children to recycle. "Ryder and the Clear Blue Ocean", the second in the series, teaches children to take care of the ocean, while also introducing the concepts of solar power, wind power and hydro-electric power, in a way the child will appreciate and understand. Every child who learns to recycle at a young age will create a life long impact on the community and ultimately the world; the children are taught "Every little bit counts!"

Our society is quickly moving away from the generation of consumption and moving toward a new generation of conservation. Green acts are talking place in many schools and companies, for example: recycling boxes at a hardware company, installing energy efficient lighting, replacing travel size shampoo bottles with large pump bottles in hotels, and carpooling. Children are beginning to learn at a young age not only to "reduce, reuse and recycle", but there is also a healthy eating and exercising movement taking place. These are all wonderful practices toward bettering our earth and ensuring the health of our children as well as the Earth. Future Smidgens will address healthy eating topics as well as charitable acts and the childhood concept of sharing. Children learning about these social issues ultimately influence their parents as well; parents often admit they began recycling because their children requested they do so.

The Smidgen book series gives parents and teachers an easy and accessible solution that captures the breadth of the conservation movement with a set of unique characters in an informative setting. Catching the preschoolers at this early stage of childhood development will help promote green behaviors one Smidgen at a time.

Stephanie Burgin is a Board Certified Child Behavioral Analyst
http://thesmidgens.com/

Article Source: http://EzineArticles.com/?expert=Stephanie_Elyse_Burgin

Article Source: http://EzineArticles.com/6566755

Minggu, 06 Maret 2011

Membuat file exe untuk program java

Kemaren ada teman saya sempet tanya gmn cara bikin file installer untuk java,... dari pada saya bingung jelasin nya mendingan saya bikin langsung saja tutorialnya begitulah jawab saya heheheheh :P

untuk membuat file installer saya biasanya menggunakan 2 aplikasi software
1.Jsmooth yang bisa di download di sini

2.Nsis yang bisa di doenload di sini


Sebenarnya menggunakan Nsis pun sudah bisa menjadi file installer,... tetapi nsis tidak bisa digunakan untuk merubah icon pada program file,.. nah cara untuk mengatasinya saya menggunakan Jsmooth, jadi untuk file jarnya kita jadikan exe.

Pertama buka jsmooh yang sudah terinstall di komputer Seperti tampilan dibawah ini



Kemudian Pilih pada menu skeleton pilih combo box pada menu window wraper

Kemudian menuju menu dibawahnya lagi yaitu executable

Executable binary adalah nama file .exe setelah jadi nanti,.. jangan lupa juga pilih icon untuk aplikasi kamu.jangan lupa centang pada checkbox set the executable folder
kemudian pilih pada menu aplication.


Keterangan Di atas adalah :
1. Pilih file jar yang sudah kamu compile
2. Pilih pada main class aplikasi kamu
Setelah itu pilih pada menu Project lalu compile.... taraaaaa... aplikasi exe sudah jadi...

Sebelum memulai membuat file installer petama kita buat dulu file instaler dengan ekstensi .nsi
buka editor kesayangan kamu notepad atau saya biasanya menggunakan notepad++ dan isi dari file tersebut adalah seperti dibawah ini

############################################################################

; Nama aplikasi
Name "direktorikamu" ;folder yang akan tampak pada menu START -> ALL PROGRAM pada komputer

; Nama File installer
OutFile "Setup.exe" ; nama file setelah menjadi file installer

; default Directory
InstallDir "$PROGRAMFILES\direktorikamu" ; direktori yang ada pada programfiles

; Pesan untuk menentukan installasi tujuan
DirText "Pilih folder tujuan aplikasi ini."

; ---------------------------------------------
; ******** SECTION FOR INSTALLING *************
; ---------------------------------------------

;tidak ada komponen/fitur yg dipilih
Section ""

; file output dan directori kerja shortcuts
;====================================================================================
; file file yang akan di masukan pada file instaler nantinya, bisa kamu tambahin sendiri
SetOutPath $INSTDIR\lib
File lib\mysql-connector-java-5.1.7-bin.jar

SetOutPath $INSTDIR\images
File images\user.png

SetOutPath $INSTDIR\Report
File Report\report.jasper
File Report\report.jrxml

;============= end of component ===========================================================

;================== file yang akan di masukan dalam file installer =======================
SetOutPath $INSTDIR
File aplikasikamu.exe ;aplikasi hasil dari file jsmooth
File aplikasikamu.jar ;file jar yang sudah di compile


;================= uninstall program ;==================================
WriteUninstaller $INSTDIR\Uninstall.exe

; /////// membuat shorutcut pada start program ///////////

CreateDirectory "$SMPROGRAMS\direktorikamu\"
CreateShortCut "$SMPROGRAMS\direktorikamu\
\aplikasikamu.lnk" "$INSTDIR\aplikasikamu.exe"

;///////////////// uninstall shourcut //////////////////////
CreateShortCut "$SMPROGRAMS\direktorikamu\
\Uninstall Deprint.lnk" "$INSTDIR\Uninstall.exe"

; //////////// Akhir Membuat SHORTCUTS /////////

; ////REGISTRY ADD/REMOVE PADA CONTROL PANEL

WriteRegStr HKLM "Software\Microsoft\Windows\
\CurrentVersion\Uninstall\direktorikamu" "DisplayName"\
"Deprint_Admin"

WriteRegStr HKLM "Software\Microsoft\Windows\
\CurrentVersion\Uninstall\direktorikamu" "UninstallString" \
"$INSTDIR\Uninstall.exe"

; //// Akhir Pembuatan REGISTRY KEYS ////////////

MessageBox MB_OK "Instalasi berhasil..............." ; pesan jika installasi berhasil

SectionEnd

; -------------------------------------------------
; ********* uninstall program dan file-file apa saja yang akan di hapus saat uninstall **************
; -------------------------------------------------

Section "Uninstall"
; remove all the files and folders
Delete $INSTDIR\aplikasikamu.exe ; delete self
Delete $INSTDIR\aplikasikamu.jar

Delete $INSTDIR\lib\mysql-connector-java-5.1.7-bin.jar

Delete $INSTDIR\Report\Report.jasper
Delete $INSTDIR\Report\Report.jrxml


RMDir $INSTDIR

; menghapus shorcut
Delete "$SMPROGRAMS\direktorikamu\aplikasikamu.lnk"
Delete "$SMPROGRAMS\direktorikamu\Uninstall aplikasikamu.lnk"
RMDIR "$SMPROGRAMS\direktorikamu"

;menghapus registri
DeleteRegKey HKEY_LOCAL_MACHINE "SOFTWARE\direktorikamu"
DeleteRegKey HKEY_LOCAL_MACHINE "SOFTWARE\Microsoft\
\Windows\CurrentVersion\Uninstall\direktorikamu"

SectionEnd


#############################################################################

kemudian simpan dengan extensi .nsi dan simpan di folder yang sama dengan file setup hasil dari jsmooth tadi... atau jika kurang jelas kamu bisa bukan di sini klik
Setelah itu tinggal membuat file installer dengan nsis buka nsis yang sudah terinstall di komputer kamu

pilih compiler nsi script arahkan pada file.nsi yang sudah kamu buat, dan.... aplikasi sudah siap digunakan