Skip to content

Instantly share code, notes, and snippets.

View expalmer's full-sized avatar

Palmer Oliveira expalmer

View GitHub Profile
@expalmer
expalmer / Default%20%28OSX%29.sublime-keymap
Last active December 31, 2019 21:00
SublimeText3 Globo Personal
{
// The Nodejs installation path
"node_path": {
"windows": "node.exe",
"linux": "/usr/bin/nodejs",
"osx": "/usr/local/bin/node"
},
// The location to search for a locally installed eslint package.
// These are all relative paths to a project's directory.
@expalmer
expalmer / cloudSettings
Last active March 12, 2020 02:04
VSCode Mac Air
{"lastUpload":"2020-03-12T02:04:08.348Z","extensionVersion":"v3.4.3"}
@expalmer
expalmer / script.js
Last active January 21, 2020 17:14
Horas Mensais
(function() {
function timeDiff(start, end) {
var diff = end - start;
var units = [
1000 * 60 * 60 *24,
1000 * 60 * 60,
1000 * 60,
1000
];