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
$ nix eval '(import <nixos-unstable> {}).lttng-ust.outPath' | |
"/nix/store/6ha8bwciirg7zv9cbaw0170dq3b3j6bf-lttng-ust-2.13.0" | |
$ ls -l /nix/store/6ha8bwciirg7zv9cbaw0170dq3b3j6bf-lttng-ust-2.13.0/lib | |
.r-xr-xr-x 1.1k root 31 Dec 1969 liblttng-ust-common.la | |
lrwxrwxrwx 28 root 31 Dec 1969 liblttng-ust-common.so -> liblttng-ust-common.so.1.0.0 | |
lrwxrwxrwx 28 root 31 Dec 1969 liblttng-ust-common.so.1 -> liblttng-ust-common.so.1.0.0 | |
.r-xr-xr-x 84k root 31 Dec 1969 liblttng-ust-common.so.1.0.0 | |
.r-xr-xr-x 1.0k root 31 Dec 1969 liblttng-ust-ctl.la | |
lrwxrwxrwx 25 root 31 Dec 1969 liblttng-ust-ctl.so -> liblttng-ust-ctl.so.5.0.0 | |
lrwxrwxrwx 25 root 31 Dec 1969 liblttng-ust-ctl.so.5 -> liblttng-ust-ctl.so.5.0.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
// Type definitions for twilio-video.js | |
// Project: https://github.com/twilio/twilio-video.js | |
// Definitions by: Joshua Estrin Skrzypek <https://github.com/jskrzypek/> | |
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped | |
declare module 'twilio-video/dist/twilio-video' { | |
import connect = Twilio.Video.connect; | |
import createLocalAudioTrack = Twilio.Video.createLocalAudioTrack; | |
import createLocalTracks = Twilio.Video.createLocalTracks; | |
import createLocalVideoTrack = Twilio.Video.createLocalVideoTrack; |
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
// adapted from node's posix path.relative() | |
// https://github.com/nodejs/node/blob/be63c26e8c5d9f337cc7349ea37dc5b312c9631d/lib/path.js#L1252-L1342 | |
function getNamespaceRelativeType(namespace, type) { | |
// Trim any leading backslashes | |
var namespaceStart = 1; | |
for (; namespaceStart < namespace.length; ++namespaceStart) { | |
if (namespace.charCodeAt(namespaceStart) !== 47/*/*/) | |
break; |
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
# In the graph we first need to define the nodes and the connections between them | |
Group(core/Group) OUT -> IN FilesystemConnection(server/FilesystemConnection) | |
FilesystemConnection() CONNECTION -> CONNECTION CsvSource(server/CsvSource) | |
CsvSource() OUT -> IN Display(core/Output) | |
Group2(core/Group) OUT -> IN FilesystemConnection2(server/FilesystemConnection) | |
FilesystemConnection2() CONNECTION -> CONNECTION CsvSource2(server/CsvSource) | |
CsvSource2() OUT -> IN Display2(core/Output) | |
# Start off the graph by sending a filename to the file reader | |
'NUCLEAR' -> GROUP Group() |
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
//################################Setup################################################## | |
var ws = require('nodejs-websocket'); | |
var tessel = require('tessel'); | |
var camera = require('camera-vc0706').use(tessel.port['A']); | |
// var wifi = require('wifi-cc3000'); | |
var servolib = require('servo-pca9685'); |