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 / 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: