Skip to content

Instantly share code, notes, and snippets.

View bradmartin's full-sized avatar
🎯
Working for the money

Brad Martin bradmartin

🎯
Working for the money
View GitHub Profile
@bradmartin
bradmartin / List: Nightly.markdown
Created September 16, 2015 17:32
List: Nightly
@bradmartin
bradmartin / gruntfile.js
Created February 15, 2016 17:38
grunt-electron-installer testing...
module.exports = function (grunt) {
grunt.initConfig({
'create-windows-installer': {
x64: {
appDirectory: '/tmp/build/my-app-64',
outputDirectory: '/tmp/build/installer64',
authors: 'My App Inc.',
exe: 'myapp.exe'
},
@bradmartin
bradmartin / async.js
Created October 10, 2017 22:35
async
function helloTest() {
return new Promise((resolve, reject) => {
resolve("yes");
})
};