This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| @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 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Ignore everything | |
| * | |
| # Don't ignore .gitignore | |
| !.gitignore | |
| # Don't ignore gist | |
| !package.json |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Windows Registry Editor Version 5.00 | |
| [HKEY_CLASSES_ROOT\Directory\shell\cmdprompt] | |
| @="@shell32.dll,-8506" | |
| "Extended"="" | |
| "NoWorkingDirectory"="" | |
| [HKEY_CLASSES_ROOT\Directory\shell\cmdprompt\command] | |
| @="cmd.exe /s /k pushd \"%V\"" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| """ | |
| VectorDrawable2Svg | |
| This script convert your VectorDrawable to a Svg | |
| Author: Alessandro Lucchet | |
| See: https://gitlab.com/Hyperion777/VectorDrawable2Svg/blob/fac86195ba78f27301a70fb612b7c638f066a335/VectorDrawable2Svg.py | |
| Usage: drop one or more vector drawable onto this script to convert them to svg format | |
| """ | |
| from xml.dom.minidom import * | |
| import sys |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| @startuml | |
| ' see: http://plantuml.com/classes.html#More | |
| skinparam LineType ortho | |
| skinparam Shadowing false | |
| skinparam Class { | |
| HeaderBackgroundColor #98BFDA | |
| BackgroundColor White | |
| BorderColor #808080 | |
| ArrowColor #8c8c8c | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Database Navigator - https://plugins.jetbrains.com/plugin/1800-database-navigator | |
| Lombok Plugin - https://plugins.jetbrains.com/plugin/6317-lombok-plugin | |
| PlantUML integration - https://plugins.jetbrains.com/plugin/7017-plantuml-integration | |
| ReST Console - https://plugins.jetbrains.com/plugin/8114-rest-console | |
| TeXiFy IDEA - https://plugins.jetbrains.com/plugin/9473-texify-idea |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| const urlExists = require('url-exists'); | |
| const request = require('requestretry'); | |
| const spawn = require('child_process').spawn; | |
| const mvn = require('maven').create({ | |
| profiles:['development'] | |
| }); | |
| const url = 'http://localhost:8080'; | |
| var cleanRedeploy = function(){ | |
| request({ | |
| url: url, |
OlderNewer