I hereby claim:
- I am caseycoding on github.
- I am caseybillman (https://keybase.io/caseybillman) on keybase.
- I have a public key ASDLjHi-JNjhpqttEn_-L36cJvbbW5AGgwbm7R3n-0nnnAo
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
OS: Ubuntu 16.04
First you need vsftp and PAM installed
sudo apt-get update && sudo apt-get upgrade -y
sudo apt-get install vsftpd libpam-pwdfile apache2-utils s3fs -y
Edit /etc/vsftpd.conf
sudo cp /etc/vsftpd.conf /etc/vsftpd.conf.orig
#!/bin/sh | |
# If validation fails, tell circleci to stop and provide error message. Otherwise, continue. | |
if ! [ -x "$(command -v circleci)" ]; then | |
echo 'Error: circle is not installed. Circle config validation will not occur.' >&2 | |
exit 0 | |
else | |
# The following line is needed by the CircleCI Local Build Tool (due to Docker interactivity) | |
exec < /dev/tty |
AUTH_HEADER='"Authorization: bearer HEREHEREHEREHEREHEREHEREHEREHEREHEREHEREHEREHERE"' | |
ACCEPT_HEADER='"Accept: application/vnd.github.v3+json"' | |
# Message within the pr | |
BODY="Script generated pull request" | |
# TESTING | |
# OWNER=caseycoding | |
# REPOS=(caseycoding.github.io tic-tac-toe) | |
# BRANCHES=(caseycoding.github.io tic-tac-toe) |
// | |
// CCZoneMonitor.swift | |
// SwiftExamples | |
// | |
// Created by Casey Billman on 1/18/16. | |
// Copyright © 2016 BlueCats. All rights reserved. | |
// | |
import Foundation | |
import BlueCatsSDK |
var fs = require('fs'); | |
var docCategories = ['Classes','Enums','Protocols','Categories'] | |
var docPath = './docs/' | |
var classesPath = './docs/Classes/' | |
var enumsPath = './docs/Enums/' | |
var protocolPath = './docs/Protocols/' | |
var categoriesPath = './docs/Categories/' |
// | |
// ViewController.m | |
// iBeaconRanger | |
// | |
// | |
// | |
#import "ViewController.h" | |
#import <CoreLocation/Corelocation.h> |
// | |
// Bridging-Header.h | |
// | |
// | |
// Created by BlueCats Austin on 9/24/15. | |
// Copyright © 2015 BlueCats. All rights reserved. | |
// | |
#ifndef Bridging_Header_h | |
#define Bridging_Header_h |
// | |
// AppDelegate.m | |
// BCLocalNotifications | |
// | |
// Created by Damien Clarke on 24/05/2015. | |
// Copyright (c) 2015 Bluecats. All rights reserved. | |
// | |
#import "AppDelegate.h" | |
#import "BlueCatsSDK.h" |
// | |
// AppDelegate.m | |
// BCLocalNotifications | |
// | |
// Created by Damien Clarke on 24/05/2015. | |
// Copyright (c) 2015 Bluecats. All rights reserved. | |
// | |
//Note: you must select 'Uses Bluetooth LE Accessories' and request always location permission | |
//'Uses Bluetooth LE Accessories': https://github.com/bluecats/bluecats-ios-sdk/wiki/Ranging-Secure-Beacons-in-the-Background-and-Core-Data-Notification-Conflicts#ranging-secure-beacons-in-the-background |