repo
stringlengths
5
106
file_url
stringlengths
78
301
file_path
stringlengths
4
211
content
stringlengths
0
32.8k
language
stringclasses
1 value
license
stringclasses
7 values
commit_sha
stringlengths
40
40
retrieved_at
stringdate
2026-01-04 14:56:49
2026-01-05 02:23:25
truncated
bool
2 classes
codex-team/codex.notes
https://github.com/codex-team/codex.notes/blob/362b294c662fcf881fb28c9b524558fea9ba4020/public/javascripts/folder.js
public/javascripts/folder.js
const $ = require('./dom').default; const Dialog = require('./dialog').default; /** * Folders methods * * @typedef {Folder} Folder * @property {Number} id - Folder's id * @property {string} title - Folder's title * @property {Array} notes - Notes list * @prope...
javascript
MIT
362b294c662fcf881fb28c9b524558fea9ba4020
2026-01-05T03:38:52.476398Z
false
codex-team/codex.notes
https://github.com/codex-team/codex.notes/blob/362b294c662fcf881fb28c9b524558fea9ba4020/public/javascripts/user.js
public/javascripts/user.js
/** * DOM helper */ import $ from './dom'; import Dialog from './dialog'; /** * @class User * @classdesc Authentication methods and user object * * @typedef {User} User * @property {Element} authButton - button 'Login with Google' * @property {Object} userData — current user`s data */ export default ...
javascript
MIT
362b294c662fcf881fb28c9b524558fea9ba4020
2026-01-05T03:38:52.476398Z
false
codex-team/codex.notes
https://github.com/codex-team/codex.notes/blob/362b294c662fcf881fb28c9b524558fea9ba4020/public/javascripts/aside-swiper.js
public/javascripts/aside-swiper.js
const SwipeDetector = require('./swipe-detector').default; /** * Aside swiper class * @property {object} CSS dictionary */ export default class AsideSwiper { /** * @constructor * @param {Function} opened - opening callback * @param {Function} closed - closing callback */ constructor({opened, close...
javascript
MIT
362b294c662fcf881fb28c9b524558fea9ba4020
2026-01-05T03:38:52.476398Z
false
codex-team/codex.notes
https://github.com/codex-team/codex.notes/blob/362b294c662fcf881fb28c9b524558fea9ba4020/public/javascripts/app.js
public/javascripts/app.js
'use strict'; /** * Load libraries */ const electron = require('electron'); const Editor = require('./editor').default; /** * Load components */ const Aside = require('./aside').default; const Note = require('./note').default; import User from './user'; import StatusBar from './status-bar'; import ConnectionObs...
javascript
MIT
362b294c662fcf881fb28c9b524558fea9ba4020
2026-01-05T03:38:52.476398Z
false
codex-team/codex.notes
https://github.com/codex-team/codex.notes/blob/362b294c662fcf881fb28c9b524558fea9ba4020/public/javascripts/dom.js
public/javascripts/dom.js
/** * DOM manipulations methods */ export default class DOM { /** * Helper for making Elements with classname and attributes * @param {string} tagName - new Element tag name * @param {array|string} classNames - list or name of CSS classname(s) * @param {Object} attributes - any attr...
javascript
MIT
362b294c662fcf881fb28c9b524558fea9ba4020
2026-01-05T03:38:52.476398Z
false
codex-team/codex.notes
https://github.com/codex-team/codex.notes/blob/362b294c662fcf881fb28c9b524558fea9ba4020/public/javascripts/hawk.js
public/javascripts/hawk.js
!function (o, e) { 'object'==typeof exports&&'object'==typeof module?module.exports=e():'function'==typeof define&&define.amd?define([], e):'object'==typeof exports?exports.hawk=e():o.hawk=e(); }(this, function () { return function (o) { function e(t) { if(n[t])return n[t].exports;var r=n[t]={i:t, l:!1, e...
javascript
MIT
362b294c662fcf881fb28c9b524558fea9ba4020
2026-01-05T03:38:52.476398Z
false
codex-team/codex.notes
https://github.com/codex-team/codex.notes/blob/362b294c662fcf881fb28c9b524558fea9ba4020/public/javascripts/autoresizer.js
public/javascripts/autoresizer.js
/** * Autoresizer module * Expands dynamically height of textareas */ /** * @property elements - array of elements * @property {Function} addResizer - adds listeners * @property {Function} removeResizer - removes listeners * @property {Function} destroy - removes all elements and handlers */ export default cla...
javascript
MIT
362b294c662fcf881fb28c9b524558fea9ba4020
2026-01-05T03:38:52.476398Z
false
codex-team/codex.notes
https://github.com/codex-team/codex.notes/blob/362b294c662fcf881fb28c9b524558fea9ba4020/public/javascripts/aside.js
public/javascripts/aside.js
import Folder from './folder'; import Note from './note'; import FolderSettings from './folder-settings'; const AsideSwiper = require('./aside-swiper').default; const $ = require('./dom').default; /** * Maximum chars at the menu title * @type {Number} */ const menuItemTitleMaxLength = 68; /** * Aside column modu...
javascript
MIT
362b294c662fcf881fb28c9b524558fea9ba4020
2026-01-05T03:38:52.476398Z
false
codex-team/codex.notes
https://github.com/codex-team/codex.notes/blob/362b294c662fcf881fb28c9b524558fea9ba4020/public/javascripts/swipe-detector.js
public/javascripts/swipe-detector.js
/** * Two fingers swipe detection class */ export default class SwipeDetector { /** * @constructor * * @param {Element} el - Element to handle swipe * @param {Function} callback - Callback for swipe event. Accepts {Boolean} directionRight parameter * * * @property {Element} el * @property...
javascript
MIT
362b294c662fcf881fb28c9b524558fea9ba4020
2026-01-05T03:38:52.476398Z
false
codex-team/codex.notes
https://github.com/codex-team/codex.notes/blob/362b294c662fcf881fb28c9b524558fea9ba4020/public/javascripts/folder-settings.js
public/javascripts/folder-settings.js
const Dialog = require('./dialog').default; const $ = require('./dom').default; const Validate = require('./utils/validate').default; /** * Folder Settings panel module * * @property {Boolean} opened - state */ export default class FolderSettings { /** * @constructor */ constructor() { this.toggler =...
javascript
MIT
362b294c662fcf881fb28c9b524558fea9ba4020
2026-01-05T03:38:52.476398Z
false
codex-team/codex.notes
https://github.com/codex-team/codex.notes/blob/362b294c662fcf881fb28c9b524558fea9ba4020/public/javascripts/dialog.js
public/javascripts/dialog.js
const remote = require('electron').remote; /** * */ export default class Dialog { /** * */ constructor() {}; /** * * @returns {boolean} */ static confirm(text) { const browserWindow = remote.getCurrentWindow(); browserWindow.setSheetOffset(30, browserWindow.width / 2); let choic...
javascript
MIT
362b294c662fcf881fb28c9b524558fea9ba4020
2026-01-05T03:38:52.476398Z
false
codex-team/codex.notes
https://github.com/codex-team/codex.notes/blob/362b294c662fcf881fb28c9b524558fea9ba4020/public/javascripts/connection-observer.js
public/javascripts/connection-observer.js
/** * @module ConnectionObserver * * Detects Online and Offline statuses and update state in the Aside * * @typedef {ConnectionObserver} ConnectionObserver */ export default class ConnectionObserver { /** * @constructor */ constructor() { if (window.navigator.onLine) { this.online(); } els...
javascript
MIT
362b294c662fcf881fb28c9b524558fea9ba4020
2026-01-05T03:38:52.476398Z
false
codex-team/codex.notes
https://github.com/codex-team/codex.notes/blob/362b294c662fcf881fb28c9b524558fea9ba4020/public/javascripts/status-bar.js
public/javascripts/status-bar.js
import $ from './dom'; /** * @module StatusBar * @description Module for working with Aside Status Bar * * @typedef {StatusBar} StatusBar * @property {Element} statusBar - Status Bar Element */ export default class StatusBar { /** * @constructor * Find status bar Element, init all stuff */ construct...
javascript
MIT
362b294c662fcf881fb28c9b524558fea9ba4020
2026-01-05T03:38:52.476398Z
false
codex-team/codex.notes
https://github.com/codex-team/codex.notes/blob/362b294c662fcf881fb28c9b524558fea9ba4020/public/javascripts/auth-observer.js
public/javascripts/auth-observer.js
/** * @class AuthObserver * @classdesc Store user's auth state * * Class uses to observe user`s auth state * * @usage * const authObserver = new AuthObserver(); * authObserver.login(userData); * * authObserver.loggedIn === true */ export default class AuthObserver { /** * @constructor * * @param o...
javascript
MIT
362b294c662fcf881fb28c9b524558fea9ba4020
2026-01-05T03:38:52.476398Z
false
codex-team/codex.notes
https://github.com/codex-team/codex.notes/blob/362b294c662fcf881fb28c9b524558fea9ba4020/public/javascripts/utils/hashCoder.js
public/javascripts/utils/hashCoder.js
/** * HashCoder util */ let cachedHashes = {}; /** * HashCoder class * Util that have hashing methods */ export default class HashCoder { /** * Flushes cached hashes */ static resetCache() { cachedHashes = {}; } /** * Simple hash method * @param {String} text */ static simpleHash(tex...
javascript
MIT
362b294c662fcf881fb28c9b524558fea9ba4020
2026-01-05T03:38:52.476398Z
false
codex-team/codex.notes
https://github.com/codex-team/codex.notes/blob/362b294c662fcf881fb28c9b524558fea9ba4020/public/javascripts/utils/clipboard.js
public/javascripts/utils/clipboard.js
/** * Clipboard module */ export default class Clipboard { /** * copy to clipboards passed text * * @param {string} text * @return {boolean} */ static copy(text) { let textarea = document.createElement('textarea'), success = false; Object.assign(textarea.style, { position: 'f...
javascript
MIT
362b294c662fcf881fb28c9b524558fea9ba4020
2026-01-05T03:38:52.476398Z
false
codex-team/codex.notes
https://github.com/codex-team/codex.notes/blob/362b294c662fcf881fb28c9b524558fea9ba4020/public/javascripts/utils/common.js
public/javascripts/utils/common.js
/** * Common methods */ export default class Common { /** * Debouncing method * Call method after passed time * * @param {Function} func - function that we're throttling * @param {Number} wait - time in milliseconds * @param {Boolean} immediate - call now * @return {Function} */ static deb...
javascript
MIT
362b294c662fcf881fb28c9b524558fea9ba4020
2026-01-05T03:38:52.476398Z
false
codex-team/codex.notes
https://github.com/codex-team/codex.notes/blob/362b294c662fcf881fb28c9b524558fea9ba4020/public/javascripts/utils/validate.js
public/javascripts/utils/validate.js
/** * Validate module */ export default class Validate { /** * Check for email validness * * @param {string} email * @return {boolean} */ static email(email) { let re = /^(([^<>()\[\]\\.,;:\s@"]+(\.[^<>()\[\]\\.,;:\s@"]+)*)|(".+"))@((\[[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\])|(([a-zA-Z...
javascript
MIT
362b294c662fcf881fb28c9b524558fea9ba4020
2026-01-05T03:38:52.476398Z
false
codex-team/codex.notes
https://github.com/codex-team/codex.notes/blob/362b294c662fcf881fb28c9b524558fea9ba4020/public/build/bundle.js
public/build/bundle.js
var codex=codex||{};codex.notes=function(t){var e={};function n(r){if(e[r])return e[r].exports;var o=e[r]={i:r,l:!1,exports:{}};return t[r].call(o.exports,o,o.exports,n),o.l=!0,o.exports}return n.m=t,n.c=e,n.d=function(t,e,r){n.o(t,e)||Object.defineProperty(t,e,{configurable:!1,enumerable:!0,get:r})},n.r=function(t){Ob...
javascript
MIT
362b294c662fcf881fb28c9b524558fea9ba4020
2026-01-05T03:38:52.476398Z
true
tcoopman/react-es6-browserify
https://github.com/tcoopman/react-es6-browserify/blob/cb8a218975a17bb27720c2af7290b5fe8ee49be9/gulpfile.js
gulpfile.js
'use strict'; var gulp = require('gulp'); var gutil = require('gulp-util'); var livereload = require('gulp-livereload'); var connect = require('connect'); var rename = require('gulp-rename'); var browserify = require('browserify'); var watchify = require('watchify'); var es6ify = require('es6ify'); var reactify = re...
javascript
MIT
cb8a218975a17bb27720c2af7290b5fe8ee49be9
2026-01-05T03:39:30.902880Z
false
tcoopman/react-es6-browserify
https://github.com/tcoopman/react-es6-browserify/blob/cb8a218975a17bb27720c2af7290b5fe8ee49be9/app/jsx/app.jsx
app/jsx/app.jsx
const React = require('react'); import {MainSection} from './components/MainSection.react.jsx'; const render = () => React.renderComponent( <MainSection />, document.getElementById('content') ); render();
javascript
MIT
cb8a218975a17bb27720c2af7290b5fe8ee49be9
2026-01-05T03:39:30.902880Z
false
tcoopman/react-es6-browserify
https://github.com/tcoopman/react-es6-browserify/blob/cb8a218975a17bb27720c2af7290b5fe8ee49be9/app/jsx/components/Body.react.jsx
app/jsx/components/Body.react.jsx
const React = require('react'); class _Body { getClassName() { return 'foo'; } render() { const x = 'x'; return ( <div className={`${x} ${this.getClassName()} bar`}> Hello there! </div> ); } } export const Body = React.createCl...
javascript
MIT
cb8a218975a17bb27720c2af7290b5fe8ee49be9
2026-01-05T03:39:30.902880Z
false
tcoopman/react-es6-browserify
https://github.com/tcoopman/react-es6-browserify/blob/cb8a218975a17bb27720c2af7290b5fe8ee49be9/app/jsx/components/MainSection.react.jsx
app/jsx/components/MainSection.react.jsx
const React = require('react'); import {Body} from './Body.react.jsx'; class _MainSection { render() { return ( <div> <h1>Example of React with es6 and browserify</h1> <Body /> </div> ); } } export const MainSection = React.createClass(_M...
javascript
MIT
cb8a218975a17bb27720c2af7290b5fe8ee49be9
2026-01-05T03:39:30.902880Z
false
ufologist/responsive-page
https://github.com/ufologist/responsive-page/blob/6d4e98ff33869bbb41281d6b1fbc70f7575df686/responsive-page.js
responsive-page.js
/** * 让你的页面轻松适配各种移动设备和PC端浏览器. * * @version 1.0.0 2015-7-16 * @author Sun http://github.com/ufologist/responsive-page * @license MIT https://github.com/ufologist/responsive-page/blob/master/LICENSE */ (function(global) { // 工具方法 // ------------------------------- var browser = { css3: (functio...
javascript
MIT
6d4e98ff33869bbb41281d6b1fbc70f7575df686
2026-01-05T03:39:31.605327Z
false
ufologist/responsive-page
https://github.com/ufologist/responsive-page/blob/6d4e98ff33869bbb41281d6b1fbc70f7575df686/responsive-page.min.js
responsive-page.min.js
/** * 让你的页面轻松适配各种移动设备和PC端浏览器. * * @version 1.0.0 2015-7-16 * @author Sun http://github.com/ufologist/responsive-page * @license MIT https://github.com/ufologist/responsive-page/blob/master/LICENSE */ (function(c){var d={css3:(function(){var q=c.document.createElement("div");var p=["","webkit","moz","ms"];var o=...
javascript
MIT
6d4e98ff33869bbb41281d6b1fbc70f7575df686
2026-01-05T03:39:31.605327Z
false
hybridgroup/node-bebop
https://github.com/hybridgroup/node-bebop/blob/88512f1bfa0e8321c269961442a373fa4c9e1df5/Gruntfile.js
Gruntfile.js
"use strict"; module.exports = function(grunt) { grunt.initConfig({ eslint: { target: ["Gruntfile.js", "lib", "test", "examples"] }, simplemocha: { all: { src: ["test/*.js"] } } }); grunt.loadNpmTasks("grunt-eslint"); grunt.loadNpmTasks("grunt-simple-mocha"); grunt.registerTask("default"...
javascript
MIT
88512f1bfa0e8321c269961442a373fa4c9e1df5
2026-01-05T03:39:34.360412Z
false
hybridgroup/node-bebop
https://github.com/hybridgroup/node-bebop/blob/88512f1bfa0e8321c269961442a373fa4c9e1df5/test/bebop.js
test/bebop.js
"use strict"; process.env.NODE_ENV = "test"; var bebop = require("../"), expect = require("chai").expect, assert = require("chai").assert, sinon = require("sinon"); describe("Bebop", function() { var drone; beforeEach(function() { drone = bebop.createClient(); }); it("#createClient", functi...
javascript
MIT
88512f1bfa0e8321c269961442a373fa4c9e1df5
2026-01-05T03:39:34.360412Z
false
hybridgroup/node-bebop
https://github.com/hybridgroup/node-bebop/blob/88512f1bfa0e8321c269961442a373fa4c9e1df5/bin/updateCommands.js
bin/updateCommands.js
var request = require('request'); var parser = require('xml2json'); var Promise = require('promise'); var fs = require('fs'); var ARDroneCommands = new Promise(function (resolve, reject) { request('https://raw.githubusercontent.com/Parrot-Developers/libARCommands/master/Xml/ARDrone3_commands.xml', function (err, re...
javascript
MIT
88512f1bfa0e8321c269961442a373fa4c9e1df5
2026-01-05T03:39:34.360412Z
false
hybridgroup/node-bebop
https://github.com/hybridgroup/node-bebop/blob/88512f1bfa0e8321c269961442a373fa4c9e1df5/examples/gps.js
examples/gps.js
"use strict"; var bebop = require("../."); var drone = bebop.createClient(); drone.connect(function() { drone.GPSSettings.resetHome(); drone.WifiSettings.outdoorSetting(1); drone.on("PositionChanged", function(data) { console.log(data); }); });
javascript
MIT
88512f1bfa0e8321c269961442a373fa4c9e1df5
2026-01-05T03:39:34.360412Z
false
hybridgroup/node-bebop
https://github.com/hybridgroup/node-bebop/blob/88512f1bfa0e8321c269961442a373fa4c9e1df5/examples/takeoff-events.js
examples/takeoff-events.js
"use strict"; var bebop = require("../."); var drone = bebop.createClient(); drone.connect(function () { drone.MediaStreaming.videoEnable(1); drone.Piloting.takeOff(); setTimeout(function () { drone.Piloting.landing(); }, 5000); drone.on("navData", function (data) { console.log("Alt changed: " + ...
javascript
MIT
88512f1bfa0e8321c269961442a373fa4c9e1df5
2026-01-05T03:39:34.360412Z
false
hybridgroup/node-bebop
https://github.com/hybridgroup/node-bebop/blob/88512f1bfa0e8321c269961442a373fa4c9e1df5/examples/events.js
examples/events.js
"use strict"; var bebop = require("../."); var drone = bebop.createClient(); var alreadyFlying = false; drone.connect(function() { drone.on("GPSFixStateChanged", function(data) { console.log("GPSFixStateChanged", data); }); drone.on("MavlinkPlayErrorStateChanged", function(data) { console.log("Mavlin...
javascript
MIT
88512f1bfa0e8321c269961442a373fa4c9e1df5
2026-01-05T03:39:34.360412Z
false
hybridgroup/node-bebop
https://github.com/hybridgroup/node-bebop/blob/88512f1bfa0e8321c269961442a373fa4c9e1df5/examples/flightplan.js
examples/flightplan.js
"use strict"; var bebop = require("../."); var drone = bebop.createClient(); var alreadyFlying = false; drone.connect(function() { drone.on("GPSFixStateChanged", function(data) { console.log("GPSFixStateChanged", data); }); drone.on("MavlinkPlayErrorStateChanged", function(data) { console.log("Mavlin...
javascript
MIT
88512f1bfa0e8321c269961442a373fa4c9e1df5
2026-01-05T03:39:34.360412Z
false
hybridgroup/node-bebop
https://github.com/hybridgroup/node-bebop/blob/88512f1bfa0e8321c269961442a373fa4c9e1df5/examples/video.js
examples/video.js
"use strict"; var bebop = require("../."), fs = require("fs"); var output = fs.createWriteStream("./video.h264"), drone = bebop.createClient(), video = drone.getVideoStream(); video.pipe(output); drone.connect(function() { drone.MediaStreaming.videoEnable(1); });
javascript
MIT
88512f1bfa0e8321c269961442a373fa4c9e1df5
2026-01-05T03:39:34.360412Z
false
hybridgroup/node-bebop
https://github.com/hybridgroup/node-bebop/blob/88512f1bfa0e8321c269961442a373fa4c9e1df5/examples/dance.js
examples/dance.js
"use strict"; var bebop = require("../."); var drone = bebop.createClient(); drone.connect(function() { drone.takeOff(); setTimeout(function() { drone.right(10); }, 3000); setTimeout(function() { drone.stop(); }, 4000); setTimeout(function() { drone.left(10); }, 5000); setTimeout(func...
javascript
MIT
88512f1bfa0e8321c269961442a373fa4c9e1df5
2026-01-05T03:39:34.360412Z
false
hybridgroup/node-bebop
https://github.com/hybridgroup/node-bebop/blob/88512f1bfa0e8321c269961442a373fa4c9e1df5/examples/takeoff.js
examples/takeoff.js
"use strict"; var bebop = require("../."); var drone = bebop.createClient(); drone.connect(function() { drone.takeOff(); setTimeout(function() { drone.land(); }, 5000); });
javascript
MIT
88512f1bfa0e8321c269961442a373fa4c9e1df5
2026-01-05T03:39:34.360412Z
false
hybridgroup/node-bebop
https://github.com/hybridgroup/node-bebop/blob/88512f1bfa0e8321c269961442a373fa4c9e1df5/examples/piloting.js
examples/piloting.js
"use strict"; var bebop = require("../."); var drone = bebop.createClient(); drone.connect(function() { drone.Piloting.takeOff(); setTimeout(function() { drone.Piloting.landing(); }, 5000); });
javascript
MIT
88512f1bfa0e8321c269961442a373fa4c9e1df5
2026-01-05T03:39:34.360412Z
false
hybridgroup/node-bebop
https://github.com/hybridgroup/node-bebop/blob/88512f1bfa0e8321c269961442a373fa4c9e1df5/examples/opencv-face-tracking.js
examples/opencv-face-tracking.js
"use strict"; // // This example requires the haarcascade file located at // https://github.com/peterbraden/node-opencv/raw/master/data/haarcascade_frontalface_alt.xml // var bebop = require("../."), cv = require("opencv"), async = require("async"); var drone = bebop.createClient(), mjpg = drone.getMjpeg...
javascript
MIT
88512f1bfa0e8321c269961442a373fa4c9e1df5
2026-01-05T03:39:34.360412Z
false
hybridgroup/node-bebop
https://github.com/hybridgroup/node-bebop/blob/88512f1bfa0e8321c269961442a373fa4c9e1df5/examples/mjpeg-stream.js
examples/mjpeg-stream.js
"use strict"; var bebop = require("../."), cv = require("opencv"); var drone = bebop.createClient(), mjpg = drone.getMjpegStream(), buf = null, w = new cv.NamedWindow("Video", 0); drone.connect(function() { drone.MediaStreaming.videoEnable(1); }); mjpg.on("data", function(data) { buf = data; });...
javascript
MIT
88512f1bfa0e8321c269961442a373fa4c9e1df5
2026-01-05T03:39:34.360412Z
false
hybridgroup/node-bebop
https://github.com/hybridgroup/node-bebop/blob/88512f1bfa0e8321c269961442a373fa4c9e1df5/lib/Animations.js
lib/Animations.js
"use strict"; var commandToBuffer = require("./commandToBuffer"); var Animations = module.exports = function(self) { this.self = self; }; Animations.prototype.startAnimation = function(anim) { var buffer = commandToBuffer(0, "Animations", "StartAnimation", anim); this.self._writePacket(this.self._networkFr...
javascript
MIT
88512f1bfa0e8321c269961442a373fa4c9e1df5
2026-01-05T03:39:34.360412Z
false
hybridgroup/node-bebop
https://github.com/hybridgroup/node-bebop/blob/88512f1bfa0e8321c269961442a373fa4c9e1df5/lib/ffmpeg-shim.js
lib/ffmpeg-shim.js
"use strict"; var ffmpeg = require("fluent-ffmpeg"); if (process.env.NODE_ENV === "test") { ffmpeg = function(source) { return { toFormat: function() { return this; }, size: function() { return this; }, inputFPS: function() { return this; }, outp...
javascript
MIT
88512f1bfa0e8321c269961442a373fa4c9e1df5
2026-01-05T03:39:34.360412Z
false
hybridgroup/node-bebop
https://github.com/hybridgroup/node-bebop/blob/88512f1bfa0e8321c269961442a373fa4c9e1df5/lib/Calibration.js
lib/Calibration.js
"use strict"; var commandToBuffer = require("./commandToBuffer"); var Calibration = module.exports = function(self) { this.self = self; }; Calibration.prototype.magnetoCalibration = function(calibrate) { var buffer = commandToBuffer(0, "Calibration", "MagnetoCalibration", calibrate); this.self._writePacket...
javascript
MIT
88512f1bfa0e8321c269961442a373fa4c9e1df5
2026-01-05T03:39:34.360412Z
false
hybridgroup/node-bebop
https://github.com/hybridgroup/node-bebop/blob/88512f1bfa0e8321c269961442a373fa4c9e1df5/lib/CommonState.js
lib/CommonState.js
"use strict"; var commandToBuffer = require("./commandToBuffer"); var CommonState = module.exports = function(self) { this.self = self; }; CommonState.prototype.productModel = function(model) { var buffer = commandToBuffer(0, "CommonState", "ProductModel", model); this.self._writePacket(this.self._networkF...
javascript
MIT
88512f1bfa0e8321c269961442a373fa4c9e1df5
2026-01-05T03:39:34.360412Z
false
hybridgroup/node-bebop
https://github.com/hybridgroup/node-bebop/blob/88512f1bfa0e8321c269961442a373fa4c9e1df5/lib/Common.js
lib/Common.js
"use strict"; var commandToBuffer = require("./commandToBuffer"); var Common = module.exports = function(self) { this.self = self; }; Common.prototype.allStates = function() { var buffer = commandToBuffer(0, "Common", "AllStates"); this.self._writePacket(this.self._networkFrameGenerator(buffer)); return ...
javascript
MIT
88512f1bfa0e8321c269961442a373fa4c9e1df5
2026-01-05T03:39:34.360412Z
false
hybridgroup/node-bebop
https://github.com/hybridgroup/node-bebop/blob/88512f1bfa0e8321c269961442a373fa4c9e1df5/lib/AccessoryState.js
lib/AccessoryState.js
"use strict"; var commandToBuffer = require("./commandToBuffer"); var AccessoryState = module.exports = function(self) { this.self = self; }; AccessoryState.prototype.accessoryConfigModificationEnabled = function(enabled) { var buffer = commandToBuffer(0, "AccessoryState", "AccessoryConfigModificationEnabled"...
javascript
MIT
88512f1bfa0e8321c269961442a373fa4c9e1df5
2026-01-05T03:39:34.360412Z
false
hybridgroup/node-bebop
https://github.com/hybridgroup/node-bebop/blob/88512f1bfa0e8321c269961442a373fa4c9e1df5/lib/types.js
lib/types.js
"use strict"; module.exports = { "u8": { read: function(buffer, index) { return buffer.readUInt8(index); }, write: function(buffer, value, index) { var data = parseInt(value, 10); buffer.writeUInt8(data, index); return buffer; }, length: 1 }, "i8": { read: function...
javascript
MIT
88512f1bfa0e8321c269961442a373fa4c9e1df5
2026-01-05T03:39:34.360412Z
false
hybridgroup/node-bebop
https://github.com/hybridgroup/node-bebop/blob/88512f1bfa0e8321c269961442a373fa4c9e1df5/lib/Network.js
lib/Network.js
"use strict"; var commandToBuffer = require("./commandToBuffer"); var Network = module.exports = function(self) { this.self = self; }; Network.prototype.disconnect = function() { var buffer = commandToBuffer(0, "Network", "Disconnect"); this.self._writePacket(this.self._networkFrameGenerator(buffer)); re...
javascript
MIT
88512f1bfa0e8321c269961442a373fa4c9e1df5
2026-01-05T03:39:34.360412Z
false
hybridgroup/node-bebop
https://github.com/hybridgroup/node-bebop/blob/88512f1bfa0e8321c269961442a373fa4c9e1df5/lib/Piloting.js
lib/Piloting.js
"use strict"; var commandToBuffer = require("./commandToBuffer"); var Piloting = module.exports = function(self) { this.self = self; }; Piloting.prototype.flatTrim = function() { var buffer = commandToBuffer(1, "Piloting", "FlatTrim"); this.self._writePacket(this.self._networkFrameGenerator(buffer)); ret...
javascript
MIT
88512f1bfa0e8321c269961442a373fa4c9e1df5
2026-01-05T03:39:34.360412Z
false
hybridgroup/node-bebop
https://github.com/hybridgroup/node-bebop/blob/88512f1bfa0e8321c269961442a373fa4c9e1df5/lib/CalibrationState.js
lib/CalibrationState.js
"use strict"; var commandToBuffer = require("./commandToBuffer"); var CalibrationState = module.exports = function(self) { this.self = self; }; CalibrationState.prototype.magnetoCalibrationRequiredState = function(required) { var buffer = commandToBuffer(0, "CalibrationState", "MagnetoCalibrationRequiredState...
javascript
MIT
88512f1bfa0e8321c269961442a373fa4c9e1df5
2026-01-05T03:39:34.360412Z
false
hybridgroup/node-bebop
https://github.com/hybridgroup/node-bebop/blob/88512f1bfa0e8321c269961442a373fa4c9e1df5/lib/index.js
lib/index.js
"use strict"; require("storotype"); var Bebop = require("./bebop"); module.exports.constants = require("./constants"); module.exports.createClient = function(opts) { return new Bebop(opts); };
javascript
MIT
88512f1bfa0e8321c269961442a373fa4c9e1df5
2026-01-05T03:39:34.360412Z
false
hybridgroup/node-bebop
https://github.com/hybridgroup/node-bebop/blob/88512f1bfa0e8321c269961442a373fa4c9e1df5/lib/NetworkEvent.js
lib/NetworkEvent.js
"use strict"; var commandToBuffer = require("./commandToBuffer"); var NetworkEvent = module.exports = function(self) { this.self = self; }; NetworkEvent.prototype.disconnection = function(cause) { var buffer = commandToBuffer(0, "NetworkEvent", "Disconnection", cause); this.self._writePacket(this.self._net...
javascript
MIT
88512f1bfa0e8321c269961442a373fa4c9e1df5
2026-01-05T03:39:34.360412Z
false
hybridgroup/node-bebop
https://github.com/hybridgroup/node-bebop/blob/88512f1bfa0e8321c269961442a373fa4c9e1df5/lib/Charger.js
lib/Charger.js
"use strict"; var commandToBuffer = require("./commandToBuffer"); var Charger = module.exports = function(self) { this.self = self; }; Charger.prototype.setMaxChargeRate = function(rate) { var buffer = commandToBuffer(0, "Charger", "SetMaxChargeRate", rate); this.self._writePacket(this.self._networkFrameGe...
javascript
MIT
88512f1bfa0e8321c269961442a373fa4c9e1df5
2026-01-05T03:39:34.360412Z
false
hybridgroup/node-bebop
https://github.com/hybridgroup/node-bebop/blob/88512f1bfa0e8321c269961442a373fa4c9e1df5/lib/NetworkSettings.js
lib/NetworkSettings.js
"use strict"; var commandToBuffer = require("./commandToBuffer"); var NetworkSettings = module.exports = function(self) { this.self = self; }; NetworkSettings.prototype.wifiSelection = function(type, band, channel) { var buffer = commandToBuffer(1, "NetworkSettings", "WifiSelection", ...
javascript
MIT
88512f1bfa0e8321c269961442a373fa4c9e1df5
2026-01-05T03:39:34.360412Z
false
hybridgroup/node-bebop
https://github.com/hybridgroup/node-bebop/blob/88512f1bfa0e8321c269961442a373fa4c9e1df5/lib/ARLibsVersionsState.js
lib/ARLibsVersionsState.js
"use strict"; var commandToBuffer = require("./commandToBuffer"); var ARLibsVersionsState = module.exports = function(self) { this.self = self; }; ARLibsVersionsState.prototype.controllerLibARCommandsVersion = function(version) { var buffer = commandToBuffer(0, "ARLibsVersionsState", "ControllerLibARCommandsV...
javascript
MIT
88512f1bfa0e8321c269961442a373fa4c9e1df5
2026-01-05T03:39:34.360412Z
false
hybridgroup/node-bebop
https://github.com/hybridgroup/node-bebop/blob/88512f1bfa0e8321c269961442a373fa4c9e1df5/lib/PROState.js
lib/PROState.js
"use strict"; var commandToBuffer = require("./commandToBuffer"); var PROState = module.exports = function(self) { this.self = self; }; PROState.prototype.features = function(features) { var buffer = commandToBuffer(1, "PROState", "Features", features); this.self._writePacket(this.self._networkFrameGenerat...
javascript
MIT
88512f1bfa0e8321c269961442a373fa4c9e1df5
2026-01-05T03:39:34.360412Z
false
hybridgroup/node-bebop
https://github.com/hybridgroup/node-bebop/blob/88512f1bfa0e8321c269961442a373fa4c9e1df5/lib/SpeedSettings.js
lib/SpeedSettings.js
"use strict"; var commandToBuffer = require("./commandToBuffer"); var SpeedSettings = module.exports = function(self) { this.self = self; }; SpeedSettings.prototype.maxVerticalSpeed = function(current) { var buffer = commandToBuffer(1, "SpeedSettings", "MaxVerticalSpeed", current); this.self._writePacket(t...
javascript
MIT
88512f1bfa0e8321c269961442a373fa4c9e1df5
2026-01-05T03:39:34.360412Z
false
hybridgroup/node-bebop
https://github.com/hybridgroup/node-bebop/blob/88512f1bfa0e8321c269961442a373fa4c9e1df5/lib/AnimationsState.js
lib/AnimationsState.js
"use strict"; var commandToBuffer = require("./commandToBuffer"); var AnimationsState = module.exports = function(self) { this.self = self; }; AnimationsState.prototype.list = function(obj) { var buffer = commandToBuffer(0, "AnimationsState", "List", obj); this.self._writePacket(this.self._networkFrameGene...
javascript
MIT
88512f1bfa0e8321c269961442a373fa4c9e1df5
2026-01-05T03:39:34.360412Z
false
hybridgroup/node-bebop
https://github.com/hybridgroup/node-bebop/blob/88512f1bfa0e8321c269961442a373fa4c9e1df5/lib/GPS.js
lib/GPS.js
"use strict"; var commandToBuffer = require("./commandToBuffer"); var GPS = module.exports = function(self) { this.self = self; }; GPS.prototype.controllerPositionForRun = function(latitude, longitude) { var buffer = commandToBuffer(0, "GPS", "ControllerPositionForRun", latitude, longitude); this.self._wri...
javascript
MIT
88512f1bfa0e8321c269961442a373fa4c9e1df5
2026-01-05T03:39:34.360412Z
false
hybridgroup/node-bebop
https://github.com/hybridgroup/node-bebop/blob/88512f1bfa0e8321c269961442a373fa4c9e1df5/lib/FlightPlanEvent.js
lib/FlightPlanEvent.js
"use strict"; var commandToBuffer = require("./commandToBuffer"); var FlightPlanEvent = module.exports = function(self) { this.self = self; }; FlightPlanEvent.prototype.startingErrorEvent = function() { var buffer = commandToBuffer(0, "FlightPlanEvent", "StartingErrorEvent"); this.self._writePacket(this.se...
javascript
MIT
88512f1bfa0e8321c269961442a373fa4c9e1df5
2026-01-05T03:39:34.360412Z
false
hybridgroup/node-bebop
https://github.com/hybridgroup/node-bebop/blob/88512f1bfa0e8321c269961442a373fa4c9e1df5/lib/Audio.js
lib/Audio.js
"use strict"; var commandToBuffer = require("./commandToBuffer"); var Audio = module.exports = function(self) { this.self = self; }; Audio.prototype.controllerReadyForStreaming = function(ready) { var buffer = commandToBuffer(0, "Audio", "ControllerReadyForStreaming", ready); this.self._writePacket(this.se...
javascript
MIT
88512f1bfa0e8321c269961442a373fa4c9e1df5
2026-01-05T03:39:34.360412Z
false
hybridgroup/node-bebop
https://github.com/hybridgroup/node-bebop/blob/88512f1bfa0e8321c269961442a373fa4c9e1df5/lib/MediaRecord.js
lib/MediaRecord.js
"use strict"; var commandToBuffer = require("./commandToBuffer"); var MediaRecord = module.exports = function(self) { this.self = self; }; MediaRecord.prototype.picture = function(massStorageId) { var buffer = commandToBuffer(1, "MediaRecord", "Picture", massStorageId); this.self._writePacket(this.self._ne...
javascript
MIT
88512f1bfa0e8321c269961442a373fa4c9e1df5
2026-01-05T03:39:34.360412Z
false
hybridgroup/node-bebop
https://github.com/hybridgroup/node-bebop/blob/88512f1bfa0e8321c269961442a373fa4c9e1df5/lib/Settings.js
lib/Settings.js
"use strict"; var commandToBuffer = require("./commandToBuffer"); var Settings = module.exports = function(self) { this.self = self; }; Settings.prototype.allSettings = function() { var buffer = commandToBuffer(0, "Settings", "AllSettings"); this.self._writePacket(this.self._networkFrameGenerator(buffer));...
javascript
MIT
88512f1bfa0e8321c269961442a373fa4c9e1df5
2026-01-05T03:39:34.360412Z
false
hybridgroup/node-bebop
https://github.com/hybridgroup/node-bebop/blob/88512f1bfa0e8321c269961442a373fa4c9e1df5/lib/constants.js
lib/constants.js
"use strict"; module.exports = { // libARNetworkAL/Includes/libARNetworkAL/ARNETWORKAL_Manager.h ARNETWORKAL_MANAGER_DEFAULT_ID_MAX: 256, // ARNETWORKAL_Frame_t identifiers BD_NET_CD_NONACK_ID: 10, BD_NET_CD_ACK_ID: 11, BD_NET_CD_EMERGENCY_ID: 12, BD_NET_CD_VIDEO_ACK_ID: 13, BD_NET_DC_VIDEO_DATA_ID: 1...
javascript
MIT
88512f1bfa0e8321c269961442a373fa4c9e1df5
2026-01-05T03:39:34.360412Z
false
hybridgroup/node-bebop
https://github.com/hybridgroup/node-bebop/blob/88512f1bfa0e8321c269961442a373fa4c9e1df5/lib/SettingsState.js
lib/SettingsState.js
"use strict"; var commandToBuffer = require("./commandToBuffer"); var SettingsState = module.exports = function(self) { this.self = self; }; SettingsState.prototype.p7id = function(serialID) { var buffer = commandToBuffer(1, "SettingsState", "P7ID", serialID); this.self._writePacket(this.self._networkFrame...
javascript
MIT
88512f1bfa0e8321c269961442a373fa4c9e1df5
2026-01-05T03:39:34.360412Z
false
hybridgroup/node-bebop
https://github.com/hybridgroup/node-bebop/blob/88512f1bfa0e8321c269961442a373fa4c9e1df5/lib/MediaStreaming.js
lib/MediaStreaming.js
"use strict"; var commandToBuffer = require("./commandToBuffer"); var MediaStreaming = module.exports = function(self) { this.self = self; }; MediaStreaming.prototype.videoEnable = function(enable) { var buffer = commandToBuffer(1, "MediaStreaming", "VideoEnable", enable); this.self._writePacket(this.self....
javascript
MIT
88512f1bfa0e8321c269961442a373fa4c9e1df5
2026-01-05T03:39:34.360412Z
false
hybridgroup/node-bebop
https://github.com/hybridgroup/node-bebop/blob/88512f1bfa0e8321c269961442a373fa4c9e1df5/lib/Antiflickering.js
lib/Antiflickering.js
"use strict"; var commandToBuffer = require("./commandToBuffer"); var Antiflickering = module.exports = function(self) { this.self = self; }; Antiflickering.prototype.electricFrequency = function(frequency) { var buffer = commandToBuffer(1, "Antiflickering", "electricFrequency", frequency); this.self._writ...
javascript
MIT
88512f1bfa0e8321c269961442a373fa4c9e1df5
2026-01-05T03:39:34.360412Z
false
hybridgroup/node-bebop
https://github.com/hybridgroup/node-bebop/blob/88512f1bfa0e8321c269961442a373fa4c9e1df5/lib/Camera.js
lib/Camera.js
"use strict"; var commandToBuffer = require("./commandToBuffer"); var Camera = module.exports = function(self) { this.self = self; }; Camera.prototype.orientation = function(tilt, pan) { var buffer = commandToBuffer(1, "Camera", "Orientation", tilt, pan); this.self._writePacket(this.self._networkFrameGener...
javascript
MIT
88512f1bfa0e8321c269961442a373fa4c9e1df5
2026-01-05T03:39:34.360412Z
false
hybridgroup/node-bebop
https://github.com/hybridgroup/node-bebop/blob/88512f1bfa0e8321c269961442a373fa4c9e1df5/lib/WifiSettings.js
lib/WifiSettings.js
"use strict"; var commandToBuffer = require("./commandToBuffer"); var WifiSettings = module.exports = function(self) { this.self = self; }; WifiSettings.prototype.outdoorSetting = function(outdoor) { var buffer = commandToBuffer(0, "WifiSettings", "OutdoorSetting", outdoor); this.self._writePacket(this.sel...
javascript
MIT
88512f1bfa0e8321c269961442a373fa4c9e1df5
2026-01-05T03:39:34.360412Z
false
hybridgroup/node-bebop
https://github.com/hybridgroup/node-bebop/blob/88512f1bfa0e8321c269961442a373fa4c9e1df5/lib/Headlights.js
lib/Headlights.js
"use strict"; var commandToBuffer = require("./commandToBuffer"); var Headlights = module.exports = function(self) { this.self = self; }; Headlights.prototype.intensity = function(left, right) { var buffer = commandToBuffer(0, "Headlights", "intensity", left, right); this.self._writePacket(this.self._netwo...
javascript
MIT
88512f1bfa0e8321c269961442a373fa4c9e1df5
2026-01-05T03:39:34.360412Z
false
hybridgroup/node-bebop
https://github.com/hybridgroup/node-bebop/blob/88512f1bfa0e8321c269961442a373fa4c9e1df5/lib/AudioState.js
lib/AudioState.js
"use strict"; var commandToBuffer = require("./commandToBuffer"); var AudioState = module.exports = function(self) { this.self = self; }; AudioState.prototype.audioStreamingRunning = function(running) { var buffer = commandToBuffer(0, "AudioState", "AudioStreamingRunning", running); this.self._writePacket(...
javascript
MIT
88512f1bfa0e8321c269961442a373fa4c9e1df5
2026-01-05T03:39:34.360412Z
false
hybridgroup/node-bebop
https://github.com/hybridgroup/node-bebop/blob/88512f1bfa0e8321c269961442a373fa4c9e1df5/lib/ChargerState.js
lib/ChargerState.js
"use strict"; var commandToBuffer = require("./commandToBuffer"); var ChargerState = module.exports = function(self) { this.self = self; }; ChargerState.prototype.chargingInfo = function(obj) { var buffer = commandToBuffer(0, "ChargerState", "ChargingInfo", obj); this.self._writePacket(this.self._networkFr...
javascript
MIT
88512f1bfa0e8321c269961442a373fa4c9e1df5
2026-01-05T03:39:34.360412Z
false
hybridgroup/node-bebop
https://github.com/hybridgroup/node-bebop/blob/88512f1bfa0e8321c269961442a373fa4c9e1df5/lib/Accessory.js
lib/Accessory.js
"use strict"; var commandToBuffer = require("./commandToBuffer"); var Accessory = module.exports = function(self) { this.self = self; }; Accessory.prototype.config = function(accessory) { var buffer = commandToBuffer(0, "Accessory", "Config", accessory); this.self._writePacket(this.self._networkFrameGenera...
javascript
MIT
88512f1bfa0e8321c269961442a373fa4c9e1df5
2026-01-05T03:39:34.360412Z
false
hybridgroup/node-bebop
https://github.com/hybridgroup/node-bebop/blob/88512f1bfa0e8321c269961442a373fa4c9e1df5/lib/bebop.js
lib/bebop.js
"use strict"; var EventEmitter = require("events").EventEmitter, dgram = require("dgram"), util = require("util"), net = require("net"), through = require("through"), ffmpeg = require("./ffmpeg-shim"), constants = require("./constants"), commands = require("./commands.json"), types = re...
javascript
MIT
88512f1bfa0e8321c269961442a373fa4c9e1df5
2026-01-05T03:39:34.360412Z
false
hybridgroup/node-bebop
https://github.com/hybridgroup/node-bebop/blob/88512f1bfa0e8321c269961442a373fa4c9e1df5/lib/commandToBuffer.js
lib/commandToBuffer.js
"use strict"; var types = require("./types"); var commands = require("./commands.json"); var partLength = function(part) { if (part.type === "string") { return part.value.length; } return types[part.type].length; }; /* parseCommand is called as part of the process of converting a command list, to a buf...
javascript
MIT
88512f1bfa0e8321c269961442a373fa4c9e1df5
2026-01-05T03:39:34.360412Z
false
hybridgroup/node-bebop
https://github.com/hybridgroup/node-bebop/blob/88512f1bfa0e8321c269961442a373fa4c9e1df5/lib/Mavlink.js
lib/Mavlink.js
"use strict"; var commandToBuffer = require("./commandToBuffer"); var Mavlink = module.exports = function(self) { this.self = self; }; Mavlink.prototype.start = function(filepath, type) { var filename = filepath + "\u0000"; var buffer = commandToBuffer(0, "Mavlink", "Start", filename, type); this.self._wr...
javascript
MIT
88512f1bfa0e8321c269961442a373fa4c9e1df5
2026-01-05T03:39:34.360412Z
false
hybridgroup/node-bebop
https://github.com/hybridgroup/node-bebop/blob/88512f1bfa0e8321c269961442a373fa4c9e1df5/lib/OverHeat.js
lib/OverHeat.js
"use strict"; var commandToBuffer = require("./commandToBuffer"); var OverHeat = module.exports = function(self) { this.self = self; }; OverHeat.prototype.switchOff = function() { var buffer = commandToBuffer(0, "OverHeat", "SwitchOff"); this.self._writePacket(this.self._networkFrameGenerator(buffer)); r...
javascript
MIT
88512f1bfa0e8321c269961442a373fa4c9e1df5
2026-01-05T03:39:34.360412Z
false
hybridgroup/node-bebop
https://github.com/hybridgroup/node-bebop/blob/88512f1bfa0e8321c269961442a373fa4c9e1df5/lib/PilotingSettings.js
lib/PilotingSettings.js
"use strict"; var commandToBuffer = require("./commandToBuffer"); var PilotingSettings = module.exports = function(self) { this.self = self; }; PilotingSettings.prototype.maxAltitude = function(current) { var buffer = commandToBuffer(1, "PilotingSettings", "MaxAltitude", current); this.self._writePacket(th...
javascript
MIT
88512f1bfa0e8321c269961442a373fa4c9e1df5
2026-01-05T03:39:34.360412Z
false
hybridgroup/node-bebop
https://github.com/hybridgroup/node-bebop/blob/88512f1bfa0e8321c269961442a373fa4c9e1df5/lib/GPSSettings.js
lib/GPSSettings.js
"use strict"; var commandToBuffer = require("./commandToBuffer"); var GPSSettings = module.exports = function(self) { this.self = self; }; GPSSettings.prototype.setHome = function(latitude, longitude, altitude) { var buffer = commandToBuffer(1, "GPSSettings", "SetHome", latitude, longitude, altitude); this...
javascript
MIT
88512f1bfa0e8321c269961442a373fa4c9e1df5
2026-01-05T03:39:34.360412Z
false
hybridgroup/node-bebop
https://github.com/hybridgroup/node-bebop/blob/88512f1bfa0e8321c269961442a373fa4c9e1df5/lib/CameraState.js
lib/CameraState.js
"use strict"; var commandToBuffer = require("./commandToBuffer"); var CameraState = module.exports = function(self) { this.self = self; }; CameraState.prototype.orientation = function(tilt, pan) { var buffer = commandToBuffer(1, "CameraState", "Orientation", tilt, pan); this.self._writePacket(this.self._ne...
javascript
MIT
88512f1bfa0e8321c269961442a373fa4c9e1df5
2026-01-05T03:39:34.360412Z
false
hybridgroup/node-bebop
https://github.com/hybridgroup/node-bebop/blob/88512f1bfa0e8321c269961442a373fa4c9e1df5/lib/PictureSettings.js
lib/PictureSettings.js
"use strict"; var commandToBuffer = require("./commandToBuffer"); var PictureSettings = module.exports = function(self) { this.self = self; }; PictureSettings.prototype.pictureFormatSelection = function(type) { var buffer = commandToBuffer(1, "PictureSettings", "PictureFormatSelection", type); this.self._w...
javascript
MIT
88512f1bfa0e8321c269961442a373fa4c9e1df5
2026-01-05T03:39:34.360412Z
false
hybridgroup/node-bebop
https://github.com/hybridgroup/node-bebop/blob/88512f1bfa0e8321c269961442a373fa4c9e1df5/lib/PilotingEvent.js
lib/PilotingEvent.js
"use strict"; var commandToBuffer = require("./commandToBuffer"); var PilotingEvent = module.exports = function(self) { this.self = self; }; PilotingEvent.prototype.moveByEnd = function(obj) { var buffer = commandToBuffer(1, "PilotingEvent", "moveByEnd", obj); this.self._writePacket(this.self._networkFrame...
javascript
MIT
88512f1bfa0e8321c269961442a373fa4c9e1df5
2026-01-05T03:39:34.360412Z
false
280north/jake
https://github.com/280north/jake/blob/c8df87fd8634b671166454251ec4364744883bed/lib/jake.js
lib/jake.js
#!/usr/bin/env narwhal // Copyright 2009 280 North, Inc. (francisco@280north.com) // Copyright 2003, 2004, 2005, 2006, 2007, 2008, 2009 by Jim Weirich (jim.weirich@gmail.com) // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "...
javascript
MIT
c8df87fd8634b671166454251ec4364744883bed
2026-01-05T03:39:35.162051Z
false
280north/jake
https://github.com/280north/jake/blob/c8df87fd8634b671166454251ec4364744883bed/lib/jake/application.js
lib/jake/application.js
// Copyright 2009 280 North, Inc. (francisco@280north.com) // Copyright 2003, 2004, 2005, 2006, 2007, 2008, 2009 by Jim Weirich (jim.weirich@gmail.com) // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to // deal ...
javascript
MIT
c8df87fd8634b671166454251ec4364744883bed
2026-01-05T03:39:35.162051Z
false
280north/jake
https://github.com/280north/jake/blob/c8df87fd8634b671166454251ec4364744883bed/lib/jake/filetask.js
lib/jake/filetask.js
// Copyright 2009 280 North, Inc. (francisco@280north.com) // Copyright 2003, 2004, 2005, 2006, 2007, 2008, 2009 by Jim Weirich (jim.weirich@gmail.com) // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to // deal ...
javascript
MIT
c8df87fd8634b671166454251ec4364744883bed
2026-01-05T03:39:35.162051Z
false
280north/jake
https://github.com/280north/jake/blob/c8df87fd8634b671166454251ec4364744883bed/lib/jake/taskmanager.js
lib/jake/taskmanager.js
// Copyright 2009 280 North, Inc. (francisco@280north.com) // Copyright 2003, 2004, 2005, 2006, 2007, 2008, 2009 by Jim Weirich (jim.weirich@gmail.com) // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to // deal ...
javascript
MIT
c8df87fd8634b671166454251ec4364744883bed
2026-01-05T03:39:35.162051Z
false
280north/jake
https://github.com/280north/jake/blob/c8df87fd8634b671166454251ec4364744883bed/lib/jake/task.js
lib/jake/task.js
// Copyright 2009 280 North, Inc. (francisco@280north.com) // Copyright 2003, 2004, 2005, 2006, 2007, 2008, 2009 by Jim Weirich (jim.weirich@gmail.com) // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to // deal ...
javascript
MIT
c8df87fd8634b671166454251ec4364744883bed
2026-01-05T03:39:35.162051Z
false
280north/jake
https://github.com/280north/jake/blob/c8df87fd8634b671166454251ec4364744883bed/lib/jake/filecreationtask.js
lib/jake/filecreationtask.js
// Copyright 2009 280 North, Inc. (francisco@280north.com) // Copyright 2003, 2004, 2005, 2006, 2007, 2008, 2009 by Jim Weirich (jim.weirich@gmail.com) // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to // deal ...
javascript
MIT
c8df87fd8634b671166454251ec4364744883bed
2026-01-05T03:39:35.162051Z
false
280north/jake
https://github.com/280north/jake/blob/c8df87fd8634b671166454251ec4364744883bed/lib/jake/clean.js
lib/jake/clean.js
// Copyright 2009 280 North, Inc. (francisco@280north.com) // Copyright 2003, 2004, 2005, 2006, 2007, 2008, 2009 by Jim Weirich (jim.weirich@gmail.com) // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to // deal ...
javascript
MIT
c8df87fd8634b671166454251ec4364744883bed
2026-01-05T03:39:35.162051Z
false
280north/jake
https://github.com/280north/jake/blob/c8df87fd8634b671166454251ec4364744883bed/lib/jake/filelist.js
lib/jake/filelist.js
var FILE = require("file"); /* # ######################################################################### # A FileList is essentially an array with a few helper methods defined to # make file manipulation a bit easier. # # FileLists are lazy. When given a list of glob patterns for possible files # to be...
javascript
MIT
c8df87fd8634b671166454251ec4364744883bed
2026-01-05T03:39:35.162051Z
false
lithnet/laps-web
https://github.com/lithnet/laps-web/blob/0e478beeee01cdf6b542d3900634a8c1a7c2446f/src/Lithnet.Laps.Web/Lithnet.Laps.Web/clipboard.min.js
src/Lithnet.Laps.Web/Lithnet.Laps.Web/clipboard.min.js
/*! * clipboard.js v2.0.0 * https://zenorocha.github.io/clipboard.js * * Licensed MIT © Zeno Rocha */ !function(t,e){"object"==typeof exports&&"object"==typeof module?module.exports=e():"function"==typeof define&&define.amd?define([],e):"object"==typeof exports?exports.ClipboardJS=e():t.ClipboardJS=e()}(this,func...
javascript
MIT
0e478beeee01cdf6b542d3900634a8c1a7c2446f
2026-01-05T03:39:35.880945Z
false
lithnet/laps-web
https://github.com/lithnet/laps-web/blob/0e478beeee01cdf6b542d3900634a8c1a7c2446f/src/Lithnet.Laps.Web/Lithnet.Laps.Web/Scripts/jquery-3.3.1.intellisense.js
src/Lithnet.Laps.Web/Lithnet.Laps.Web/Scripts/jquery-3.3.1.intellisense.js
intellisense.annotate(jQuery, { 'ajax': function() { /// <signature> /// <summary>Perform an asynchronous HTTP (Ajax) request.</summary> /// <param name="url" type="String">A string containing the URL to which the request is sent.</param> /// <param name="settings" type="PlainObject">A set of ke...
javascript
MIT
0e478beeee01cdf6b542d3900634a8c1a7c2446f
2026-01-05T03:39:35.880945Z
true
lithnet/laps-web
https://github.com/lithnet/laps-web/blob/0e478beeee01cdf6b542d3900634a8c1a7c2446f/src/Lithnet.Laps.Web/Lithnet.Laps.Web/Scripts/jquery-3.3.1.js
src/Lithnet.Laps.Web/Lithnet.Laps.Web/Scripts/jquery-3.3.1.js
/*! * jQuery JavaScript Library v3.3.1 * https://jquery.com/ * * Includes Sizzle.js * https://sizzlejs.com/ * * Copyright JS Foundation and other contributors * Released under the MIT license * https://jquery.org/license * * Date: 2018-01-20T17:24Z */ ( function( global, factory ) { "use strict"; if ( t...
javascript
MIT
0e478beeee01cdf6b542d3900634a8c1a7c2446f
2026-01-05T03:39:35.880945Z
true
lithnet/laps-web
https://github.com/lithnet/laps-web/blob/0e478beeee01cdf6b542d3900634a8c1a7c2446f/src/Lithnet.Laps.Web/Lithnet.Laps.Web/Scripts/clipboard.min.js
src/Lithnet.Laps.Web/Lithnet.Laps.Web/Scripts/clipboard.min.js
/*! * clipboard.js v2.0.0 * https://zenorocha.github.io/clipboard.js * * Licensed MIT © Zeno Rocha */ !function(t,e){"object"==typeof exports&&"object"==typeof module?module.exports=e():"function"==typeof define&&define.amd?define([],e):"object"==typeof exports?exports.ClipboardJS=e():t.ClipboardJS=e()}(this,func...
javascript
MIT
0e478beeee01cdf6b542d3900634a8c1a7c2446f
2026-01-05T03:39:35.880945Z
false
lithnet/laps-web
https://github.com/lithnet/laps-web/blob/0e478beeee01cdf6b542d3900634a8c1a7c2446f/src/Lithnet.Laps.Web/Lithnet.Laps.Web/Scripts/popper.min.js
src/Lithnet.Laps.Web/Lithnet.Laps.Web/Scripts/popper.min.js
/* Copyright (C) Federico Zivolo 2018 Distributed under the MIT License (license terms are at http://opensource.org/licenses/MIT). */const e='undefined'!=typeof window&&'undefined'!=typeof document,t=['Edge','Trident','Firefox'];let o=0;for(let n=0;n<t.length;n+=1)if(e&&0<=navigator.userAgent.indexOf(t[n])){o=1;brea...
javascript
MIT
0e478beeee01cdf6b542d3900634a8c1a7c2446f
2026-01-05T03:39:35.880945Z
false
lithnet/laps-web
https://github.com/lithnet/laps-web/blob/0e478beeee01cdf6b542d3900634a8c1a7c2446f/src/Lithnet.Laps.Web/Lithnet.Laps.Web/Scripts/bootstrap.bundle.js
src/Lithnet.Laps.Web/Lithnet.Laps.Web/Scripts/bootstrap.bundle.js
/*! * Bootstrap v4.3.1 (https://getbootstrap.com/) * Copyright 2011-2019 The Bootstrap Authors (https://github.com/twbs/bootstrap/graphs/contributors) * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE) */ (function (global, factory) { typeof exports === 'object' && typeof module !== ...
javascript
MIT
0e478beeee01cdf6b542d3900634a8c1a7c2446f
2026-01-05T03:39:35.880945Z
true
lithnet/laps-web
https://github.com/lithnet/laps-web/blob/0e478beeee01cdf6b542d3900634a8c1a7c2446f/src/Lithnet.Laps.Web/Lithnet.Laps.Web/Scripts/popper-utils.min.js
src/Lithnet.Laps.Web/Lithnet.Laps.Web/Scripts/popper-utils.min.js
/* Copyright (C) Federico Zivolo 2018 Distributed under the MIT License (license terms are at http://opensource.org/licenses/MIT). */function a(a,b){if(1!==a.nodeType)return[];const c=getComputedStyle(a,null);return b?c[b]:c}function b(a){return'HTML'===a.nodeName?a:a.parentNode||a.host}function c(d){if(!d)return do...
javascript
MIT
0e478beeee01cdf6b542d3900634a8c1a7c2446f
2026-01-05T03:39:35.880945Z
false
lithnet/laps-web
https://github.com/lithnet/laps-web/blob/0e478beeee01cdf6b542d3900634a8c1a7c2446f/src/Lithnet.Laps.Web/Lithnet.Laps.Web/Scripts/jquery.validate-vsdoc.js
src/Lithnet.Laps.Web/Lithnet.Laps.Web/Scripts/jquery.validate-vsdoc.js
/* * This file has been commented to support Visual Studio Intellisense. * You should not use this file at runtime inside the browser--it is only * intended to be used only for design-time IntelliSense. Please use the * standard jQuery library for all production use. * * Comment version: 1.17.0 */ /* * Note: While M...
javascript
MIT
0e478beeee01cdf6b542d3900634a8c1a7c2446f
2026-01-05T03:39:35.880945Z
true
lithnet/laps-web
https://github.com/lithnet/laps-web/blob/0e478beeee01cdf6b542d3900634a8c1a7c2446f/src/Lithnet.Laps.Web/Lithnet.Laps.Web/Scripts/jquery.validate.unobtrusive.min.js
src/Lithnet.Laps.Web/Lithnet.Laps.Web/Scripts/jquery.validate.unobtrusive.min.js
/* NUGET: BEGIN LICENSE TEXT * * Microsoft grants you the right to use these script files for the sole * purpose of either: (i) interacting through your browser with the Microsoft * website or online service, subject to the applicable licensing or use * terms; or (ii) using the files as included with a Microsoft p...
javascript
MIT
0e478beeee01cdf6b542d3900634a8c1a7c2446f
2026-01-05T03:39:35.880945Z
false
lithnet/laps-web
https://github.com/lithnet/laps-web/blob/0e478beeee01cdf6b542d3900634a8c1a7c2446f/src/Lithnet.Laps.Web/Lithnet.Laps.Web/Scripts/bootstrap.js
src/Lithnet.Laps.Web/Lithnet.Laps.Web/Scripts/bootstrap.js
/*! * Bootstrap v4.3.1 (https://getbootstrap.com/) * Copyright 2011-2019 The Bootstrap Authors (https://github.com/twbs/bootstrap/graphs/contributors) * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE) */ (function (global, factory) { typeof exports === 'object' && typeof module !== ...
javascript
MIT
0e478beeee01cdf6b542d3900634a8c1a7c2446f
2026-01-05T03:39:35.880945Z
true
lithnet/laps-web
https://github.com/lithnet/laps-web/blob/0e478beeee01cdf6b542d3900634a8c1a7c2446f/src/Lithnet.Laps.Web/Lithnet.Laps.Web/Scripts/jquery-3.3.1.slim.js
src/Lithnet.Laps.Web/Lithnet.Laps.Web/Scripts/jquery-3.3.1.slim.js
/*! * jQuery JavaScript Library v3.3.1 -ajax,-ajax/jsonp,-ajax/load,-ajax/parseXML,-ajax/script,-ajax/var/location,-ajax/var/nonce,-ajax/var/rquery,-ajax/xhr,-manipulation/_evalUrl,-event/ajax,-effects,-effects/Tween,-effects/animatedSelector * https://jquery.com/ * * Includes Sizzle.js * https://sizzlejs.com/ * ...
javascript
MIT
0e478beeee01cdf6b542d3900634a8c1a7c2446f
2026-01-05T03:39:35.880945Z
true
lithnet/laps-web
https://github.com/lithnet/laps-web/blob/0e478beeee01cdf6b542d3900634a8c1a7c2446f/src/Lithnet.Laps.Web/Lithnet.Laps.Web/Scripts/bootstrap.bundle.min.js
src/Lithnet.Laps.Web/Lithnet.Laps.Web/Scripts/bootstrap.bundle.min.js
/*! * Bootstrap v4.3.1 (https://getbootstrap.com/) * Copyright 2011-2019 The Bootstrap Authors (https://github.com/twbs/bootstrap/graphs/contributors) * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE) */
javascript
MIT
0e478beeee01cdf6b542d3900634a8c1a7c2446f
2026-01-05T03:39:35.880945Z
true