I hereby claim:
- I am beriberikix on github.
- I am jonathanberi (https://keybase.io/jonathanberi) on keybase.
- I have a public key ASDLgsLgyVgDQggMeGSdqvDwPkJgL3ojEV0IqXwQ59UR8wo
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
export PS1="\h:\W 🚀 $ " | |
alias git=hub | |
export PATH="/Users/jberi/bin/gcc-arm/switch-gcc-arm:$PATH" | |
export PATH="/Users/jberi/bin/gcc-arm/gcc-arm-bin:$PATH" | |
export PATH="/users/jberi/library/android/sdk/platform-tools" |
#!/usr/bin/env bash | |
# | |
# Bootstrap script for setting up a new OSX machine | |
# | |
# This should be idempotent so it can be run multiple times. | |
# | |
# Some apps don't have a cask and so still need to be installed by hand. These | |
# include: | |
# | |
# - simplify3d.com |
/********************************************************************** | |
/* Copyright 2017 Jonathan Beri | |
/* | |
/* Licensed under the Apache License, Version 2.0 (the "License"); | |
/* you may not use this file except in compliance with the License. | |
/* You may obtain a copy of the License at | |
/* | |
/* http://www.apache.org/licenses/LICENSE-2.0 | |
/* | |
/* Unless required by applicable law or agreed to in writing, software |
#!/bin/bash | |
# place in folder and add folder to $PATH | |
# also add $BIN to path | |
BIN=~/bin/gcc-arm/gcc-arm-bin | |
OPTIONS="4.9.3 5.4.1 6.2.1" | |
select opt in $OPTIONS; do | |
if [ "$opt" = "4.9.3" ]; then | |
echo 4.9.3 20150529 | |
if [ -L $BIN ]; then | |
rm $BIN |
#ifndef _SETTINGS_H_ | |
#define _SETTINGS_H_ | |
// Wifi | |
#define SSID "your-network-name" | |
#define PASS "your-network-password" | |
// Firebase | |
#define FIREBASE_HOST "your-firebase-name.firebaseio.com" | |
#define FIREBASE_SECRET "###secret###" |
/* This is a fork of the Raindbow sample from | |
* https://github.com/pololu/apa102-arduino/blob/master/examples/Rainbow/Rainbow.ino | |
* to work on an ATTiny85 @ 16MHz. While there is no license in the file, the overall | |
* library appears to be under MIT: | |
* https://github.com/pololu/apa102-arduino/blob/master/LICENSE.txt | |
*/ | |
#include <avr/power.h> | |
#include <APA102.h> |
BUILDDIR = build | |
GCC_BIN = ../gcc-arm-none-eabi-4_9-2015q1/bin | |
#DEVICE = source | |
CORE = includes/CMSIS | |
PERIPH = includes/STM32F4xx_StdPeriph_Driver | |
STM = includes/STM32F4xx | |
#DISCOVERY = stm32/discovery | |
#SOURCES += $(DISCOVERY)/src/stm32f3_discovery.c |