Skip to content

Instantly share code, notes, and snippets.

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

Esteban Castro estebancastro

🏠
Working from home
  • 23:21 (UTC -06:00)
View GitHub Profile
@boriscy
boriscy / gist:827469
Created February 15, 2011 12:44
Gemfile example
source :rubygems
gem "rails", ">= 3.0"
gem "rack"
gem "clearance", "0.9.0.rc9"
gem "haml"
gem "high_voltage"
gem "hoptoad_notifier"
gem "RedCloth", :require => "redcloth"
gem "paperclip"
@davist11
davist11 / 1 inspire.group index.html
Created April 19, 2012 01:17
Inspire Blog Templates
{embed="_layouts/blog"
blog_title="Inspire"
blog_slug="inspire"
blog_category_id="125"
blog_description="Design & Interaction"
blog_description_more="our three hundred foot view. Primarily written by/for UX designers, visual designers, and front-end developers."
meta_description="Viget’s Inspire blog: discussing all things design & interaction including wireframing, typography, Photoshop tips and techniques, CSS, HTML5, and jQuery."
rss="{gv_inspire_feed}"
}
@djaiss
djaiss / gist:2938259
Created June 15, 2012 19:13
PHP List of countries
<?php
$countries =
array(
"AF" => "Afghanistan",
"AL" => "Albania",
"DZ" => "Algeria",
"AS" => "American Samoa",
"AD" => "Andorra",
"AO" => "Angola",
// Create some global variables so we can use snippets EVERYWHERE
$new_global_vars = array(
'gv_channel_disable_all' => 'disable="categories|category_fields|custom_fields|member_data|pagination|trackbacks"',
'gv_channel_disable_most' => 'disable="categories|category_fields|member_data|pagination|trackbacks"',
'gv_channel_disable_news' => 'disable=categories|category_fields|member_data|trackbacks"',
'gv_channel_disable_basic' => 'disable="member_data|pagination|trackbacks"',
'gv_channel_disable' => 'disable="member_data|trackbacks"',
'gv_date_format' => '%M %j, %Y'
);
@kevinelliott
kevinelliott / osx-10.9-setup.md
Last active November 6, 2020 14:19 — forked from juev/gist:3124344
Clean Install – Mac OS X 10.9 Mavericks

Mac OS X 10.9 Mavericks

Custom recipe to get OS X 10.9 Mavericks running from scratch, setup applications and developer environment. I use this gist to keep track of the important software and steps required to have a functioning system after a semi-annual fresh install.

Install Software

The software selected is software that is "tried and true" --- software I need after any fresh install. I often install other software not listed here, but is handled in a case-by-case basis.

Install from App Store

@font-face {
font-family: 'EntypoRegular';
src: url('font/entypo.eot');
src: url('font/entypo.eot?#iefix') format('embedded-opentype'),
url('font/entypo.woff') format('woff'),
url('font/entypo.ttf') format('truetype'),
url('font/entypo.svg#EntypoRegular') format('svg');
font-weight: normal;
font-style: normal;
}
@brandonkelly
brandonkelly / templating.md
Last active February 7, 2024 15:20
Templating in EE vs. Craft
@octocat
octocat / .gitignore
Created February 27, 2014 19:38
Some common .gitignore configurations
# Compiled source #
###################
*.com
*.class
*.dll
*.exe
*.o
*.so
# Packages #
@salcode
salcode / .gitignore
Last active February 10, 2024 10:56
See https://salferrarello.com/wordpress-gitignore/ for the latest version of my WordPress .gitignore file
# -----------------------------------------------------------------
# .gitignore for WordPress
# Bare Minimum Git
# http://ironco.de/bare-minimum-git/
# ver 20150227
#
# This file is tailored for a WordPress project
# using the default directory structure
#
# This file specifies intentionally untracked files to ignore
@salcode
salcode / .gitignore
Last active July 15, 2024 17:12
.gitignore file for a general web project - Bare Minimum Git
# -----------------------------------------------------------------
# .gitignore
# Bare Minimum Git
# https://salferrarello.com/starter-gitignore-file/
# ver 20221125
#
# From the root of your project run
# curl -O https://gist.githubusercontent.com/salcode/10017553/raw/.gitignore
# to download this file
#