Skip to content

Instantly share code, notes, and snippets.

@sinaryuda
sinaryuda / esp8266-blink-led.ino
Created July 5, 2017 04:36
esp8266 blink led
@sinaryuda
sinaryuda / hidden-files.sh
Created September 30, 2012 16:14
on/off hidden files Mac OSX
#!/bin/bash
if [ "$1" == "on" ]
then
echo "tampilkan hidden files"
defaults write com.apple.Finder AppleShowAllFiles TRUE
killall Finder
fi
if [ $1 == "off" ]