Skip to content

Instantly share code, notes, and snippets.

View zrobit's full-sized avatar

zrobit ⚡️ zrobit

View GitHub Profile
@zrobit
zrobit / gist:4726352
Created February 6, 2013 22:09
redis server start en funciton
##after: brew install redis
redis-server /usr/local/etc/redis.conf
{
"auto_complete_commit_on_tab": true,
"color_scheme": "Packages/Color Scheme - Default/Monokai.tmTheme",
"default_line_ending": "unix",
"draw_indent_guides": true,
"ensure_newline_at_eof_on_save": true,
"folder_exclude_patterns":
[
".svn",
".git",
@zrobit
zrobit / gist:5794380
Last active December 18, 2015 13:59
My personal sublime text 2 configuration
{
"color_scheme": "Packages/Color Scheme - Default/Monokai.tmTheme",
"default_line_ending": "unix",
"draw_indent_guides": true,
"font_size": 10,
//hayaku plugin configuration
"hayaku_CSS_colors_case": "lowercase",
"hayaku_CSS_prefixes_disable": true,
"hayaku_CSS_syntax_quote_symbol": "'",
"highlight_modified_tabs": true,
@zrobit
zrobit / gist:6136655
Created August 2, 2013 00:42
Git alias
alias gst='git status'
alias gco='git commit -m'
alias gbr='git branch'
alias gch='git checkout'
alias gdi='git diff'
alias gad='git add'
alias gpull='git pull'
alias gpush='git push'
@zrobit
zrobit / gist:6178961
Created August 7, 2013 21:34
Front end .gitignore
.gitignore
node_modules
build
ack --type-set TYPE=.styl "pattern" path/to/source
@zrobit
zrobit / gist:6785323
Created October 1, 2013 21:23
virtualenvwrapper
export WORKON_HOME=~/.envs
source /usr/local/bin/virtualenvwrapper.sh
@zrobit
zrobit / gist:7773488
Created December 3, 2013 17:26
.gitconfig
[color]
ui = auto
[color "branch"]
current = yellow reverse
local = yellow
remote = green
[color "diff"]
meta = yellow bold
frag = magenta bold
old = red bold
// PONG.cpp : main project file.
#include "stdafx.h"
#include <conio.h>
#include <stdio.h>
#include <math.h>
#include <windows.h>
using namespace System;
void limpia_linea(int x,int y)
// PONG.cpp : main project file.
#include "stdafx.h"
#include <conio.h>
#include <stdio.h>
#include <math.h>
#include <windows.h>
using namespace System;