Skip to content

Instantly share code, notes, and snippets.

==> Installing simavr from osx-cross/avr
==> Installing dependencies for osx-cross/avr/simavr: libmpc, avr-binutils, avr-gcc
==> Installing osx-cross/avr/simavr dependency: libmpc
==> Downloading https://homebrew.bintray.com/bottles/libmpc-1.0.3_1.sierra.bottl
######################################################################## 100.0%
==> Pouring libmpc-1.0.3_1.sierra.bottle.tar.gz
🍺 /usr/local/Cellar/libmpc/1.0.3_1: 12 files, 345.0KB
==> Installing osx-cross/avr/simavr dependency: avr-binutils
==> Downloading http://ftp.gnu.org/gnu/binutils/binutils-2.28.tar.bz2
######################################################################## 100.0%
❯ serialport-list
/dev/cu.lpss-serial2
/dev/cu.lpss-serial1
/dev/cu.Bluetooth-Incoming-Port
/dev/cu.usbmodem14511 Arduino (www.arduino.cc)
~
❯ serialport-term -p /dev/cu.usbmodem14511
Error Error: Error Resource temporarily unavailable Cannot lock port
@each $type in (facebook, flickr, google-plus, linkedin, tumblr, twitter, vimeo, youtube) {
.#{$type}-icon {
background-image: url('./img/#{$type}.png');
}
}
[2016-10-16T10:55:44-0500 @37.057, verb ] Starting: clang++ -fsyntax-only -Wall -Wextra /Users/lynnhurley/Code/ChainedSignal
s/surface_event_display/src/main.cpp
[2016-10-16T10:55:44-0500 @37.061, verb ] Starting: clang-tidy /Users/lynnhurley/Code/ChainedSignals/surface_event_display/s
rc/main.cpp
[2016-10-16T10:55:44-0500 @37.066, verb ] Starting: clang-check /Users/lynnhurley/Code/ChainedSignals/surface_event_display/
src/main.cpp -- -Wall -Wextra
[2016-10-16T10:55:44-0500 @37.082, debug] [#8] stderr: clangtidy: ['Error while trying to load a compilation database:', 'Co
uld not auto-detect compilation database for file "/Users/lynnhurley/Code/ChainedSignals/surface_event_display/src/main.cpp"
', 'No compilation database found in /Users/lynnhurley/Code/ChainedSignals/surface_event_display/src or any parent directory
', 'json-compilation-database: Error while opening JSON database: No such file or directory', 'Running without flags.', '']
@lynndylanhurley
lynndylanhurley / stacktrace
Created June 7, 2016 22:15
heroku/docker-ruby stacktrace
Building web
Step 1 : FROM heroku/ruby
# Executing 7 build triggers...
Step 1 : COPY Gemfile Gemfile.lock /app/user/
---> Using cache
Step 1 : RUN bundle install --path /app/heroku/ruby/bundle --jobs 4
---> Using cache
Step 1 : ADD . /app/user
Step 1 : ENV RAILS_ENV production
---> Running in a0aa138e2d5d
@lynndylanhurley
lynndylanhurley / stacktrace
Created June 7, 2016 22:14
heroku/docker-ruby stacktrace
herokuPostgresql uses an image, skipping
Building web
Step 1 : FROM heroku/ruby
# Executing 7 build triggers...
Step 1 : COPY Gemfile Gemfile.lock /app/user/
---> Using cache
Step 1 : RUN bundle install --path /app/heroku/ruby/bundle --jobs 4
---> Using cache
Step 1 : ADD . /app/user
Step 1 : ENV RAILS_ENV production
import { createReducer } from 'redux-immutablejs';
import Immutable from 'immutable';
import {FOCUS_ACTION} from '../actions/pl-routes';
const initialState = Immutable.fromJS({
scene: {},
});
export default createReducer(initialState, {
[FOCUS_ACTION]: (state, {scene}) => state.merge({scene}),
❯ brew reinstall neovim --HEAD
==> Reinstalling neovim/neovim/neovim
==> Installing dependencies for neovim/neovim/neovim: cmake, pkg-config
==> Installing neovim/neovim/neovim dependency: cmake
==> Downloading https://homebrew.bintray.com/bottles/cmake-3.5.1.el_capitan.bottle.tar.gz
######################################################################## 100.0%
==> Pouring cmake-3.5.1.el_capitan.bottle.tar.gz
==> Caveats
Emacs Lisp files have been installed to:
/usr/local/share/emacs/site-lisp/cmake
class Auth extends React.Component {
render () {
return (
<View>
<Header />
</View>
);
}
}
<Scene
key="Auth"
hideNavBar={true}>
<Scene
key="Login"
component={Login}
initial={true}
title="Login" />