Skip to content

Instantly share code, notes, and snippets.

View jbaxleyiii's full-sized avatar
💼
Moved to management

James Baxley jbaxleyiii

💼
Moved to management
View GitHub Profile
@jbaxleyiii
jbaxleyiii / tmux-cheatsheet.markdown
Created July 14, 2017 23:56 — forked from MohamedAlaa/tmux-cheatsheet.markdown
tmux shortcuts & cheatsheet

tmux shortcuts & cheatsheet

start new:

tmux

start new with session name:

tmux new -s myname
@jbaxleyiii
jbaxleyiii / GitShellAliases.ps1
Created January 30, 2017 03:17 — forked from tosyu/GitShellAliases.ps1
Few simple commands/aliases for git in powershell. installation save as for ex.: C:\gitcommands.ps1 open powershell type: notepad $profile add line: . "C:\gitcommands.ps1" close shell
function g {
$newArgs=$args[1..($args.Length-1)]
if ($args[0] -eq "ci") {
git commit $newArgs
} elseif ($args[0] -eq "hof") {
git shortlog -n -s --no-merges
} elseif ($args[0] -eq "cic") {
git commit --amend
} elseif ($args[0] -eq "snake") {
git log --graph --pretty=format:'%Cred%h%Creset -%C(yellow)%d%Creset %s %Cgreen(%cr) %C(cyan)<%an>%Creset' --abbrev-commit --date=relative
@jbaxleyiii
jbaxleyiii / Microsoft.Powershell_profile.ps1
Created January 30, 2017 03:17 — forked from 333fred/Microsoft.Powershell_profile.ps1
Microsoft.Powershell_profile.ps1
Import-Module PSReadLine
Set-PSReadlineKeyHandler -Key Tab -Function Complete
Set-PSReadlineKeyHandler -Key UpArrow -Function HistorySearchBackward
Set-PSReadlineKeyHandler -Key DownArrow -Function HistorySearchForward
#region Smart Insert/Delete
# The next four key handlers are designed to make entering matched quotes
# parens, and braces a nicer experience. I'd like to include functions
# User for local dev
FROM app/base
RUN npm install -g orion-cli
# This forces package-catalog update. Should speed up further runs
RUN meteor show meteor-platform