Skip to content

Instantly share code, notes, and snippets.

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

Raúl raulghm

🏠
Working from home
View GitHub Profile
// icons
// type item loop
$list:
test list,
article file-text-o,
video film,
pdf file-pdf-o,
link link,
audio volume-up;
@raulghm
raulghm / gist:c41c83c39b9e1f554f7e
Created July 3, 2015 19:30
sublime text comment + auto datetime
import datetime, getpass
import sublime, sublime_plugin
class Comments_cssCommand(sublime_plugin.TextCommand):
def run(self, edit):
comment = "/** \n * Name: Component \n * \n * Created: %s \n * Author: Raúl Hernández M. <[email protected]> \n */ \n\n" % (datetime.datetime.now().strftime("%Y-%m-%d %H:%M"))
self.view.insert(edit, 0, comment)
@raulghm
raulghm / semantic_versioning.md
Last active August 29, 2015 14:26
Semantic Versioning

Semantic Versioning

1.2.3

major minor patch
1 2 3

major: incompatible API changes

@raulghm
raulghm / SassMeister-input.scss
Created October 9, 2015 15:43
Generated by SassMeister.com.
// ----
// libsass (v3.2.5)
// ----
$themes: (
red: (
background: red,
color: white
),
blue: (