This file contains 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
/** | |
* don't know how to use prototype style class defs. It's possible to use method.apply to infer scope, | |
* however it gets complicated when using 3rd party libs and passing a cb function as a parameter. | |
* I've seen context wrappers that do this, but it seems overly complicated when I can just use instance style | |
*/ | |
function InstanceStyleTest() { | |
var self = this; | |
this.methodA = function() { |
This file contains 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
/**************************************************************************** | |
* * | |
* OpenNI 1.x Alpha * | |
* Copyright (C) 2011 PrimeSense Ltd. * | |
* * | |
* This file is part of OpenNI. * | |
* * | |
* OpenNI is free software: you can redistribute it and/or modify * | |
* it under the terms of the GNU Lesser General Public License as published * | |
* by the Free Software Foundation, either version 3 of the License, or * |
This file contains 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
#include <node.h> | |
#include <v8.h> | |
#include <stdio.h> | |
#include <stdlib.h> | |
using namespace v8; | |
Handle<Value> getRandomCoords2D(const Arguments& args) { | |
HandleScope scope; | |
This file contains 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
#include <node.h> | |
#include <v8.h> | |
#include <stdio.h> | |
#include <stdlib.h> | |
#include <string> | |
#include <ViiM/ViiMIncludes.h> | |
#include <ViiM/core/ViiMTypes.h> | |
#include "Viim/ViiM.h" |
This file contains 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
app.service('logcat', function() { | |
var self = this; | |
//***************************************************** | |
//* NODE STUFF HERE! | |
// | |
var adb = require('adbkit'); | |
var Connection = require('adbkit/lib/adb/connection'); | |
//***************************************************** |
This file contains 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
var WebSocketServer = require('websocket').server; | |
var http = require('http'); | |
var server = http.createServer(function(request, response) { | |
console.log((new Date()) + ' Received request for ' + request.url); | |
response.writeHead(404); | |
response.end(); | |
}); | |
server.listen(9000, function() { |
This file contains 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
var http = require('http'); | |
function getBears(styleId) { | |
var url = [ | |
"http://google.com", | |
"/" | |
].join(''); | |
http.get("http://someurl", function(res) { | |
var body = ''; |
This file contains 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
app.on('ready', function() { | |
var injectscript = escape(__dirname + '/inject/test.js'); | |
mainWindow = new BrowserWindow( { width: '800px', height: '600px', 'web-preferences': { 'web-security': false } }); | |
mainWindow.loadUrl('http://google.com' ); | |
mainWindow.openDevTools(); | |
mainWindow.getWebContents().on('did-finish-load', function() { | |
var remotejs = "var js = document.createElement('script'); \ | |
js.src = 'file://' + unescape('" + injectscript + "'); \ | |
console.log(js); \ | |
document.getElementsByTagName('body')[0].appendChild(js);"; |
This file contains 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
/** | |
* Copied from Node-Google-Text-To-Speech module | |
* https://github.com/ashafir20/node-google-text-to-speech | |
* | |
* Altered to not change output to Base64 String, and since I'm | |
* modifying it for my own purposes, I'll make it more directly tied in | |
* as a VO creation script | |
*/ | |
var request = require('request'); |
This file contains 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
{ | |
"version": "2.0.9", | |
"replacements": [ | |
{ | |
"repA": "muslim", | |
"repB": "gun", | |
"type": "Simple", | |
"case": "Override", | |
"active": true | |
}, |
OlderNewer