Skip to content

Instantly share code, notes, and snippets.

View christianroman's full-sized avatar

Christian Roman christianroman

  • Mexico
View GitHub Profile
@christianroman
christianroman / gist:6828452
Created October 4, 2013 16:08
Rails grep before renaming a project
grep -Ri 'oldprojectame' * | cut -f1 -d':' | sort | uniq
@christianroman
christianroman / UIImage+ImageEffects.m
Created September 27, 2013 04:23
UIImage+ImageEffects.m
//
// UIImage+ImageEffects.m
// AnimationExamples
//
// Created by Timothy Patrick Johnson on 7/3/13.
// Copyright (c) 2013 Meister. All rights reserved.
//
#import "UIImage+ImageEffects.h"
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical"
tools:context=".MainActivity">
<RelativeLayout
android:layout_width="fill_parent"
android:layout_height="wrap_content">
@christianroman
christianroman / gist:6516864
Last active February 10, 2020 16:28
Install PostgreSQL 9.3.1 + PostGIS + PGRouting on CentOS 6.4
rpm -Uvh http://yum.postgresql.org/9.3/redhat/rhel-6-x86_64/pgdg-centos93-9.3-1.noarch.rpm
yum install postgresql93 postgresql93-server postgresql93-contrib postgresql93-devel postgis2_93 postgis2_93-utils
#Configure PostgreSQL
chkconfig postgresql-9.3 on
service postgresql-9.3 initdb
service postgresql-9.3 start
# Create PostGIS template
@christianroman
christianroman / CentOS_IPTables.sh
Created September 1, 2013 04:54
CentOS_IPTables.sh
#!/bin/sh
#
# A shell script used to setup rules for iptables. Rules gleened from
# various websites.
#
# References:
# http://www.newartisans.com/blog_files/tricks.with.iptables.php
# Wipe the tables clean
iptables -F
@christianroman
christianroman / nginx
Created August 31, 2013 05:13
Nginx init script for CentOS 6/RHEL after running passenger-install-nginx-module
#!/bin/sh
#
# nginx Startup script for nginx
#
# chkconfig: - 85 15
# processname: nginx
# config: /etc/nginx/nginx.conf
# config: /etc/sysconfig/nginx
# pidfile: /var/run/nginx.pid
# description: nginx is an HTTP and reverse proxy server
@christianroman
christianroman / gist:6147093
Created August 3, 2013 16:48
Github repository random name suggestion
sh -c 'cat /usr/share/dict/words | sed -n $(echo $((`cat /dev/urandom | od -N3 -An -i` % `cat /usr/share/dict/words | wc -l`)))p'
jQuery.ajax({
type: 'POST',
url: 'validarCodigoInvitacion',
data: {inputCodigo : '41F8**** tu codigo'},
dataType: 'json',
success: function(response) { console.log(response) ;},
error: function(req, err){ console.log(err); }
});
NSString *address = @"http://gdata.youtube.com/feeds/api/playlists/PLH6Z1vsFvaeTMmRL8GfC3i_rAwLKOOtNF?v=2";
NSURL *url = [[NSURL alloc] initWithString:address];
NSError *error;
NSString *XML = [NSString stringWithContentsOfURL:url encoding:NSUTF8StringEncoding error:&error];
NSData *data = [XML dataUsingEncoding:NSUTF8StringEncoding];
NSXMLParser *parser = [[NSXMLParser alloc] initWithData:data];
@christianroman
christianroman / Asset.sh
Created June 22, 2013 05:01
Prepare PgRouting database
# su - postgres
psql testgisdb -f /usr/share/postlbs/routing_core.sql
psql testgisdb -f /usr/share/postlbs/routing_core_wrappers.sql
psql testgisdb -f /usr/share/postlbs/routing_topology.sql
psql testgisdb -f /usr/share/postlbs/routing_tsp.sql
psql testgisdb -f /usr/share/postlbs/routing_tsp_wrappers.sql
psql testgisdb -f /usr/share/postlbs/routing_dd.sql
psql testgisdb -f /usr/share/postlbs/routing_dd_wrappers.sql