Skip to content

Instantly share code, notes, and snippets.

View veloxy's full-sized avatar
🤷‍♂️
What's happening?

Kevin Vandenborne veloxy

🤷‍♂️
What's happening?
View GitHub Profile
@veloxy
veloxy / composer.json
Created July 12, 2016 07:18 — forked from jaytaph/composer.json
Using the Symfony security component as standalone
{
"name": "jaytaph/security-example",
"require": {
"symfony/security-core": "~2.8"
},
"authors": [
{
"name": "Joshua Thijssen",
"email": "jthijssen@noxlogic.nl"
}
@veloxy
veloxy / main.js
Created March 9, 2016 11:59 — forked from nishanths/main.js
Electron tray: Drag and Drop events demo
var app = require('app');
var Menu = require('menu');
var Tray = require('tray');
var appIcon = null;
app.on('ready', function(){
// image is null, so image will not be shown in menu bar
// so click around on the system menu bar to locate the space where the tray icon is
appIcon = new Tray(null);