Skip to content

Instantly share code, notes, and snippets.

View whoamitty's full-sized avatar
💭
I may be slow to respond.

whoamitty

💭
I may be slow to respond.
View GitHub Profile
@jeremy46231
jeremy46231 / download.sh
Created December 15, 2024 07:51
Download all of an artist's music from YouTube Music
#!/bin/bash
FOLDER_NAME='NF'
ALBUM_URLS=(
'https://music.youtube.com/playlist?list=OLAK5uy_milshKgR-N66M5IZsSfZWQ74AyrScobNg'
'https://music.youtube.com/playlist?list=OLAK5uy_nkiW8jxcMFfW-cMj1bIssQ72wMKbZl74w'
'https://music.youtube.com/playlist?list=OLAK5uy_neGGnaIvUpRQKa0ypb1DJ2XNblJqSIVZk'
'https://music.youtube.com/playlist?list=OLAK5uy_n9eUjg75GpIamf81ViLecAo25oO-9uWRA'
'https://music.youtube.com/playlist?list=OLAK5uy_m_Qm4j2Gl2oTXcYQEmXta78YFWgKdyWWM'
'https://music.youtube.com/playlist?list=OLAK5uy_mP8vIAXz5d0gtoDwO11-RxF3X5VoNf2Ok'
@weskerty
weskerty / dla.js
Last active October 11, 2025 17:31
Download Everything, YT-DLP and CURL - DownLoadAll. Need lyfe00011 Levanter Bot
// dla.js is a complement to LevanterBot: https://github.com/lyfe00011/levanter
// Copyright (C) 2025 Weskerty
//
// Este programa se distribuye bajo los términos de la Licencia Pública General Affero de GNU (AGPLv3).
// Usted puede usarlo, modificarlo y redistribuirlo bajo esa licencia.
// Este software se proporciona SIN GARANTÍA alguna.
// Licencia completa: https://www.gnu.org/licenses/agpl-3.0.html
// Nueva Funcion: Elegir Tiempo de Video en Enlace, Tiempo Inicio - Tiempo Final. DLA enlace 02:15-03:20
@adibhanna
adibhanna / settings.json
Created April 18, 2024 17:56
zed settings
{
"theme": "Gruvbox Dark Hard",
"base_keymap": "VSCode",
"buffer_font_family": "BerkeleyMono Nerd Font",
"buffer_font_size": 15,
"vim_mode": true,
"relative_line_numbers": true,
"cursor_blink": false,
"scrollbar": {
"show": "never"
@adibhanna
adibhanna / keymap.json
Created April 18, 2024 17:55
zed keymaps
[
{
"context": "Editor && VimControl && !VimWaiting && !menu",
"bindings": {
"ctrl-w z": "workspace::ToggleZoom",
"ctrl-w t": "terminal_panel::ToggleFocus",
"g ]": "editor::GoToDiagnostic",
"g [": "editor::GoToPrevDiagnostic",
"g r": "editor::FindAllReferences",
"shift-k": "editor::Hover",
@Sensei-CHO
Sensei-CHO / README.md
Created January 23, 2024 15:03
Mise en place d'un système de documentation assisté par IA

Mise en place d'un système de documentation assisté par IA

Toutes les commandes sont à exécuter en root

Installation de docker

Docker permet de lancer des applications de façon simplifié, multi-plateforme et multi-version.

apt install curl
@saharshbhansali
saharshbhansali / ObsidianMarkdownGuide.md
Last active September 30, 2025 06:02
Markdown Formatting Guide for Obsidian. Import this gist as a file into your Obsidian Vault to view it and to test new themes. Certain community plugins are required for a few features.

Markdown Formatting Guide for Obsidian

Learn how to apply basic formatting to your Obsidian notes, using Markdown. Import this as a note into your Obsidian Vault to view it and to test new themes. Certain community plugins are required for a few features.


Basic Formatting Syntax


Paragraphs

To create paragraphs, use a blank line to separate one or more lines of text.

layout title date tags
post
Comparing IPFS and BitTorrent.
2023-08-10
research ipfs bittorrent p2p p2p-networks dht

In this post we're going to compare two of le plus grande P2P file-sharing networks! IPFS and ye olde BitTorrent. This research piece is based on a lot of experience I have with IPFS, namely integrating it into Dappnet.

To begin with, since a lot of people don't actually know how they work, I'm going to cover a little bit about their technical designs, and then we'll go into their practical differences.

@edecoux
edecoux / John Carmack.md
Last active September 2, 2024 12:51
John Carmack.md

John Carmack is an influential computer programmer, video game developer, and engineer, best known for his work on popular first-person shooter games such as Wolfenstein 3D, Doom, and Quake. Born on August 20, 1970, in Shawnee Mission, Kansas, Carmack co-founded id Software in 1991, which became a pioneering company in the video game industry.

Carmack's work at id Software was instrumental in developing and popularizing the first-person shooter genre. He was also an early advocate for open-source software and made significant contributions to the development of real-time 3D graphics. As a result, his programming techniques have had a lasting impact on the video game industry.

In addition to his work in gaming, Carmack is also known for his interest in aerospace and virtual reality. In 2000, he founded [Armadil

@DJRHails
DJRHails / execblock.py
Last active May 14, 2025 04:04
Execute a markdown code block
#!/usr/bin/env python3
from dataclasses import dataclass
from io import StringIO
from pathlib import Path
from rich.console import Console
from rich.panel import Panel
from rich.table import Table
from typing import Optional
import contextlib