Skip to content

Instantly share code, notes, and snippets.

View patriciomg's full-sized avatar
🎖️
I may be slow to respond.

Don Pato patriciomg

🎖️
I may be slow to respond.
  • KK
  • Germany
View GitHub Profile
@drobune
drobune / gist:e03d64ef7ba02864781a
Created December 12, 2014 07:11
get only status code on curl
curl -LI mazgi.com -o /dev/null -w '%{http_code}\n' -s
@jakob-stoeck
jakob-stoeck / Copy as textile
Created October 29, 2013 17:52
Copies SequelPro results as a textile table to use it in Redmine or other textile-supported systems. To use, just copy it into your SequelPro Bundle Editor.
#!/usr/bin/php
<?php
$in = fopen('php://stdin', 'r');
$result=array();
$format='_.';
while($line=fgetcsv($in, 0, "\t")) {
$result[]='|'.$format.implode('|'.$format, $line).'|';
$format='';
}
fclose($in);
@postrational
postrational / gunicorn_start.bash
Last active April 4, 2024 12:48
Example of how to set up Django on Nginx with Gunicorn and supervisordhttp://michal.karzynski.pl/blog/2013/06/09/django-nginx-gunicorn-virtualenv-supervisor/
#!/bin/bash
NAME="hello_app" # Name of the application
DJANGODIR=/webapps/hello_django/hello # Django project directory
SOCKFILE=/webapps/hello_django/run/gunicorn.sock # we will communicte using this unix socket
USER=hello # the user to run as
GROUP=webapps # the group to run as
NUM_WORKERS=3 # how many worker processes should Gunicorn spawn
DJANGO_SETTINGS_MODULE=hello.settings # which settings file should Django use
DJANGO_WSGI_MODULE=hello.wsgi # WSGI module name
@Atem18
Atem18 / gist:4696071
Last active April 19, 2024 11:18 — forked from evildmp/gist:3094281
Tutorial to seting up a django website in production.

Set up Django, Nginx and Gunicorn in a Virtualenv controled by Supervisor

Steps with explanations to set up a server using:

  • Virtualenv
  • Virtualenvwrapper
  • Django
  • Gunicorn
@khansensf
khansensf / TermTheme.scpt
Created February 1, 2012 01:09
Small script to rotate through themes in OSX Terminal Window. Great for discerning among many open windows/tabs
-- TermTheme.scpt
-- Ken Hansen 02/2012
-- Sets theme of current terminal window/tab
-----------------------
-- Arguments
-----------------------
-- If a theme name is provided on the command line then set to that
-- Example
-- osascript TermTheme.scpt Grass