Skip to content

Instantly share code, notes, and snippets.

View aniketjs's full-sized avatar
🦔

Aniket Chanda aniketjs

🦔
View GitHub Profile
@aniketjs
aniketjs / yt-dlp.md
Last active March 31, 2023 18:41
yt-dlp commands

yt-dlp commands

Best mp3

yt-dlp -f 'ba' -x --audio-format mp3 --embed-thumbnail --embed-subs --embed-metadata *enter-video-link* -o '%(title)s.mp3'

Best video + Best audio

yt-dlp -f 'bv*+ba' --embed-thumbnail --embed-subs --embed-metadata *enter-video-link*
@aniketjs
aniketjs / fix_kdeconnect.md
Last active December 4, 2022 22:00
Fix kdeconnect

Fix kdeconnect not working on a fresh EOS install

sudo firewall-cmd --zone=public --permanent --add-port=1714-1764/tcp
sudo firewall-cmd --zone=public --permanent --add-port=1714-1764/udp
sudo systemctl restart firewalld.service
@aniketjs
aniketjs / CSS_Reset.md
Last active December 4, 2022 21:55
Minimal CSS reset

Minimal CSS Reset

*, *::after, *::before{
	box-sizing: border-box;
}
*::selection {
	background: var(--od-blue);
	color: var(--od-6);
	border-radius: 1em;
@aniketjs
aniketjs / OneDark_ColorScheme.md
Last active December 4, 2022 22:04
One Dark color scheme for web design

OneDark UI color scheme for web design

:root{
	/*One-Dark Color Scheme*/
	--od-1: #586071;
	--od-2: #4B5261;
	--od-3: #404653;
	--od-4: #373C47;
	--od-5: #2F333D;
@aniketjs
aniketjs / OneDark_Betterdiscord.md
Last active December 4, 2022 22:03
One Dark Color Scheme - Betterdiscord Material Theme

OneDark for Betterdiscord Material Theme

/* https://github.com/CapnKitten/Material-Discord */
:root {
	--od-1: #586071;
	--od-2: #4B5261;
	--od-3: #404653;
	--od-4: #373C47;
	--od-5: #2F333D;