Skip to content

Instantly share code, notes, and snippets.

View ErnandesAJr's full-sized avatar
🏠
Working from home

Ernandes Junior ErnandesAJr

🏠
Working from home
View GitHub Profile
@AlbertoMonteiro
AlbertoMonteiro / alberto-theme.psm1
Last active August 14, 2021 10:25
My powershell theme
#requires -Version 2 -Modules posh-git
function Write-Theme {
param(
[bool]
$lastCommandFailed,
[string]
$with
)
@greyscaled
greyscaled / README.md
Last active September 19, 2022 08:59
Sequelize + Express + Migrations + Seed Starter
@FrankFang
FrankFang / math.js
Created September 18, 2013 03:04
Handlebars Math.
Handlebars.registerHelper("math", function(lvalue, operator, rvalue, options) {
if (arguments.length < 4) {
// Operator omitted, assuming "+"
options = rvalue;
rvalue = operator;
operator = "+";
}
lvalue = parseFloat(lvalue);
rvalue = parseFloat(rvalue);