Skip to content

Instantly share code, notes, and snippets.

{
:user {
:plugins
[[lein-pprint "1.1.2"]
[lein-licenses "0.1.1"]
[cider/cider-nrepl "0.8.1"]]
}
}
*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>.
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

Leadership

  • Work on the right problems
  • Ask the right questions
  • Remove obstacles
" 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
# 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
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
initdb pg
createdb free_trial
postgres -D pg &
@halcyon
halcyon / pom.xml
Created August 27, 2014 16:02
maven jetty
<!--
<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>
# /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)