Skip to content

Instantly share code, notes, and snippets.

View kawashimaken's full-sized avatar
😃
Focusing

Ken kawashimaken

😃
Focusing
View GitHub Profile
@kawashimaken
kawashimaken / rPi3-ap-setup.sh
Created March 12, 2018 15:20 — forked from Lewiscowles1986/rPi3-ap-setup.sh
Raspberry Pi 3 access-point-setup
#!/bin/bash
#
# This version uses September 2017 august stretch image, please use this image
#
if [ "$EUID" -ne 0 ]
then echo "Must be root"
exit
fi
@kawashimaken
kawashimaken / app.js
Created August 30, 2016 07:45 — forked from brianfeister/app.js
Angular Upload with Image Crop
angular.module('cropAndUpload', [
'angularFileUpload',
'ngImgCrop'
])