I hereby claim:
- I am anupvarghese on github.
- I am anupvarghese (https://keybase.io/anupvarghese) on keybase.
- I have a public key ASAQpfwZ3FvmoItBc8kdw1QujGLPWlKeFlE7S6zr5bBv8Ao
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
| { | |
| "Chilli": { | |
| "prefix": "zc", | |
| "body": ["🌶"], | |
| "description": "Log to console" | |
| }, | |
| "Normal Log": { | |
| "prefix": "zl", | |
| "body": ["console.log('$1');"], | |
| "description": "Log to console" |
| type Message = { | |
| text: string; | |
| type: 'Error' | 'Warning' | 'Info'; | |
| }; | |
| type Item = { | |
| product: string; | |
| quantity: number; | |
| price: number; | |
| total: number; | |
| totalGST: number; |
cmd + ,json{
"workbench.colorTheme": "Default Light+",
"terminal.integrated.shell.osx": "/bin/zsh",
"git.enableSmartCommit": true,| import React from 'react'; | |
| import { connect } from 'react-redux'; | |
| import { fromJS } from 'immutable'; | |
| const props = { someId: '123' }; | |
| const Simple = (props) => ( | |
| <div>testing</div> | |
| ); | |
| export default connect( |
brew install gnupg2 pinentry-mac (this includes gpg-agent and pinentry)
Generate a key: $ gpg2 --gen-key
Take the defaults. Whatevs
Tell gpg-agent to use pinentry-mac:
$ vim ~/.gnupg/gpg-agent.conf
| FROM node:0.10.38 | |
| RUN apt-get update -qq && apt-get install -y \ | |
| git \ | |
| && apt-get clean \ | |
| && rm -rf /var/lib/apt/lists/* | |
| ENV TZ=Asia/Singapore | |
| RUN ln -snf /usr/share/zoneinfo/$TZ /etc/localtime && echo $TZ > /etc/timezone |