How to setup a new Go project using Google Cloud Run and Cloud SQL.
$ gcloud components update
$ gcloud auth login
| # Output color | |
| export CLICOLOR=1 | |
| export LSCOLORS=dxfxcxdxbxegedabagacad | |
| # Prompt Color | |
| PS1='\[\e[0;32m\]\u\[\e[m\] \[\e[1;34m\]\w\[\e[m\] \[\e[1;32m\]\$\[\e[m\] \[\e[1;37m\]' | |
| alias atom="open -a atom.app" | |
| alias grm='git checkout master && git pull origin master && git checkout - && git rebase master' |
dash_sniffer.service/lib/systemd/system/systemd using command: systemctl daemon-reloadsystemctl enable dash_sniffer.service| import React from 'react'; | |
| const MIN_SCALE = 1; | |
| const MAX_SCALE = 4; | |
| const SETTLE_RANGE = 0.001; | |
| const ADDITIONAL_LIMIT = 0.2; | |
| const DOUBLE_TAP_THRESHOLD = 300; | |
| const ANIMATION_SPEED = 0.04; | |
| const RESET_ANIMATION_SPEED = 0.08; | |
| const INITIAL_X = 0; |
| ssh-keygen -t rsa -b 4096 -m PEM -f jwtRS256.key | |
| # Don't add passphrase | |
| openssl rsa -in jwtRS256.key -pubout -outform PEM -out jwtRS256.key.pub | |
| cat jwtRS256.key | |
| cat jwtRS256.key.pub |
| const randomColor = (() => { | |
| "use strict"; | |
| const randomInt = (min, max) => { | |
| return Math.floor(Math.random() * (max - min + 1)) + min; | |
| }; | |
| return () => { | |
| var h = randomInt(0, 360); | |
| var s = randomInt(42, 98); |
| morseAlphabet ={ | |
| "A" : ".-", | |
| "B" : "-...", | |
| "C" : "-.-.", | |
| "D" : "-..", | |
| "E" : ".", | |
| "F" : "..-.", | |
| "G" : "--.", | |
| "H" : "....", | |
| "I" : "..", |
| --- | |
| layout: default | |
| --- | |
| <div class="blog-index"> | |
| {% assign post = site.posts.first %} | |
| {% assign content = post.content %} | |
| {% include post_detail.html %} | |
| </div> |