Skip to content

Instantly share code, notes, and snippets.

View mannprerak2's full-sized avatar

Prerak Mann mannprerak2

View GitHub Profile
@mannprerak2
mannprerak2 / LocalProxyConfig.java
Last active November 5, 2023 10:30
Configure java netty HttpClient to use a proxy server in spring boot
/**
* 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
@mannprerak2
mannprerak2 / dev.md
Last active March 8, 2023 06:35
A collection of resources/tips/guides which have been useful in my career in Software Engineering.
@mannprerak2
mannprerak2 / GSoC_2020_Dart_Prerak_Mann.md
Last active March 10, 2021 12:55
Google summer of code 2020 - Dart (google) - Prerak Mann
@mannprerak2
mannprerak2 / youtube-dl.txt
Created September 2, 2018 12:13
Using Youtube-dl to download a playlist and converting it to mp3
youtube-dl -i --extract-audio --audio-format mp3 -o "%(title)s.%(ext)s" <url to playlist>
//replace diamond brackets < > with " " when pasting url