Skip to content

Instantly share code, notes, and snippets.

@ljayz
ljayz / console_log.sublime-snippet
Last active November 9, 2018 05:01 — forked from hzlzh/gist:3128038
Snippet for Sublime Text 3
<snippet>
<!-- put this file in /Packages/User/console_log.sublime-snippet -->
<content><![CDATA[console.log($SELECTION$1);]]></content>
<tabTrigger>log</tabTrigger>
<scope>text.html,source.js</scope>
<description>console.log()</description>
</snippet>
#!/bin/bash
##
# Modified version of https://gist.github.com/3680107
#
# Tested for use on Mac OS X 10.7.5 with Bash 3.2.48(1)-release
#
# Old module needs to be in system/cms/modules and a single word (Ex: blogs not site_blogs)
##
@ljayz
ljayz / dabblet.css
Created August 10, 2012 09:23 — forked from abernier/index.css
Vertical centering CSS technique
/**
* Vertical centering CSS technique
*/
div:before,
div p {display:inline-block; vertical-align:middle;}
div:before {content:" "; height:100%;}