Skip to content

Instantly share code, notes, and snippets.

View BenV's full-sized avatar

Ben Vinson BenV

View GitHub Profile
@BenV
BenV / main.js
Created February 3, 2017 19:55
ElectronOverlayPrototype
const electron = require('electron')
const { dialog } = require('electron')
const fs = require('fs');
const spawn = require('child_process').spawn;
// Module to control application life.
const app = electron.app
console.log(`App Path: ${app.getAppPath()}, DLL exists: ${fs.existsSync(app.getAppPath() + '/bin/klover-x86.dll')}`);
let x86 = spawn(app.getAppPath() + '\\bin\\klover-helper-x86.exe', []);
@BenV
BenV / Gemfile
Last active August 29, 2015 14:17 — forked from ysbaddaden/Gemfile
Magnum Status Repeater
source 'https://rubygems.org'
gem "json"
gem 'sinatra', "~> 1.3.5"
gem "octokit", "~> 3.0"