|
|
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
| youtube-dl -i --extract-audio --audio-format mp3 -o "%(title)s.%(ext)s" <url to playlist> | |
| //replace diamond brackets < > with " " when pasting url |
A collection of resources/tips/guides which have been useful in my career in Software Engineering.
- ZSH framework - https://ohmyz.sh/
- Theme - Bira
- Valid command highlighter - https://github.com/zsh-users/zsh-syntax-highlighting
- Setting PATH - Add
export PATH="$PATH:/add/your/path/hereto.zshenvor.zshrc
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
| /** | |
| * A helper class to configure a http proxy. | |
| * | |
| * Spring autoconfigures this as it implements HttpClientCustomizer for gateway | |
| * outbound requests, but any webclient must manually call this. | |
| */ | |
| @Component | |
| public class LocalProxyConfig implements HttpClientCustomizer { | |
| @Override |

