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
{ | |
"bold_folder_labels": true, | |
"caret_style": "phase", | |
"color_scheme": "Packages/User/Monokai Soda.tmTheme", | |
"font_face": "Inconsolata-dz", | |
"font_size": 12.0, | |
"highlight_modified_tabs": true, | |
"ignored_packages": | |
[ | |
"Vintage", |
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
@mixin mq-2x | |
@media only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (min--moz-device-pixel-ratio: 2), only screen and (-moz-min-device-pixel-ratio: 2), only screen and (-o-min-device-pixel-ratio: 2/1), only screen and (min-device-pixel-ratio: 2), only screen and (min-resolution: 192dpi), only screen and (min-resolution: 2dppx) | |
@content |
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
// ================================================== | |
// Gulp Variables | |
// ================================================== | |
var gulp = require('gulp'), | |
gutil = require('gulp-util'); | |
// Compass | |
var compass = require('gulp-compass'); |
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
// ================================================== | |
// Shipit Commands | |
// ================================================== | |
// deploy | |
// pull-assets | |
// backup-local-db | |
// update-local-db | |
// sync-local | |
// backup-production-db | |
// update-production-db |
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
local ret_status="%(?:%{$fg_bold[green]%}→:%{$fg_bold[red]%}→%s)" | |
#ZSH_THEME_GIT_PROMPT_PREFIX="%{$fg[red]%}" | |
#ZSH_THEME_GIT_PROMPT_SUFFIX="%{$reset_color%}" | |
#ZSH_THEME_GIT_PROMPT_DIRTY="%{$fg[blue]%} %{$fg[yellow]%}✗%{$reset_color%}" | |
#ZSH_THEME_GIT_PROMPT_CLEAN="%{$fg[blue]%}" | |
# Adapted from code found at <https://gist.github.com/1712320>. | |
# Modify the colors and symbols in these variables as desired. |
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
-- Selects all from recipe table where the ingredients of a recipe | |
-- has a name that includes potato (case insensitive) | |
SELECT * | |
FROM recipe, jsonb_array_elements(recipe.ingredients) ingredient | |
WHERE ingredient->>'name' ILIKE 'PoTaTo' |