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
# Bug Repo Case | |
## Tools | |
### How to use this notebook | |
This notebook will crash when the index of the first branch is set to a 0 index | |
``` | |
<!-- livebook:{"branch_parent_index":0} --> |
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 | |
set -e | |
set -o pipefail | |
IMAGE=${IMAGE:-"/img/resin.img"} | |
API_HOST=${API_HOST:-"https://api.resin.io"} | |
REGISTRY_HOST=${REGISTRY_HOST:-"registry2.resin.io"} | |
SPLASH_IMAGE=${SPLASH_IMAGE:-"/img/resin-logo.png"} |
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
<link rel="import" href="../polymer/polymer.html"> | |
<link rel="import" href="../orov-behaviors/orov-behavior.html"> | |
<link rel="import" href="orov-horizon-behavior.html"> | |
<link rel="import" href="../iron-resizable-behavior/iron-resizable-behavior.html"> | |
<dom-module id="orov-horizon-test"> | |
<style type="text/css"> | |
.hidden { display: none } | |
.horizon { | |
width:100%; |
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
<link rel="import" href="../polymer/polymer.html"> | |
<link rel="import" href="../orov-behaviors/orov-behavior.html"> | |
<script> | |
(function (window) { | |
'use strict'; | |
//ensure the namespace exists in the window object | |
if(!(window.OROV)){window.OROV={}} | |
if(!(window.OROV.behaviors)){window.OROV.behaviors={}} | |
var behaviors = window.OROV.behaviors; |
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
Signed-off-by: Matt Fleming <[email protected]> | |
Link: http://lkml.kernel.org/r/[email protected] | |
Signed-off-by: H. Peter Anvin <[email protected]> | |
Signed-off-by: Greg Kroah-Hartman <[email protected]> | |
--- | |
tools/include/tools/be_byteshift.h | 70 +++++++++++++++++++++++++++++++++++++ | |
tools/include/tools/le_byteshift.h | 70 +++++++++++++++++++++++++++++++++++++ | |
2 files changed, 140 insertions(+) |
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
<!doctype html> | |
<html lang="en"> | |
<head> | |
<meta charset="UTF-8"> | |
<title>OpenScience</title> | |
<script src="//ajax.googleapis.com/ajax/libs/angularjs/1.3.3/angular.min.js"></script> | |
<script src="//cdnjs.cloudflare.com/ajax/libs/angular.js/1.3.3/angular-route.min.js"></script> | |
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script> | |
<link rel="stylesheet" href="http://maxcdn.bootstrapcdn.com/bootstrap/3.3.1/css/bootstrap.min.css"> | |
<script src="//maxcdn.bootstrapcdn.com/bootstrap/3.3.1/js/bootstrap.min.js"></script> |
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
// Welcome! require() some modules from npm (like you were using browserify) | |
// and then hit Run Code to run your code on the right side. | |
// Modules get downloaded from browserify-cdn and bundled in your browser. | |
var SimplePeer = require('simple-peer') | |
var peer1 = new SimplePeer({ initiator: true }) | |
var peer2 = new SimplePeer() | |
peer1.on('signal', function (data) { |
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
# install add-apt-repository | |
sudo apt-get update | |
sudo apt-get install -y software-properties-common | |
# install oracle jdk8 | |
echo oracle-java8-installer shared/accepted-oracle-license-v1-1 select true | debconf-set-selections | |
sudo add-apt-repository -y ppa:webupd8team/java | |
sudo apt-get update | |
sudo apt-get install -y oracle-java8-installer |
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
-framerate 30 \ | |
-an \ | |
-f mp4 \ | |
-g 3 \ | |
-keyint_min 3 \ | |
-reset_timestamps 1 \ | |
-movflags empty_moov+default_base_moof+frag_keyframe \ | |
-profile:v main \ | |
-level 30 \ | |
-pix_fmt yuv420p \ |
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
FROM quantumobject/docker-ros-base | |
MAINTAINER Brian Adams "[email protected]" | |
RUN apt-get update && apt-get install -y \ | |
ros-jade-rosbridge-suite \ | |
gstreamer0.10 \ | |
libgstreamer-plugins-base0.10-dev \ | |
ros-jade-image-transport \ | |
ros-jade-camera-calibration-parsers \ | |
ros-jade-camera-info-manager \ |
NewerOlder