create different ssh key according the article Mac Set-Up Git
$ ssh-keygen -t rsa -C "your_email@youremail.com"
| # From http://www.iyware.com/osx-yosemite-mamp-homebrew-development-setup/ | |
| # Install Homebrew | |
| xcode-select --install | |
| ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)" | |
| brew doctor | |
| # Tap Repos | |
| brew tap homebrew/dupes | |
| brew tap homebrew/versions |
| # -*- mode: ruby -*- | |
| # vi: set ft=ruby : | |
| Vagrant.configure("2") do |config| | |
| config.vm.box = "scotch/box" | |
| config.vm.network "private_network", ip: "192.168.33.10" | |
| config.vm.hostname = "scotchbox" | |
| config.vm.synced_folder ".", "/var/www", :mount_options => ["dmode=777", "fmode=666"] | |
| # Naming the VM, to look prettier in e.g. Vagrant Manager VM list (modify to your taste) |
| //Just for the demo | |
| body { | |
| background: #fafafa; | |
| font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; | |
| color: #333; | |
| } | |
| .row { | |
| display: flex; | |
| //min-height set for only the demo |
| * { | |
| @include box-sizing(border-box); | |
| } | |
| $pad: 20px; | |
| .grid { | |
| background: white; | |
| margin: 0 0 $pad 0; | |
create different ssh key according the article Mac Set-Up Git
$ ssh-keygen -t rsa -C "your_email@youremail.com"
| // --------------------------------------------- | |
| // Custom styles for TASKS (Taskpaper) | |
| // --------------------------------------------- | |
| // TODO: style notes | |
| // TODO: style bracket matcher | |
| // TODO: bottom-margin for headers | |
| @taskpaper-white: rgb(247, 247, 247); | |
| @taskpaper-black: rgba(0, 0, 0, 0.8); | |
| @taskpaper-gray: rgb(184, 184, 184); |
| const { h, Component, render } = preact; /** @jsx h */ | |
| let q = []; | |
| function enqueue(fn, delay) { | |
| if (q.push(fn)==1) setTimeout(processQueue, delay); | |
| } | |
| function processQueue() { | |
| let p; | |
| while (p=q.pop()) p(); | |
| } |
| { | |
| "processors": ["stylelint-processor-styled-components"], | |
| "extends": [ | |
| "stylelint-config-standard", | |
| "stylelint-config-styled-components" | |
| ], | |
| "plugins": ["stylelint-order", "stylelint-no-unsupported-browser-features"], | |
| "syntax": "scss", | |
| "rules": { |
| // ---- | |
| // libsass (v3.5.4) | |
| // ---- | |
| // A sass mixin to produce a specificity bump on a selector by chaining it | |
| @mixin specificity-bump($specificity: 1) { | |
| $selector: "#{&}"; | |
| @for $i from 1 through $specificity { | |
| $selector: $selector + "#{&}"; |
| { | |
| // Use IntelliSense to learn about possible attributes. | |
| // Hover to view descriptions of existing attributes. | |
| // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387 | |
| "version": "0.2.0", | |
| "configurations": [ | |
| { | |
| "type": "chrome", | |
| "request": "launch", | |
| "name": "Chrome Canary", |