Skip to content

Instantly share code, notes, and snippets.

View Goles's full-sized avatar

Nicolas Goles Goles

View GitHub Profile
#
# Uncrustify Configuration File
# File Created With UncrustifyX 0.2 (140)
#
# Alignment
# ---------
## Alignment

Hasta donde sé hay "evaluaciones"... había una planilla dando vueltas por ahí que evaluaba las aceleradoras en general por capital levantado. Las que realmente valen la pena son YCombinator, 500 Startups, Techstars (generalizando un poco y en el momento que ví la planilla).

El tema es que Startup Chile no puede medirse (en mi opinión) de esta manera. El objetivo final, es diferente.

Lo que plantea Startup Chile


Mission: "Position Chile as the leading innovation and entrepreneurship hub of Latam"

@Goles
Goles / hello.mm
Last active August 29, 2015 14:20
// Header
@interface AnOperation : NSOperation
@property (nonatomic, readonly) NSString *ifa;
@property (nonatomic, assign) double timeInterval;
@end
// .m
// Tries to access a property with an exponential back-off
@Goles
Goles / gist:1091012
Created July 19, 2011 00:18
Schemaless
db.itemTypes
name: Weapon
types: Pierce, Sharp
name: Magic
types: Fire, Ice
db.items
@Goles
Goles / gist:1091007
Created July 19, 2011 00:12
Pseudo Relational
weapon_type_id | weapon_type
1 Pierce
2 Sharp
magic_type_id | magic_type
1 Fire
weapon_id | weapon| weapon_type_id | damage
1 | Knife | 3 | 2
@Goles
Goles / engine_template_generator.py
Created August 16, 2011 09:20
Gando Games Automatic Engine Template Generation
#!/usr/bin/python
import shutil
import sys
import os
import subprocess
ROOT_PATH = "GGEngine/"
SRC_PATH = "src/gengine"
GG_USERNAME = "username"
GIT_REPO_URL = "ssh://" + GG_USERNAME + "@gandogames.com/path/to/engine.git "
Usage:
rvm get {stable|latest|x.y.z|head|master|branch|help} [--auto]
Options:
stable - git clone and install the latest RVM repository stable branch.
latest - download and install the latest RVM release listed by
https://rvm.beginrescueend.com/releases/stable-version.txt
➜ ~ rvm get stable && rvm get head
Original installed RVM version:
rvm 1.10.2 by Wayne E. Seguin <wayneeseguin@gmail.com>, Michal Papis <mpapis@gmail.com> [https://rvm.beginrescueend.com/]
Downloading RVM from wayneeseguin branch stable
% Total % Received % Xferd Average Speed Time Time Time Current
Dload Upload Total Spent Left Speed
100 829k 100 829k 0 0 105k 0 0:00:07 0:00:07 --:--:-- 168k
$ tmux list-windows
0: tmux [208x73] [layout b147,208x73,0,0[208x62,0,0,208x10,0,63{104x10,0,63,103x10,105,63}]] (active)
@Goles
Goles / vim.rb
Created April 28, 2012 00:02 — forked from smartinez87/vim.rb
Vim formula for Homebrew
require 'formula'
class Vim < Formula
homepage 'http://www.vim.org/'
url 'ftp://ftp.vim.org/pub/vim/unix/vim-7.3.tar.bz2'
head 'https://vim.googlecode.com/hg/'
sha256 '5c5d5d6e07f1bbc49b6fe3906ff8a7e39b049928b68195b38e3e3d347100221d'
version '7.3.487'
def features; %w(tiny small normal big huge) end