Skip to content

Instantly share code, notes, and snippets.

View KitBaroness's full-sized avatar
💭
Sc00t3r mY D@!s3y

KitBaroness KitBaroness

💭
Sc00t3r mY D@!s3y
View GitHub Profile
@KitBaroness
KitBaroness / macOS.qcow2
Last active November 12, 2025 00:58
macOS Simple KVM — Step‑by‑Step Setup (KVM/QEMU + virt‑manager)
This guide uses the files from `macOS-Simple-KVM` to install macOS on KVM/QEMU. It covers both **console** and **virt‑manager (GUI)** paths, plus fixes for common boot issues.
git clone https://github.com/KitBaroness/macOS-Simple-KVM
cd macOS-Simple-KVM
---
## 0) Prerequisites
* A Linux host with KVM support enabled (Intel VT‑x/VT‑d or AMD‑V/AMD‑Vi).
* Packages (names may vary by distro):
@KitBaroness
KitBaroness / win11.qcow2
Last active November 11, 2025 09:27
WINDOWS 11 VIRTUAL MACHINE SETUP (Virt-Manager + VirtIO Drivers)
This document provides a step-by-step guide for installing and configuring Windows 11 in a virtualized environment using virt-manager and KVM (Kernel-based Virtual Machine) on a Linux host such as Kali, Ubuntu, or Fedora.
The goal is to create a fully functional Windows 11 virtual machine that:
Operates as a complete Windows installation with access to Microsoft Store, Windows Subsystem for Linux (WSL), and all standard Windows features.
Uses VirtIO drivers for optimal disk and network performance.
Supports USB passthrough for devices such as game controllers or peripherals.
@KitBaroness
KitBaroness / dropbox.md
Last active March 4, 2025 01:58
# Dropbox Applet Setup on Linux
cd ~ && wget -O - "https://www.dropbox.com/download?plat=lnx.x86_64" | tar xzf -
Next, run the Dropbox daemon from the newly created .dropbox-dist folder.

~/.dropbox-dist/dropboxd
22m

cd ~ && wget -O dropbox.py "https://www.dropbox.com/download?dl=packages/dropbox.py"
chmod +x dropbox.py
mv dropbox.py ~/.local/bin/dropbox
@KitBaroness
KitBaroness / ragging.md
Last active December 9, 2024 09:53
Using Tags in Github

Tagging in GitHub is a way to mark specific points in your repository's history, often to signal a release version or other significant checkpoint. Tags are commonly used for versioning, such as marking a release like v1.0 or v2.1. Tags are similar to branches but are immutable, meaning they represent a snapshot of the repository at a specific point in time and cannot be changed once created.

Types of Tags:

  1. Lightweight Tags: Just a name that points to a specific commit.
  2. Annotated Tags: Contain additional metadata like the tagger's name, date, and a message. This is the recommended type for releases.

Creating Tags

  1. Create a Tag Locally
@KitBaroness
KitBaroness / IPFS.md
Created April 7, 2024 05:14
IPFS w/ NFT.STORAGE
# Detailed Instructions on Setting Up IPFS and Using NFT.Storage on WSL (Windows Subsystem for Linux)

# This guide assumes you're using WSL on a Windows machine. We'll cover installing IPFS, initializing it, and using NFT.Storage for your NFT assets.

## Step 1: Opening WSL
- Press `Windows + R`, type `wsl`, and press Enter to open your Linux distribution terminal.

## Step 2: Installing IPFS on WSL
# It's essential to install IPFS within your Linux distribution in WSL. Follow these detailed steps: