- Work on the right problems
- Ask the right questions
- Remove obstacles
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
| { | |
| :user { | |
| :plugins | |
| [[lein-pprint "1.1.2"] | |
| [lein-licenses "0.1.1"] | |
| [cider/cider-nrepl "0.8.1"]] | |
| } | |
| } |
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
| *fireplace.txt* Clojure REPL tease | |
| Author: Tim Pope <http://tpo.pe/> | |
| License: Same terms as Vim itself (see |license|) | |
| This plugin is only available if 'compatible' is not set. | |
| *fireplace* | |
| While not strictly necessary, this plugin works best with the middleware | |
| provided by <https://github.com/clojure-emacs/cider-nrepl>. |
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
| RESTORE FILELISTONLY FROM DISK='c:\cygwin64\home\Administrator\SL_Demo_IL2.bak' | |
| RESTORE DATABASE schoollogic FROM DISK = | |
| 'c:\cygwin64\home\Administrator\SL_Demo_IL2.bak' WITH RECOVERY, | |
| MOVE 'patsdata' to 'c:\Program Files\Microsoft SQL Server\MSSQL11.SQLEXPRESS\MSSQL\DATA\school-logic.mdf', | |
| MOVE 'patsdata_log' to 'c:\Program Files\Microsoft SQL Server\MSSQL11.SQLEXPRESS\MSSQL\DATA\school-logic.ldf' | |
| GO | |
| CREATE LOGIN schoollogic WITH PASSWORD = 'schoollogic', CHECK_POLICY = off | |
| GO |
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
| " put this line first in ~/.vimrc | |
| set nocompatible | filetype indent plugin on | syn on | |
| fun! SetupVAM() | |
| let c = get(g:, 'vim_addon_manager', {}) | |
| let g:vim_addon_manager = c | |
| let c.plugin_root_dir = expand('$HOME', 1) . '/.vim/vim-addons' | |
| " most used options you may want to use: | |
| " let c.log_to_buf = 1 | |
| " let c.auto_install = 0 |
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
| # Path to your oh-my-zsh configuration. | |
| ZSH=$HOME/.oh-my-zsh | |
| # Set name of the theme to load. | |
| # Look in ~/.oh-my-zsh/themes/ | |
| # Optionally, if you set this to "random", it'll load a random theme each | |
| # time that oh-my-zsh is loaded. | |
| ZSH_THEME="halcyon" | |
| # Example aliases |
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
| function _prompt_char() { | |
| if $(git rev-parse --is-inside-work-tree >/dev/null 2>&1); then | |
| echo "%{%F{blue}%}±%{%f%k%b%}" | |
| else | |
| echo ' ' | |
| fi | |
| } | |
| # This theme works with both the "dark" and "light" variants of the | |
| # Solarized color schema. Set the SOLARIZED_THEME variable to one of |
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
| initdb pg | |
| createdb free_trial | |
| postgres -D pg & |
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
| <!-- | |
| <plugin> | |
| <groupId>org.mortbay.jetty</groupId> | |
| <artifactId>jetty-maven-plugin</artifactId> | |
| <version>8.1.10.v20130312</version> | |
| </plugin> | |
| --> | |
| <plugin> | |
| <groupId>org.eclipse.jetty</groupId> | |
| <artifactId>jetty-maven-plugin</artifactId> |
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
| # /etc/init/hastebin.conf | |
| description "hastebin server" | |
| author "Keaton Mowery" | |
| # taken from http://blog.joshsoftware.com/2012/02/14/upstart-scripts-in-ubuntu/ | |
| # used to be: start on startup | |
| # until we found some mounts weren't ready yet while booting: | |
| #start on started mountall | |
| #start on (local-filesystems and net-device-up IFACE=eth0) |