Skip to content

Instantly share code, notes, and snippets.

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

Juan Gabriel Maioli juanmaioli

🏠
Working from home
View GitHub Profile
@juanmaioli
juanmaioli / quicksetup.md
Last active April 26, 2021 19:05
Github Quick Setup

Github Quick Setup

Create a new repository on the command line

echo "# ainder_cloud" >> README.md

git initgit add README.md

git commit -m "first commit"

git remote add origin https://github.com/fafasociados/new_repo.git

@juanmaioli
juanmaioli / JavaScript Edit Inpu
Last active May 11, 2020 14:15
Edit input and style and href
<style>
.inputSimple{
border: none;
background-color: #fff;
color: #000;
}
.inputLinea{
border: none;
background-color: #fff;
color: #000;

Instalar docker en Debian 10

Remover versiones viejas

$ sudo apt-get remove docker docker-engine docker.io containerd runc

Instalar dependencias

@juanmaioli
juanmaioli / 34 Comandos Utiles en linux, Tips y Hotkeys para la terminal.md
Last active April 27, 2021 15:02
34 Comandos Útiles en linux, Tips y Hotkeys para la terminal

34 Comandos Utiles en linux, Tips y Hotkeys para la terminal

1) Copiar un archivo

Copiar readme.txt a el directorio documents

$ cp readme.txt documents/
@juanmaioli
juanmaioli / AutoHotkey.ahk
Created May 3, 2021 13:30
My AutoHotkey.ahk
#F6::
send {Volume_Down}
return
#F7::
send {Volume_Up}
return
#F8::
send {Volume_Mute}