Skip to content

Instantly share code, notes, and snippets.

@nandordudas
nandordudas / 00-setup.md
Last active April 13, 2025 16:16
Setup WSL 2 on Windows 11

Windows Development Environment Setup Guide

Warning

This is a work in progress.

TODO: fzf, nvm, delta, exiftool

This guide provides step-by-step instructions for setting up a complete development environment on Windows, including WSL, package managers, and essential tools.

Table of Contents

@Ragdata
Ragdata / docker-WSL2.md
Last active May 5, 2023 04:55
Docker in Windows 11 using WSL2

Setup Docker to run on Windows 11 & Ubuntu WSL2 AND still be able to use Docker Desktop to monitor the lot!!

The goal here is to set up a container cluster using WSL2, Ubuntu Linux, and other Open Source packages. The secondary goal being to be able to use it from both Linux and Windows AND to be able to still use Docker Desktop under either Windows or Linux to manage things.

To do so, we need to setup WSL2, Ubuntu, dockerd and containterd, then build docker-cli for Windows and finally wire them all together so they can talk to each other.

Prerequisites

First you need to set up Windows so that you can use virtualised containers, as well as WSL2. Type the following in a terminal:

# # # # # # #
# ~/.zshrc #
# # # # # # #
# # # # # # # # # # # # # # # # # # # #
# __ _ #
# / / __ _______(_) ______ ____ #
# / / / / / / ___/ / /_/ _ |/___/ #
@TrQ-Hoan
TrQ-Hoan / A Tutorial Setups.md
Created August 11, 2022 08:43
Setup windows 10 tools for RE Forensics
  1. Download Tools
  2. Install winget-cli
  3. Install Visual C++ for Python 2.7
  4. Update drive (using Dirver Easy)
  5. Enable run .ps1 at Powershell Administrators: Set-ExecutionPolicy Unrestricted;
  6. Install IDA
  7. Install tools (using zEssentialTools.ps1)
  8. Edit env change Python 3 path higher than Python 2 path
  9. Setup Python IDA
  10. Setup IDA plugina, capa-rules(rules author: herrcore)
@thiagopilz
thiagopilz / Reparo-completo-do-Windows.bat
Created August 10, 2022 18:58
test, OBS> se você não sabe oq esta fazendo, aconselho a usar apenas o "reparo-simples-do-windows.bat"...
@ECHO OFF
:: NOME : Reparo completo do Windows
:: AUTOR : Thiago Pilz
:: VERSAO : Enterprise Release Slim
::FUNCIONAMENTO
::O objetivo é corrigir erros no Win, reparando o sistema de atualizações do Windows,
::verificando e corrigindo erros de integridade e executando os parâmetros de configuração de imagem do Windows.
::---
@r8vnhill
r8vnhill / README.LINUX.md
Last active March 12, 2023 17:54
Instrucciones de Instalación

Guía de Instalación (Linux)

Voy a dar instrucciones para distribuciones basadas en Debian, si tienen otra no puedo ayudarles mucho uwu

Configurar el entorno

Primero instalaremos algunas herramientas para facilitarnos la pega.

Essentials

@antiops
antiops / tiktok-download.ahk
Created July 31, 2022 10:32
AutoHotKey script to automatically download TikTok videos that are copied to your clipboard
#NoEnv ; Recommended for performance and compatibility with future AutoHotkey releases.
#Persistent
; Requires yt-dlp
; You might need to change the '$HOME' and '$USERNAME' if they dont work
; $HOME = 'C:\Users\YourUsername'; $USERNAME is your windows username
ClipChanged(Type) {
If InStr(Clipboard, "https://www.tiktok.com/@")
Or InStr(Clipboard, "https://tiktok.com/@") {
@austinyen56
austinyen56 / ytdownload.py
Last active March 18, 2023 17:06
Music Downloader
# [YouTube Downloader]
# Made by @austinyen56
# Allows you to download music from most streaming services (YT, SoundCloud... etc) in multiple formats(mp3, wav, flac)
# Supports thumbnail embedding for mp3 option only
# - Requires yt-dlp to be installed (python -m pip install -U yt-dlp)
# - Must download and add ffmpeg.exe in 'C:\Users\<Name>\AppData\Local\Programs\Python\Python3<ver>\Scripts' in addition with the ffmpeg library
import os
@diogow3
diogow3 / windows-post-install.bat
Last active October 30, 2024 18:01
Post Install for Windows 10/11
:: install as admin
:: winget upgrade --all
:: firefox, chrome
curl -L https://ninite.com/chrome-firefox/ninite.exe -o %USERPROFILE%\ninite.exe
%USERPROFILE%\ninite.exe
del %USERPROFILE%\ninite.exe
:: dotnetfx35
curl -L https://download.microsoft.com/download/2/0/E/20E90413-712F-438C-988E-FDAA79A8AC3D/dotnetfx35.exe -o %USERPROFILE%\dotnetfx35.exe
@lacafjh
lacafjh / config.txt
Created July 12, 2022 06:09
YT-DLP configuration
# Do not read configuration files. When given in the global configuration file /etc/youtube-dl.conf:
# Do not read the user configuration in ~/.config/youtube-dl/config (%APPDATA%/youtube-dl/config.txt on Windows)
# --ignore-config
#=========================================General Options==============================================
# Continue on download errors, for example to skip unavailable videos in a playlist
--ignore-errors