URL: /users/
Method: POST
Request Data:
{ | |
"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({ |
" ============================================================================== | |
" Author: Alan Dong | |
" Version: 0.3.5 | |
" Last Modified Date: 8/17/2018 | |
" Description: My Vim Configuration file for Server | |
" ============================================================================== | |
" set shell for bash as default | |
set shell=/bin/bash |
" ============================================================================== | |
" Author: Alan Dong | |
" Version: 0.3.4 | |
" README: TODO | |
" Last Modified Date: 12/07/2018 | |
" Description: My Vim Configuration file | |
" ============================================================================== | |
" set shell for bash as default | |
set shell=/bin/bash |