Skip to content

Instantly share code, notes, and snippets.

View jdmaldonado's full-sized avatar
🇩🇪
Germany

Juan David Maldonado Gómez jdmaldonado

🇩🇪
Germany
View GitHub Profile
@jessecogollo
jessecogollo / inspect.js
Created October 23, 2017 06:42
inspect
'use strict';
const {
inspect
} = require('util');
console.log('inspect', inspect(callbackify, { showHidden: true, depth: null , colors: true }));//reusando funcion de ejemplo de callbackify
console.log('inspect Calc', inspect(Calc, { showHidden: true, depth: null, colors: true }));// reusando funcion de ejemplo de inherits
console.log('inspect Calc 2', inspect([Calc, true, 123, 'jesse', undefined, null], { showHidden: true, depth: null, colors: true }));

Building a desktop application with Electron

This is a tutorial for building a Markdown-to-HTML renderer using Electron. It is meant to accompany my session on Building a desktop application with Electron at JSConf Colombia.

The slides for the first part of the presentation are available here.

About Steve

Steve is the Director of Academics for the Front-End Engineering program at the Turing School of Software and Design in Denver, Colorado, USA.

@StephenFluin
StephenFluin / upload.component.ts
Created October 3, 2016 20:30
Firebase Uploader Component with Angular 2
import { Component, Input } from '@angular/core';
import { Router } from '@angular/router';
import { AngularFire, FirebaseListObservable } from 'angularfire2';
import { Observable } from 'rxjs';
declare var firebase: any;
interface Image {
path: string;