Skip to content

Instantly share code, notes, and snippets.

View oca159's full-sized avatar
🏠
Working from home

Osvaldo Cordova Aburto oca159

🏠
Working from home
View GitHub Profile
@oca159
oca159 / git_rewrite.txt
Created February 6, 2018 22:01
Rewrite the name and email in all the commits
git filter-branch --env-filter '
WRONG_EMAIL="oaaburto@example.com"
NEW_NAME="Osvaldo Cordova"
NEW_EMAIL="oca159@hotmail.es"
if [ "$GIT_COMMITTER_EMAIL" = "$WRONG_EMAIL" ]
then
export GIT_COMMITTER_NAME="$NEW_NAME"
export GIT_COMMITTER_EMAIL="$NEW_EMAIL"
fi
@oca159
oca159 / nginxproxy.md
Created January 8, 2018 15:03 — forked from soheilhy/nginxproxy.md
How to proxy web apps using nginx?

Virtual Hosts on nginx (CSC309)

When hosting our web applications, we often have one public IP address (i.e., an IP address visible to the outside world) using which we want to host multiple web apps. For example, one may wants to host three different web apps respectively for example1.com, example2.com, and example1.com/images on the same machine using a single IP address.

How can we do that? Well, the good news is Internet browsers

@oca159
oca159 / .gitignore
Created September 12, 2017 15:59
Gitignore (python)
# Byte-compiled / optimized / DLL files
__pycache__/
*.py[cod]
*$py.class
# C extensions
*.so
# Distribution / packaging
.Python

Visual Studio Code

Plugins

  • Python
  • Unique Lines
  • Djaneiro -Django Snippets
  • Django Template
  • Sublime Text Keymap
@oca159
oca159 / Preferences.sublime-settings
Created June 16, 2017 17:50
Sublime preferences
{
"bold_folder_labels": true,
"caret_extra_width": 1,
"caret_style": "phase",
"close_windows_when_empty": false,
"color_scheme": "Packages/Predawn/predawn.tmTheme",
"copy_with_empty_selection": false,
"drag_text": false,
"draw_minimap_border": true,
"enable_tab_scrolling": false,
@oca159
oca159 / .gitignore
Created June 16, 2017 16:35
Gitignore for python development on Mac and using Pycharm
# Byte-compiled / optimized / DLL files
__pycache__/
*.py[cod]
*$py.class
# C extensions
*.so
# Distribution / packaging
.Python
@oca159
oca159 / virtualenvwrapper.md
Created June 15, 2017 19:38
Virtualenvwrapper configuration

Add the following line to ~/.virtualenvs/venv/postactivate and ~/.virtualenvs/venv/postdeactivate

source ~/.oh-my-zsh/themes/honukai.zsh-theme

@oca159
oca159 / switch.py
Created June 14, 2015 18:23
Simular switch en python
def f(x):
return {
'a': 1,
'b': 2,
}.get(x, "No se encontró esa opción")
/*
* C++ - Arbol binario de busqueda aplicado en archivos
* Copyright 2013 Martin Cruz Otiniano
* Description : Tiene las funciones de insertar registro en un nodo (escribir), mostrar los registros
* haciendo uso del algoritmo y eliminar archivo ABB.
* Site : www.marcsdev.com
*/
#include <iostream>
#include <stdio.h>
/*
* C++ - Metodo de dispersion (Hashing)
* Copyright 2013 Martin Cruz Otiniano
* Site: www.marcsdev.com
*/
#include <iostream>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>