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
| Create a .zip file from the git structure | |
| ``` | |
| git archive -o whirlpool_blog.zip HEAD |
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
| cd /Library/Preferences/SystemConfiguration | |
| sudo mv ./com.apple.airport.preferences.plist _com.apple.airport.preferences.plist | |
| sudo mv ./com.apple.network.identification.plist _com.apple.network.identification.plist | |
| sudo mv ./com.apple.wifi.message-tracer.plist _com.apple.wifi.message-tracer.plist | |
| sudo mv ./NetworkInterfaces.plist _NetworkInterfaces.plist | |
| sudo mv ./preferences.plist _preferences.plist | |
| sudo shutdown -r now |
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
| nvm install | |
| rm -rf node_modules | |
| npm outdated | |
| npm install -g npm-check-updates | |
| ncu -u | |
| npm update |
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
| #!/bin/sh | |
| ### | |
| # SOME COMMANDS WILL NOT WORK ON macOS (Sierra or newer) | |
| # For Sierra or newer, see https://github.com/mathiasbynens/dotfiles/blob/master/.macos | |
| ### | |
| # Alot of these configs have been taken from the various places | |
| # on the web, most from here | |
| # https://github.com/mathiasbynens/dotfiles/blob/5b3c8418ed42d93af2e647dc9d122f25cc034871/.osx |
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
| # Find all ports | |
| sudo lsof -i -P -n | grep LISTEN | |
| # Find a specific port | |
| sudo lsof -i:52698 | |
| sudo lsof -i:8080 | |
| # Kill the process in a single port | |
| fuser -k 52698/tcp | |
| fuser -k 8080/tcp |
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 getUniqueElementsInTwoArrays = (x, y) => { | |
| return String([...x, ...y].filter(el => !(x.includes(el) && y.includes(el)))); | |
| } |
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
| npx prettier-package-json --write ./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
| rename -f 'y/A-Z/a-z/' * |
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
| find . -type f -name "*" -exec rename "s/\s/_/g" {} \; |
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
| El método que armé para mejorar tu CV se resume en estos puntos: | |
| — Estructurar el contenido y narrativa con un objetivo claro (Hacia el trabajo que quieres) | |
| — Revisar, adaptar y mejorar el CV con el tiempo (retroalimentación de entrevistas, colegas, amigos, etc.) | |
| — Optimizar el contenido para que seas fácil de encontrar (SEO) | |
| 1) ¿Dónde hago mi CV? | |
| Usa una plataforma digital para crear tu CV. Tenerlo en Word/Pages/Photoshop/Figma solo hace que tardes más en actualizarlo, mejorarlo y arreglar errores. El plan es que no te preocupes por el diseño, si no por el contenido. |