Skip to content

Instantly share code, notes, and snippets.

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

Andrés Duarte M. aduartem

🏠
Working from home
View GitHub Profile
@aduartem
aduartem / jenkins.md
Last active May 21, 2022 19:42
Jenkins

Jenkins

Esta guía está orientada a distribuciones Debian/Ubuntu.

Inslación de Java (JDK)

JDK 8

$ sudo apt-get update
@aduartem
aduartem / Ubuntu 18.04.md
Last active August 23, 2018 20:43
Instalación de programas en Ubuntu 18.04

Ubuntu 18.04

Luego de instalar Ubuntu ejecutar el siguiente comando:

$ sudo apt-get update

Terminator

@aduartem
aduartem / Angular_CLI.md
Last active May 21, 2022 19:43
Angular CLI

Angular CLI

Instalación

npm

$ sudo apt-get install npm
@aduartem
aduartem / MAMP.md
Last active May 21, 2022 19:43
Instalando apache2, php5 y mysql en Mac OS X Sierra

MAMP (Mac OS X, Apache, MySQL, PHP)

Tanto PHP 5.6 como Apache 2 están pre-instalados en Mac OS X Sierra, pero es necesario realizar algunas configuraciones previamente.

Primero que todo abrimos una terminal y cambiamos a usuario root:

$ sudo su -
@joseluisq
joseluisq / README.md
Last active March 7, 2024 05:43
Install PHP 7 Xdebug in Arch Linux

Install PHP 7 Xdebug in Arch Linux

"Normally", these instructions should be also valid (in similar way) for other Linux distros.

1.- Install Xdebug using pacman:

sudo pacman -Sy xdebug
@janzell
janzell / force-drop-table-bypass-foreign-key.sql
Last active August 15, 2021 10:19
Force Drop Mysql Table - Bypassing foreign key constraint
SET foreign_key_checks = 0;
drop table TABLE_NAME
SET foreign_key_checks = 1;
@aduartem
aduartem / Virtualbox.md
Last active May 21, 2022 19:43
Virtualbox

Virtualbox

Compartir carpeta desde sistema anfitrión al sistema huésped

Instalación de Guest Additions

Tutorial

Otra forma de instalarlo es:

@aduartem
aduartem / apuntes_mongodb.md
Last active May 21, 2022 19:38
Apuntes MongoDB

Apuntes MongoDB

Instalación de MongoDB 4 en CentOS 7 / RHEL 7

Cambiamos a usuario root:

$ su -
@aduartem
aduartem / svn.md
Created October 6, 2016 14:39
Subversion por línea de comandos (SVN)

SVN Workflow Básico

  1. Realizar una copia local del repositorio (working copy) (svn checkout svn://svnrepo/ejemplo {destino})
  2. Agregar/Modificar archivos
  3. Revisar el status (svn status)
  4. Revisar si hay diferencia entre los archivos locales y el repositorio remoto (svn diff {archivo})
  5. Agregar los archivos nuevos (svn add {archivo1 archivo2...})
  6. Revisar el status (svn status)
  7. Actualizar copia local (svn update)
  8. Revisar diferencias y corregir conflictos