Toutes les commandes sont à exécuter en root
Docker permet de lancer des applications de façon simplifié, multi-plateforme et multi-version.
apt install curl
#!/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' |
// 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 |
{ | |
"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" |
[ | |
{ | |
"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", |
Toutes les commandes sont à exécuter en root
Docker permet de lancer des applications de façon simplifié, multi-plateforme et multi-version.
apt install curl
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.
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.
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
#!/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 |