- Record video with OS X Quicktime Player (New Screenrecording)
brew install ffmpeg
brew install gifsicle
ffmpeg -i patrol1.mov -pix_fmt rgb24 -r 10 -f gif - | gifsicle --optimize=3 --delay=10 > patrol1a.gif
brew install ffmpeg
brew install gifsicle
ffmpeg -i patrol1.mov -pix_fmt rgb24 -r 10 -f gif - | gifsicle --optimize=3 --delay=10 > patrol1a.gif
'use strict'; | |
var processor = require('../index'); | |
var harness = require('teraslice_op_test_harness')(processor); | |
describe('With data in is []', function() { | |
it('data out is []', function() { | |
expect(harness.run([])).toEqual([]); | |
}); | |
}); |
#!/usr/bin/env python | |
# Create a parameter YAML file: parms1.yml that contains | |
# m: 1 | |
# b: 5 | |
import yaml | |
import click |
watch "\ | |
echo ==== Nodes ==== ; \ | |
echo ; \ | |
curl -s localhost:5678/txt/nodes; \ | |
echo; \ | |
echo ==== Workers ==== ; \ | |
echo; \ | |
curl -s localhost:5678/txt/workers; \ | |
echo; \ | |
echo ==== Slicers ==== ; \ |
import pandas as pd | |
def r(row): | |
if row['lat'] < 5: | |
return row['data'] | |
elif row['lat'] >= 5: | |
return 10 * row['data'] | |
df = pd.DataFrame({ 'data': range(10), 'lat': range(10)}, columns=["lat", "data"]) |
kern.log:Feb 20 06:22:40 hostname gitlab-runner[29279]: Starting multi-runner from /etc/gitlab-runner/config.toml ... | |
kern.log:Feb 20 06:22:40 hostname gitlab-runner[29279]: Running in system-mode. | |
kern.log:Feb 20 06:22:40 hostname gitlab-runner[29279]: | |
kern.log:Feb 20 06:22:40 hostname gitlab-runner[29279]: Checking for builds... received | |
kern.log:Feb 20 06:22:40 hostname gitlab-runner[29279]: gitlab-ci-multi-runner 1.0.4 (014aa8c) | |
kern.log:Feb 20 06:22:40 hostname gitlab-runner[29279]: Using Shell executor... | |
kern.log:Feb 20 06:22:43 hostname gitlab-runner[29279]: 1093 Submitting build to coordinator... ok | |
kern.log:Feb 20 06:23:45 gitlab-runner[29279]: last message repeated 14 times | |
kern.log:Feb 20 06:24:45 gitlab-runner[29279]: last message repeated 18 times | |
kern.log:Feb 20 06:25:45 gitlab-runner[29279]: last message repeated 15 times |
#!/usr/bin/env python | |
# notional mosaic activity, without image acquisition | |
# sleeps removed since pan/tilt are now blocking | |
import time | |
from ptu import PanTiltUnit | |
From 1218660a7528a137e26b5fe38e58fb897f54f7e7 Mon Sep 17 00:00:00 2001 | |
From: Austin Godber <[email protected]> | |
Date: Fri, 25 Dec 2015 13:36:10 -0700 | |
Subject: [PATCH 1/2] trying just cmake variables | |
--- | |
build/build.sh | 8 +++++++- | |
1 file changed, 7 insertions(+), 1 deletion(-) | |
diff --git a/build/build.sh b/build/build.sh |