I hereby claim:
- I am navio on github.
- I am alnavarro (https://keybase.io/alnavarro) on keybase.
- I have a public key whose fingerprint is B0E6 E1CD 2766 65FC E73A 8B88 814B D436 C61A 2B46
To claim this, I am signing this object:
<!DOCTYPE html> | |
<html> | |
<head> | |
<meta charset="utf-8"> | |
<meta name="viewport" content="width=device-width"> | |
<title>JS Bin</title> | |
<style id="jsbin-css"> | |
.modal{ |
(function(){ | |
var initImages = | |
function(node,selector){ | |
var images = node.querySelector(selector); | |
[].foreach.call(images,function(el){ | |
el.src = el.attr('data-lazyload'); | |
el.classList.remove(selector); | |
}); |
{ | |
"posts": [ | |
{ "id": 1, "title": "json-server", "author": "typicode" } | |
], | |
"comments": [ | |
{ "id": 1, "body": "some comment", "postId": 1 } | |
], | |
"profile": { "name": "typicode" } | |
} |
I hereby claim:
To claim this, I am signing this object:
'use strict'; | |
const electron = require('electron'); | |
const app = electron.app; // Module to control application life. | |
const BrowserWindow = electron.BrowserWindow; // Module to create native browser window. | |
const Menu = electron.Menu; | |
const Tray = electron.Tray; | |
const Positioner = require('electron-positioner'); |
(function(){ | |
var debounce = function(fn,time){ | |
var status = true; | |
var timer = setTimeout(updateTimer(),time); | |
function updateTimer(){ | |
status = true; | |
} |
<html> | |
<head> | |
<title>Information</title> | |
</head> | |
<body> | |
<p>Open Modal</p> | |
</body> | |
<style media="screen"> | |
.ui-modal{ | |
display:block; |
function runner(){ | |
var a = 0; | |
var b = 1; | |
return function fibonacci(){ | |
var c = a + b; | |
a = b; b = c; |
/* | |
* E-Reader | |
* | |
* 0. Define the Ebook | |
* | |
* 1. Lets create a feature: the appendix feature | |
* | |
* An appendix is: a list of all the words in the book | |
* in alphabetical order, along wth the page # on which each | |
* word appears. e.g.: |
mkdirp = require('mkdirp'); | |
fs = require('fs'); | |
fes = require('extfs'); | |
module.exports = function(){ | |
return { folder:folderOperations, file:fileOperations }; | |
} | |
var folderOperations = { |