This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
SEPARATOR="-" | |
DIRS="${PWD}/*" | |
for dir in $DIRS | |
do | |
if [[ -d $dir && $dir == *-* ]] | |
then | |
dirname=$(basename $dir) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# encoding: utf-8 | |
## | |
# Backup | |
# Generated Main Config Template | |
# | |
# For more information: | |
# | |
# View the Git repository at https://github.com/meskyanichi/backup | |
# View the Wiki/Documentation at https://github.com/meskyanichi/backup/wiki |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# encoding: utf-8 | |
## | |
# Backup Generated: my_backup | |
# Once configured, you can run the backup with the following command: | |
# | |
# $ backup perform -t my_backup [-c <path_to_configuration_file>] | |
# |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env bash | |
# Adapted from the book "Nginx HTTP Server", by Clement Nedelcu. | |
# Original Author: Ryuan Norbauer http://norbauerinc.com | |
# Modified: Geoffrey Grosenbach http://topfunky.com | |
# Modified: Clement Nedelcu http://cnedelcu.blogspot.com/ | |
# Modified: Jordan Orelli http://jordanorelli.com/ | |
# source: https://gist.github.com/1161075 | |
# Corresponds with the following compile-time options: |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
server { | |
listen 80; | |
server_name juegoaprendo.hn www.juegoaprendo.hn ccepreb.hn www.ccepreb.hn ccepreb.fernandoirias.com; | |
root /opt/projects/ccepreb/current/public; # <--- be sure to point to 'public'! | |
passenger_enabled on; | |
client_max_body_size 50M; | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
set :rvm_ruby_string, '1.9.3-p0@ccepreb' | |
set :rvm_install_type, :stable | |
set :rvm_install_ruby, :install | |
require "rvm/capistrano" | |
# server details | |
default_run_options[:pty] = true | |
set :application, "your_app" | |
server "ip_or_domain", :app, :web, :db, :primary => true |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
You should not to restart nginx after applying new configuration. | |
ps aux | egrep '(PID|nginx)' | |
and kill the PID | |
kill -HUP PID |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Install latest version of postgresql | |
sudo apt-get install postgresql | |
# Access the console with the postgres role to the postgres database | |
sudo -u postgres psql postgres | |
# Create rol YourAppName | |
create role YourAppName with createdb login password 'YourAppRolePassword'; | |
# Verify that the rol has been created |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public class JSONResponseHandler implements ResponseHandler<Object>{ | |
final static String TAG = "JSONResponseHandler"; | |
@Override | |
public Object handleResponse(HttpResponse response) | |
throws HttpResponseException, IOException { | |
StatusLine statusLine = response.getStatusLine(); | |
HttpEntity entity = response.getEntity(); | |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from django.contrib.auth.models import User | |
from django.db.models import Count | |
ul = User.objects.annotate(Count('_message_set')) | |
for u in ul: | |
print '%s: %s'%(u.username, u._message_set__count) |