This is a template with :
- angular 1.5.3
- ui-router 1.0.0-alpha.4
- bootstrap-3.3.6
- font-awesome-4.6.1
A couple of notes on this template:
| Verifying that +beeman is my blockchain ID. https://onename.com/beeman |
| ➜ ~/workspace/scratch $ git clone https://github.com/strongloop/loopback-example-pubsub.git | |
| Cloning into 'loopback-example-pubsub'... | |
| remote: Counting objects: 6691, done. | |
| remote: Total 6691 (delta 0), reused 0 (delta 0), pack-reused 6691 | |
| Receiving objects: 100% (6691/6691), 8.63 MiB | 4.41 MiB/s, done. | |
| Resolving deltas: 100% (1174/1174), done. | |
| Checking connectivity... done. | |
| ➜ ~/workspace/scratch $ cd loopback-example-pubsub | |
| ➜ [master] ~/workspace/scratch/loopback-example-pubsub $ npm install | |
| npm WARN package.json strong-pubsub-angular-loopback@1.0.0 No license field. |
| #!/bin/bash | |
| # Stops accidental commits to master and develop. https://gist.github.com/beeman/494de3a1ec14f9e6bd31 | |
| # Copied from https://gist.github.com/stefansundin/9059706 | |
| # Install: | |
| # cd path/to/git/repo | |
| # curl -fL -o .git/hooks/pre-commit https://gist.githubusercontent.com/beeman/494de3a1ec14f9e6bd31/raw/pre-commit | |
| # chmod +x .git/hooks/pre-commit | |
| BRANCH=`git rev-parse --abbrev-ref HEAD` | |
| function git-diff-search() { grep -ir $1 $(git diff --cached --name-only || git diff --name-only)} |
| #!/bin/sh | |
| # Alot of these configs have been taken from the various places | |
| # on the web, most from here | |
| # https://github.com/mathiasbynens/dotfiles/blob/master/.osx | |
| # Set the colours you can use | |
| black='\033[0;30m' | |
| white='\033[0;37m' | |
| red='\033[0;31m' |
| #!/bin/bash | |
| # Create swapfile | |
| fallocate -l 1G /swapfile | |
| chmod 600 /swapfile | |
| mkswap /swapfile | |
| # Activate swapfile on boot | |
| echo '# Activate swapfile on boot' >> /etc/fstab | |
| echo '/swapfile none swap sw 0 0' >> /etc/fstab |
| module.exports = function (Category) { | |
| Category.observe('before delete', function (ctx, next) { | |
| var Product = ctx.Model.app.models.Product; | |
| Product.find({ | |
| where: { | |
| categoryId: ctx.where.id | |
| } |
| ; AutoHotkey script to make Windows keyboard shortcuts feel more native when working in a VM on a Mac | |
| ; Bram Borggreve (c) 2014 | |
| ; ******************************************************************************** | |
| ; Some defaults recommended by AutoHotkey. I never ignore recommendations ;-) | |
| ; The shortcuts start after the recommendations | |
| ; ******************************************************************************** | |
| #NoEnv ; Recommended for performance and compatibility with future AutoHotkey releases. | |
| ; #Warn ; Enable warnings to assist with detecting common errors. | |
| SendMode Input ; Recommended for new scripts due to its superior speed and reliability. |