Skip to content

Instantly share code, notes, and snippets.

View n-ce's full-sized avatar
✴️
Introspecting, Brainstorming, Creating

Animesh n-ce

✴️
Introspecting, Brainstorming, Creating
View GitHub Profile
@n-ce
n-ce / BSNL_2024.md
Last active July 16, 2024 09:55
BSNL 2024 Recharge Plans

BSNL Logo

Note:

  • UPI won't work without SMS.
  • Plan 197, 397, 797 not included.
  • FRC (First Recharge Coupon) plans not included.

|Price (INR)|107|153|199|229|666|699|997|999|1198|1499|1999|2399|2999|

@n-ce
n-ce / getAV1.py
Last active May 28, 2024 05:24
yt-dlp AV1+Opus Downloader Script
import subprocess
from yt_dlp import YoutubeDL
def get_video_formats(url):
with YoutubeDL({}) as ydl:
info_dict = ydl.extract_info(url, download=False)
formats = info_dict.get('formats', [])
print("{:<10} {:<5} {:>10}".format('Itag', 'Quality', 'Filesize'))
@n-ce
n-ce / config.toml
Created April 13, 2024 17:15
Helix Config & LSP
theme = "onedarker"
[editor]
auto-save = true
[editor.gutters]
layout = ["line-numbers", "diff"]
[editor.gutters.line-numbers]
min-width = 0
@n-ce
n-ce / Eruda_with_Vite.md
Last active May 11, 2024 09:52
Using Eruda with Vite (+ TypeScript)