Year: 2015


  • Internet of Things (IoT)

    Internet of Things, atau dikenal juga dengan singkatan IoT, merupakan sebuah konsep yang bertujuan untuk memperluas manfaat dari konektivitas internet yang tersambung secara terus-menerus. Adapun kemampuan seperti berbagi data, remote control, dan sebagainya, termasuk juga pada benda di dunia nyata. Contohnya bahan pangan, elektronik, koleksi, peralatan apa saja, termasuk benda hidup yang semuanya tersambung ke…


  • Natural Scroll for System-Wide Ubuntu

    To have natural scroll for ubuntu that applied to system wide, do the following command on terminal:     sudo nano /usr/share/X11/xorg.conf.d/20-natural-scrolling.conf Then in the editor copy (ctrl+c) and paste (ctrl+shift+v) below: Section “InputClass”      Identifier “natural scrolling for mouse wheel”     MatchIsPointer “on”     MatchDevicePath “/dev/input/event*”     Driver “mouse”     Option “Device” “/dev/input/mice”    …


  • Set Static Local IP Address for Raspberry Pi

    By default raspberrry use dhcp to get local ip address, to set manually local ip address open LX Terminal and run command below: sudo nano /etc/network/interfaces Find eth0 block auto eth0 iface eth0 inet dhcp and change to : auto eth0 iface eth0 inet static address 192.168.1.44         # <– your static local…