Skip to content

Instantly share code, notes, and snippets.

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

Angel skozz

🏠
Working from home
View GitHub Profile
# This file should be placed on the directory of ~/blog/config
upstream unicorn {
server unix:/tmp/unicorn.todo.socket fail_timeout=0;
}
server {
listen 80 default;
#server_name example.com;
root /home/username/blog/public;
<head>
<title>meteor_servercall</title>
</head>
<body>
{{> simple}}
{{> passData}}
</body>
<template name="simple">
@skozz
skozz / ubuntu_server_proxy.md
Last active August 29, 2015 14:10
Configurar Proxy en Ubuntu Server 14 - Node.js Expres application

vim ~/.bashrc

Write: export http_proxy="http://[proxy]:[port]"

Example: export http_proxy="http://yuor.proxy.com:8080"

cd /etc/apt/apt.conf.d/

@skozz
skozz / hack.sh
Created June 20, 2012 16:25 — forked from erikh/hack.sh
OSX For Hackers
#!/usr/bin/env sh
##
# This is script with usefull tips taken from:
# https://github.com/mathiasbynens/dotfiles/blob/master/.osx
#
# install it:
# curl -sL https://raw.github.com/gist/2108403/hack.sh | sh
#
@skozz
skozz / jquery_amount_validate.html
Last active December 12, 2015 00:38
jQuery: Validate min/max amount in form input
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<!--
* @cazascripts / angelrmolina.com
-->
<head>
<script src="http://code.jquery.com/jquery-latest.js"></script>
<script>
$(document).ready(function(){
@skozz
skozz / bash_colored
Last active December 31, 2015 19:59 — forked from NoobsArePeople2/gist:4490307
Color your bash.
1. Open Terminal move to your home folder:
`cd ~`
2. Enable git colors:
`git config --global color.ui true`
3. Make a file called ".colors":
`touch .colors`
4. Open .colors and paste the following:
@skozz
skozz / System Design.md
Created April 18, 2016 17:00 — forked from vasanthk/System Design.md
System Design Cheatsheet

#System Design Cheatsheet

Picking the right architecture = Picking the right battles + Managing trade-offs

##Basic Steps

  1. Clarify and agree on the scope of the system
  • User cases (description of sequences of events that, taken together, lead to a system doing something useful)
    • Who is going to use it?
    • How are they going to use it?
@skozz
skozz / s3.sh
Created May 18, 2016 16:59 — forked from chrismdp/s3.sh
Uploading to S3 in 18 lines of Shell (used to upload builds for http://soltrader.net)
# You don't need Fog in Ruby or some other library to upload to S3 -- shell works perfectly fine
# This is how I upload my new Sol Trader builds (http://soltrader.net)
# Based on a modified script from here: http://tmont.com/blargh/2014/1/uploading-to-s3-in-bash
S3KEY="my aws key"
S3SECRET="my aws secret" # pass these in
function putS3
{
path=$1
@skozz
skozz / first-test.js
Last active June 23, 2016 19:33
yelp-update-testing
// Before
{
"task": {
"state": "SUCCESS",
"id": "e3fa2871-8308-4b56-a5ae-7d5fcbabc2cd",
"result": {
"profile": {
"rating": 0.0,
"max_rating": 5,
"name": "Gilmar Soluciones Constructivas",
@skozz
skozz / heroku_rails_phantomjs.md
Created August 4, 2016 14:19 — forked from edelpero/heroku_rails_phantomjs.md
Heroku, Ruby on Rails and PhantomJS

#Heroku, Ruby on Rails and PhantomJS

In this post, I’m going to show you how to modify an existing Ruby on Rails app running on Heroku’s Cedar stack to use PhantomJS for screen scraping. If you’ve never heard of PhantomJS, it’s a command-line WebKit-based browser (that supports JavaScript, cookies, etc.).

Let’s get started. This is a high-level overview of the required steps:

  • Modify your app to use multiple Heroku buildpacks.
  • Extend your app to use both the Ruby as well as the PhantomJS buildpacks.
  • Confirm that everything worked.