[default]
aws_access_key_id=keykeykeykeykeykeykeykeykeykeykeykeykeykeykeykey
aws_secret_access_key=access_keyaccess_keyaccess_keyaccess_key
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
"https://github.com/tpope/vim-pathogen | |
execute pathogen#infect() | |
syntax on | |
filetype plugin indent on | |
" show existing tab with 4 spaces width | |
set tabstop=4 | |
" when indenting with '>', use 4 spaces width | |
set shiftwidth=4 | |
" On pressing tab, insert 4 spaces |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/python | |
import smbus | |
import time | |
import curses | |
bus = smbus.SMBus(1) | |
stdscr = curses.initscr() |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.DS_Store | |
._.DS_Store | |
**/.DS_Store | |
**/._.DS_Store | |
.idea/ | |
**/.idea/ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
set -e # If Error then exit | |
# Result Print | |
cat << EOF | |
=========================================================== | |
=========================================================== | |
=================== Installation Started ================== | |
=========================================================== | |
=========================================================== |
#!/bin/bash
BASE_PATH=$(dirname $0)
cd ${BASE_PATH}
BASE_PATH=`pwd`