Skip to content

Instantly share code, notes, and snippets.

View carloscheddar's full-sized avatar

Carlos Feliciano Barba carloscheddar

  • Waggl
  • California
View GitHub Profile
@carloscheddar
carloscheddar / blog-conf
Created November 11, 2014 15:58
Nginx configuration for ghost blog
server {
listen 0.0.0.0:80;
server_name http://your-blog.com; #replace this line with your domain
access_log /var/log/nginx/your-blog.com.log; #replace this with any log name
location / {
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header HOST $http_host;
proxy_set_header X-NginX-Proxy true;
@carloscheddar
carloscheddar / TLDR-blog.sh
Created November 11, 2014 16:07
Setting up a Ghost blog using Docker and Nginx
#For a more detailed approach go to this blog post
#http://carloscheddar.com/setting-up-a-ghost-blog-using-docker-and-nginx-part-1/
# Install Docker
curl -s https://get.docker.io/ubuntu/ | sudo sh
#Create folder to keep ghost data
mkdir ~/ghost-data
#Create Nginx data folder
@carloscheddar
carloscheddar / app.json
Last active December 10, 2015 04:21
app.json file to enable heroku review apps for ember-cli projects
{
"name": "website-name",
"description": "Your website description.",
"scripts": {},
"env": {
"EMBER_ENV": {
"value": "production"
},
"REBUILD_ALL": {
"value": "true"
@carloscheddar
carloscheddar / hide_zeplin_sidebar.js
Created October 20, 2020 21:43
Hides the Zeplin sidebar that opens by default and requires mouse drag to close
// ==UserScript==
// @name Hide Zeplin Sidebar
// @namespace https://app.zeplin.io/
// @version 0.1
// @description Hides the Zeplin sidebar that opens by default and requires mouse drag to close
// @author Carlos Feliciano-Barba
// @match https://app.zeplin.io/project/*
// @grant none
// ==/UserScript==
@carloscheddar
carloscheddar / pivotal-tracker-readable-estimations.js
Last active October 21, 2020 17:16
Replaces estimation symbols with easy to read numbers.
// ==UserScript==
// @name Readable estimations
// @namespace http://tampermonkey.net/
// @version 0.1
// @description Replaces estimation symbols with easy to read numbers.
// @author Carlos Feliciano-Barba
// @match https://www.pivotaltracker.com/n/projects/*
// @grant none
// ==/UserScript==