URL: /users/
Method: POST
Request Data:
#!/usr/bin/env zsh | |
# Currently the script will choke on tilde characters used in either search or | |
# replace terms | |
# inspired by | |
# https://gist.github.com/hlissner/db74d23fc00bed81ff62 | |
# https://gist.github.com/kates/5915285 | |
# ag |
DO NOT GIVE ME HIGH LEVEL SHIT, IF I ASK FOR FIX OR EXPLANATION, I WANT ACTUAL CODE OR EXPLANATION!!! I DON'T WANT "Here's how you can blablabla" | |
- Be casual unless otherwise specified | |
- Be terse | |
- Suggest solutions that I didn't think about—anticipate my needs | |
- Treat me as an expert | |
- Be accurate and thorough | |
- Give the answer immediately. Provide detailed explanations and restate my query in your own words if necessary after giving the answer | |
- Value good arguments over authorities, the source is irrelevant | |
- Consider new technologies and contrarian ideas, not just the conventional wisdom |
{ | |
"bootstrapped": true, | |
"in_process_packages": | |
[ | |
], | |
"installed_packages": | |
[ | |
"A File Icon", | |
"AdvancedNewFile", | |
"Babel", |
#!/usr/bin/env python | |
"""Simple HTTP Server With Upload. | |
This module builds on BaseHTTPServer by implementing the standard GET | |
and HEAD requests in a fairly straightforward manner. | |
""" |
import { Promise as EmberPromise } from 'rsvp'; | |
// import Component from '@glimmer/component'; | |
// export default class extends Component { | |
// } | |
import Component from '@ember/component'; | |
export default Component.extend({ |
This Version is for tmux 2.9
# Update config from tmux 2.9
# Issue: https://gitlab.com/fernandobasso/dotfiles/commit/af2c0ac59b93b318575367f0313ad1ca0627a6ba
# Migration: https://gist.github.com/tbutts/6abf7fb5b948c066bf180922fb37adcf
set-option -g default-command "reattach-to-user-namespace -l zsh"
# -- set the mouse gesture on --#
#set -g mode-mouse on
This Version is for tmux 2.0
set-option -g default-command "reattach-to-user-namespace -l zsh"
# -- set the mouse gesture on --#
set -g mode-mouse on
set -g mouse-resize-pane on
set -g mouse-select-pane on
set -g mouse-select-window on
import Ember from 'ember'; | |
function logHook(property) { | |
return function() { | |
let log = `<span class="log-item log-hook-item">${this._debugContainerKey} - ${property}</span>`; | |
Ember.$('body').append(log); | |
return this._super(...arguments); | |
}; | |
}; | |
export default Ember.Controller.extend({ |