Skip to content

Instantly share code, notes, and snippets.

View soyluismunoz's full-sized avatar
🎯
Focusing

Luis Muñoz soyluismunoz

🎯
Focusing
View GitHub Profile
@hostelix
hostelix / bancos_venezuela.json
Created May 14, 2017 02:35
Json de lista de bancos en venezuela
[
{
"codigo": "0001",
"nombre": "Banco Central de Venezuela",
"rif": "G200001100"
},
{
"codigo": "0102",
"nombre": "Banco de Venezuela S.A.C.A. Banco Universal",
"rif": "G200099976"
@dasdo
dasdo / GIT.md
Last active May 5, 2024 14:23
Lista de Comandos en GIT

Configuración Básica

Configurar Nombre que salen en los commits

	git config --global user.name "dasdo"

Configurar Email

	git config --global user.email dasdo1@gmail.com
@rukku
rukku / httpd.conf
Created August 21, 2012 04:39
XAMPP httpd.conf
#
# ServerRoot: The top of the directory tree under which the server's
# configuration, error, and log files are kept.
#
# Do not add a slash at the end of the directory path. If you point
# ServerRoot at a non-local disk, be sure to point the LockFile directive
# at a local disk. If you wish to share the same ServerRoot for multiple
# httpd daemons, you will need to change at least LockFile and PidFile.