Mempersiapkan WiFi pada Raspberry Pi dengan archlinux ARM

Standard

Catatan: Judul di atas berusaha dibuat sebaik mungkin dengan Bahasa Indonesia yang baik dan benar mengikuti kaidah EYD. Semoga masih sesuai dengan SEO yang berlaku dan Google’s spider dapat memahaminya.

Tulisan ini dibuat sebagai catatan pribadi dan untuk siapa saja yang membutuhkan. Membahas tentang suatu kebutuhan atas Raspberry Pi agar dapat terhubung kedalam jaringan WiFi yang sudah ditentukan secara otomatis sedari awal dinyalakan dengan static IP. Kebutuhan ini dikarenakan Raspberry Pi akan digunakan sebagai development server, sehingga tidak digunakan monitor ataupun keyboard.
Continue reading

Conditionals

Standard

Zero Conditional

  • probability: 100% (exactly will happen)
  • time: any time
  • modals: when, if
  • If + [condition: present simple] + [result: present simple]
  • [result: present simple] + if + [condition: present simple]
  • example: If you heat ice, it melts

First Conditional

  • probability: 50% (there is a real possibility that this condition will happen)
  • time: future
  • modals: will, shall, can, or may
  • If + [condition: present simple] + [result: WILL + base verb]
  • [result: WILL + base verb] + if + [condition: present simple]
  • example: If it rains, I will stay at home

Second Conditional

  • probability: 10% (there is an unreal possibility that the condition will happen)
  • time: future
  • modals: would, should, could or might
  • If + [condition: past simple] + [result: WOULD + base verb]
  • [result: WOULD + base verb] + if + [condition: past simple]
  • example: If I won the lottery, I would buy a car

Third Conditional

  • probability: 0% (no possibility because it’s already happened in the past)
  • time: past
  • modals: would have, should have, could have, might have
  • If + [condition: past perfect] + [result: WOULD HAVE + past participle]
  • [result: WOULD HAVE + past participle] + if + [condition: past simple]
  • example: If I had won the lottery, I would have bought a car

reference : english conditionals

error: Unable to find vcvarsall.bat

Standard

Pada saat menginstall beberapa package python dengan mengeksekusi:
$ python setup.py install
terkadang terjadi error:
error: Unable to find vcvarsall.bat
Solusi : Install Microsoft Visual Studio, kemudian eksekusi command berikut pada command prompt.
Untuk Visual Studio 2010
SET VS90COMNTOOLS=%VS100COMNTOOLS%
Untuk Visual Studio 2012
SET VS90COMNTOOLS=%VS110COMNTOOLS%

Normalisasi Data ke Dalam Suatu Rentang Nilai

Standard

Normalisasi data sangat diperlukan ketika data yang ada bernilai terlalu besar maupun terlalu kecil sehingga pengguna kesulitan dalam memahami informasi yang dimaksud. Tidak hanya untuk pengguna, terkadang nilai yang tidak ‘normal’ dapat mempersulit pemilik data dalam melakukan proses pengolahan untuk disajikan kepada pengguna. Berikut adalah salah satu cara menormalisasi data ke dalam suatu rentang nilai dengan tidak mengurangi bobot nilai sebenarnya.
Continue reading