These are the profile logs from using :GoBuild
with and without Dispatch detection enabled. I did the profiling using the steps detailed here.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"app/adapters/*.js": { | |
"command": "adapter", | |
"template": [ | |
"// export default DS.{capitalize}Adapter.extend();", | |
] | |
}, | |
"app/components/*.js": { | |
"command": "component", |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# ===================================================================== | |
# Commands | |
# | |
# Build the image | |
# docker run build | |
# | |
# Run the server | |
# docker run --name ember -v $(pwd):/usr/src/app -P ember server | |
# | |
# ===================================================================== |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
" Set Insert mode to allow the backspace key | |
" for deleting characters | |
set backspace=2 | |
" Instead of using a tab, use 2 spaces | |
filetype plugin indent on | |
set tabstop=4 | |
set shiftwidth=4 | |
set expandtab |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* Custom LZW compression class. | |
* | |
* Compilation: javac MyLZW.java | |
* Execution: java MyLZW - {@literal <} input.txt (compress) | |
* Execution: java MyLZW + {@literal <} input.txt (expand) | |
* Dependencies: BinaryIn.java BinaryOut.java | |
* | |
* Compress or expand binary input from standard input using LZW. | |
* |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
* This build file was auto generated by running the Gradle 'init' task | |
* by 'alex' at '1/27/15 7:02 PM' with Gradle 2.2.1 | |
* | |
* This generated file contains a commented-out sample Java project to get you started. | |
* For more details take a look at the Java Quickstart chapter in the Gradle | |
* user guide available at http://gradle.org/docs/2.2.1/userguide/tutorial_java_projects.html | |
*/ | |
// Apply the java plugin to add support for Java |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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). | |
# |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* Simple Node POST Server | |
* ================================= | |
* Desc: Prints out the JSON that it receives to the root of the Server | |
* Auth: Alex LaFroscia (@alexlafroscia) | |
* | |
* | |
* How to Use: | |
* ------------------- | |
* Run `node post-receiver.js` from the root of the directory | |
* |
Avaliable through the Dash Integrations preference pane
Nearly-complete Evernote integration for Alfred
You've got files in a git repo and you want them on a static server. Here's how it's done using a Mac Mini:
-
Set up your local repo
$ mkdir marketing && cd marketing $ git init $ echo 'Hello, world!' > index.html $ git add . $ git commit -am "init"
NewerOlder