For osx
Create different ssh key according the article: Generate new SSH key
$ ssh-keygen -t ed25519 -C "[email protected]"
| <!DOCTYPE html> | |
| <html lang="en"> | |
| <head> | |
| <meta charset="utf-8" /> | |
| <meta http-equiv="X-UA-Compatible" content="IE=edge"> | |
| <meta name="viewport" content="width=device-width"> | |
| <meta name="description" content=""> | |
| <title></title> |
| [alias] | |
| # Korte log van de laatste 20 commits met enkel SHA's en omschrijving. | |
| l = log --pretty=oneline -n 20 --graph | |
| # Gecondenseerde versie van status. Handig als snel overzicht. | |
| s = status -s | |
| # Status shorthand | |
| st = status | |
| # Laat diff zien tussen laatste commit en huidige staat van working copy | |
| d = !"git diff-index --quiet HEAD -- || clear; git diff --patch-with-stat" | |
| # `git di $number` laat diff zien tussen huidige staat en $number revisions geleden |
| /** | |
| * jQuery plugin template by https://github.com/publicJorn | |
| * Features: | |
| * - dynamic plugin name (only supply once) so it's easy to change later | |
| * - plugin factory to make it work in the browser, or with AMD / COMMONJS modules | |
| * - Plugin instance is saved on the selector element | |
| * - Default options are saved to the instance in case you need to figure out a difference between passed options | |
| */ | |
| (function(global, factory) { | |
| 'use strict'; |
| import React, {Component} from 'react'; | |
| export class MyComponent extends Component { | |
| constructor (props) { | |
| super(props); | |
| } | |
| render () { | |
| return ( | |
| <p> |
| <!DOCTYPE html> | |
| <!-- (remove me) | |
| Also consider setting: | |
| class `no-js` : remove (or set to `js`) with javascript | |
| --> | |
| <!--[if IEMobile 7 ]> <html dir="ltr" lang="nl" class="iem7"> <![endif]--> | |
| <!--[if lt IE 7 ]> <html dir="ltr" lang="nl" class="ie6 oldie"> <![endif]--> | |
| <!--[if IE 7 ]> <html dir="ltr" lang="nl" class="ie7 oldie"> <![endif]--> |
| root = true | |
| [*] | |
| charset = utf-8 | |
| end_of_line = lf | |
| insert_final_newline = true | |
| max_line_length = off | |
| trim_trailing_whitespace = true | |
| indent_style = space | |
| indent_size = 2 |
| body::before { | |
| position: fixed; | |
| top: 0; | |
| left: 0; | |
| z-index: 100000; | |
| box-sizing: border-box; | |
| display: block; | |
| padding: 5px; | |
| font-size: 12px; | |
| font-family: sans-serif; |
| /** | |
| * jQuery plugin template by https://github.com/publicJorn | |
| * Features: | |
| * - ES6 (So, it requires a build step to transpile to ES5 for most environments) | |
| * - Dynamic plugin name (only supply once) so it's easy to change later | |
| * - Plugin factory to make it work in the browser, or with AMD / COMMONJS modules | |
| * - Plugin instance is saved on the selector element | |
| * - Default options are saved to the instance in case you need to figure out a difference between passed options | |
| */ | |
| (function(global, factory) { |
| import 'dart:math'; | |
| class Randy { | |
| String say; | |
| int nr; | |
| // Note: Randy constructs with a RANDOM number | |
| Randy(say) { | |
| this.say = say; |
For osx
Create different ssh key according the article: Generate new SSH key
$ ssh-keygen -t ed25519 -C "[email protected]"