Skip to content

Instantly share code, notes, and snippets.

View zeert's full-sized avatar
🏠
Working from home

Reinaldo Zurita zeert

🏠
Working from home
View GitHub Profile
@zeert
zeert / frontendDevlopmentBookmarks.md
Created March 10, 2017 12:04 — forked from dypsilon/frontendDevlopmentBookmarks.md
A badass list of frontend development resources I collected over time.
@zeert
zeert / gist:6e16d8dea953dbfe444b82511479367c
Created July 31, 2016 18:59
Simple Google Apps Script to export a single sheet to PDF and email it to a contact list
// Simple function to send Weekly Status Sheets to contacts listed on the "Contacts" sheet in the MPD.
// Load a menu item called "Project Admin" with a submenu item called "Send Status"
// Running this, sends the currently open sheet, as a PDF attachment
function onOpen() {
var submenu = [{name:"Send Status", functionName:"exportSomeSheets"}];
SpreadsheetApp.getActiveSpreadsheet().addMenu('Project Admin', submenu);
}
function exportSomeSheets() {
@zeert
zeert / README.md
Last active August 29, 2015 14:12 — forked from smileart/README.md

My modified fork of agnoster.zsh-theme

A ZSH theme optimized for people who use:

  • Solarized
  • Git
  • Unicode-compatible fonts and terminals (I use iTerm2 + Menlo)

Compatibility

Launch Sublime Text 2 from the Mac OS X Terminal

Sublime Text 2 ships with a CLI called subl (why not "sublime", go figure). This utility is hidden in the following folder (assuming you installed Sublime in /Applications like normal folk. If this following line opens Sublime Text for you, then bingo, you're ready.

open /Applications/Sublime\ Text\ 2.app/Contents/SharedSupport/bin/subl

You can find more (official) details about subl here: http://www.sublimetext.com/docs/2/osx_command_line.html

Installation

@zeert
zeert / dabblet.css
Created March 9, 2012 13:29 — forked from alexmwalker/dabblet.css
CSS3 Pong *
/**
* CSS3 Pong *
*/
body{
background: #000;
}
#court {
margin-top:40px;
border:5px dashed #fff;