Skip to content

Instantly share code, notes, and snippets.

View jzr-supove's full-sized avatar
👨‍💻
Hacking Pentagon

Jasur Yusupov jzr-supove

👨‍💻
Hacking Pentagon
View GitHub Profile
@cbuckowitz
cbuckowitz / README.md
Last active July 12, 2026 15:07
Change Storage Location for Docker Desktop with WSL2 #DockerDesktop #WSL2

Change the Storage Location for Docker Desktop with WSL2

Docker Desktop stores docker data in 2 distros

  • docker-desktop
  • docker-desktop-data

These distros are installed on the system drive by default.

To move them to another drive, these distros can be exported, deleted and imported from the new location.

@tylermorganwall
tylermorganwall / submarine_cable_map.R
Last active May 18, 2026 00:07
Submarine Cable Map Dataviz
library(geojsonsf)
library(sf)
library(rayrender)
#Data source: https://github.com/telegeography/www.submarinecablemap.com
cables = geojson_sf("cable-geo.json")
cablescene = list()
counter = 1
for(i in 1:length(cables$geometry)) {
@egyleader
egyleader / fast_internet.sh
Last active July 22, 2026 17:49
Limit network bandwidth in linux using wondershaper
#!/bin/bash
sudo wondershaper -c -a wlp2s0
echo speed limit removed
@jzr-supove
jzr-supove / docker_certbot.md
Last active October 30, 2023 12:21
Docker Certbot

Docker Certbot obtain SSL Certificate

Starting Nginx Server

Create nginx.conf file:

server {
  listen 80;
 server_name your_domain.uz;
@jzr-supove
jzr-supove / README.md
Last active February 26, 2025 10:00
Obsidian QuickAdd Modal for Adding Words to Vocabulary

Obsidian QuickAdd Modal for Adding Words to Vocabulary

🟡 Prerequisites

  • You should have QuickAdd and Spaced Repetition plugins installed on your Obsidian
  • In the script, change the flashcardsFolder value to the folder where you store your flashcards (default "Flashcards");
    • Folder should have at least one file where you store your flashcards


🟢 Installation