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 | |
# 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 |
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
/********************************************************************** | |
/* 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 |
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/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 |
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
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" |
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:
- I am beriberikix on github.
- I am jonathanberi (https://keybase.io/jonathanberi) on keybase.
- I have a public key ASAwpcbuRFqezDsD1tdQzkfzzsG0F_84iykAuzvKOt4PRAo
To claim this, I am signing this object:
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
import _ from 'lodash'; | |
import printMe from './print.js'; | |
import './style.css'; | |
import Icon from './icon.png'; | |
function component() { | |
let element = document.createElement('div'); | |
var btn = document.createElement('button'); | |
element.innerHTML = _.join(['Hello', 'webpack'], ' '); |
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
{ | |
"version": "0.2.0", | |
"configurations": [ | |
{ | |
"name": "Debug Main Process", | |
"type": "node", | |
"request": "launch", | |
"cwd": "${workspaceRoot}", | |
"runtimeExecutable": "${workspaceRoot}/node_modules/.bin/electron", | |
"windows": { |