Skip to content

Instantly share code, notes, and snippets.

View r8vnhill's full-sized avatar
馃幆
Focusing

Ignacio Slater r8vnhill

馃幆
Focusing
View GitHub Profile
@r8vnhill
r8vnhill / README.LINUX.md
Last active March 12, 2023 17:54
Instrucciones de Instalaci贸n

Gu铆a de Instalaci贸n (Linux)

Voy a dar instrucciones para distribuciones basadas en Debian, si tienen otra no puedo ayudarles mucho uwu

Configurar el entorno

Primero instalaremos algunas herramientas para facilitarnos la pega.

Essentials

@r8vnhill
r8vnhill / Header.java
Last active September 8, 2022 20:31
Creative Commons 4.0 BY Attribution License
/*
* "${PROJECT_NAME}" (c) by ${AUTHOR}.
* "${PROJECT_NAME}" is licensed under a
* Creative Commons Attribution 4.0 International License.
* You should have received a copy of the license along with this
* work. If not, see <https://creativecommons.org/licenses/by/4.0/>.
*/
@r8vnhill
r8vnhill / Bash-like Autocompletion for Powershell.md
Last active June 13, 2022 21:09
Better autocompletion for PowerShell (based on Bash autocomplete functionality)

To use, add the code from bash-like_autocomplete.ps1 to your PowerShell profile, then reset the console or execute the profile with . $PROFILE

If you're lazy you can run (I'm not making responsible if this fails[^1]):

$Url = 'https://gist.githubusercontent.com/r8vnhill/8bf0562924e7b0f132024bcfa8d06b24/raw/7c150f5ccb42e1f4532c029cf8731a0e4285a48f/bash-like_autocomplete.ps1'
Add-Content -Value "`n" -Path $PROFILE -Verbose
(Invoke-WebRequest -Uri $Url -Verbose).Content | Add-Content -Path $PROFILE -Verbose
. $PROFILE