Need to setup gpg-agent first, on OSX I use keychain (it also does ssh-agent)
$ brew info keychain
keychain: stable 2.8.5
User-friendly front-end to ssh-agent(1)
https://www.funtoo.org/Keychain
/usr/local/Cellar/keychain/2.8.5 (7 files, 108.5KB) *
# Insomnia Configuration | |
## Run the test query | |
{ | |
shop { | |
id | |
name | |
} | |
} | |
# Query Structure Examples |
import * as ReactDOM from 'react-dom'; | |
import { List } from '../components'; | |
ReactDOM.render( | |
<List | |
items={[1, 2, 3]} | |
renderItem={item => <li key={item}>{item.toPrecision(3)}</li>} | |
wrapper={({ children }) => <ul>{children}</ul>} | |
/>, |
# vim:ft=zsh ts=2 sw=2 sts=2 | |
# | |
# agnoster's Theme - https://gist.github.com/3712874 | |
# A Powerline-inspired theme for ZSH | |
# | |
# # README | |
# | |
# In order for this theme to render correctly, you will need a | |
# [Powerline-patched font](https://github.com/Lokaltog/powerline-fonts). | |
# Make sure you have a recent version: the code points that Powerline |
This is side-document providing details for some highlighted changes in 2.5.0. For a full list of changes, see the full release note.
# chromium | |
sudo apt install -y chromium-browser | |
# dev (php, docker, git, node, bower, electron, composer) | |
sudo apt install -y \ | |
php php-curl php-mysql \ | |
docker.io \ | |
git \ | |
nodejs npm | |
sudo ln -s /usr/bin/nodejs /usr/bin/node |
'use strict' | |
const MongoClient = require('mongodb') | |
class Database { | |
constructor (uri) { | |
this.uri = uri | |
this.db = {} | |
return this |
Route::get('edit', function() { | |
// fetch our post, and it's associated categories | |
$post = Post::with('cats')->where('id', '=', $id)->first(); | |
// fetch all of our categories | |
$cats = Cat::all(); | |
// create our empty array | |
$post_cats = array(); |
Recursos del Curso Desarrollo Frontend con Developer Tools en Escuela IT