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
| (spacemacs|define-jump-handlers reason-mode) |
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 fish | |
| clear | |
| set -l num_runs 0 | |
| while true; | |
| echo "Executing: $argv" | |
| eval "$argv" |
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
| package fitwell.api | |
| import akka.http.scaladsl.model.HttpResponse | |
| import akka.http.scaladsl.server.Directives._ | |
| import akka.http.scaladsl.model.StatusCodes._ | |
| import scala.concurrent.ExecutionContextExecutor | |
| import sangria.parser.QueryParser | |
| import sangria.execution.Executor |
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
Show hidden characters
| { | |
| "presets": ["es2015", "stage-2", "react"], | |
| "plugins": [ | |
| "react-hot-loader/babel", | |
| "transform-function-bind", | |
| "transform-class-properties", | |
| "transform-export-extensions", | |
| ], | |
| "env": { | |
| "backend": { |
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
| const fs = require('fs'); | |
| var SerialPort = require('serialport').SerialPort; | |
| var serialPort = new SerialPort(process.env['DEVICE'], { | |
| baudRate: 19200, | |
| }); | |
| const contents = fs.readFileSync(process.env.COMMANDS, { encoding: 'utf-8' }); | |
| const commands = contents.split('\n'); | |
| function runCommand(command, rest, done) { |
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
| ⊕ cat .projectile (jf-db-docviewer-integration-tests) | |
| -/*/log | |
| -/*/tmp | |
| -/*/vendor | |
| -/*/public | |
| -/*/node_modules | |
| -/*/.gem | |
| -/.gem⏎ |
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 "../base/functions"; | |
| $base-size: 10px; | |
| @function to-equal($actual, $expected){ | |
| @if $expected == $actual { | |
| @return true; | |
| } @else { | |
| @return $actual; | |
| } | |
| } |
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 {a, b, c} from 'Package' | |
| window.a = a; | |
| window.b = b; | |
| window.c = c; |
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
| RUBY_VERSION=2.1.2 | |
| RUBY_ENGINE=ruby | |
| export RUBY_ROOT=$(pwd)/vruby/ruby-$RUBY_VERSION | |
| export GEM_HOME="./.gem/$RUBY_ENGINE/$RUBY_VERSION" | |
| export GEM_PATH=$GEM_HOME | |
| export PATH=$GEM_HOME/bin:$RUBY_ROOT/bin:$PATH |