Skip to content

Instantly share code, notes, and snippets.

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

Marco Rodas marcorodas

🏠
Working from home
View GitHub Profile
@powershell -NoProfile -ExecutionPolicy Bypass -Command "@('get.scoop.sh','chocolatey.org/install.ps1')|ForEach-Object{iex((New-Object Net.WebClient).DownloadString('https://'+$_))}"
scoop install busybox git openssh python3
choco install -y procexp notepadplusplus filezilla ccleaner meld jdk8 maven heidisql nodejs.install
@marcorodas
marcorodas / git.samples.sh
Last active February 8, 2023 10:32
Git: Uso de Comandos
git clone --depth=1 https://github.com/marcorodas/ApuntesAndroid.git ApuntesAndroid
# git clone --depth=1 https://marco_rodas@bitbucket.org/johannfjs/siniestro_integrado.git Johann
# clone: Crea una copia local del repositorio central al cual llamará "origin"
# Crea una carpeta .git donde se almacenan todos los commit
# --depth=1: Sólo el último commit
git fetch
# fetch: Importa commits del repositorio remoto al local.
# (http://git-scm.com/docs/git-fetch)
# Si no se especifica ningún repositorio se usará el repositorio remoto "origin"
@marcorodas
marcorodas / jars.sh
Last active December 8, 2015 23:04
Java: Uso de Jar Files
jar -cf jar-file input-files(s) //Create a jar file
jar -tfv jar-file //View contents
jar -xf jar-file archived-file(s) //Extract specific files
jar -uf jar-file input-file(s) //Adding files
zip -d jar-file archived-file //Delete specific file