Skip to content

Instantly share code, notes, and snippets.

vats = {
ES:{
name:"España",
vat: 21
},
DE:{
name:"Germany",
vat: 19
},
AT:{
@dohomi
dohomi / client.js
Last active August 29, 2015 14:09
autoform pure schema validation create user
Template.registerHelper(Schemas, Schema);
@dwilliamson
dwilliamson / gist:e9b1ba3c684162c5a931
Last active December 20, 2021 19:38
Workflow for using git subtree on Windows
To include a library as a subtree, follow these steps:
1. Add the project as a remote
git remote add <remote-name> <source-repo>
2. Fetch the remote
git fetch <remote-name>
3. Add the project
git subtree add --prefix "path/to/project" <remote-name> <remote-branch-name> --squash