From 0290b29395bfb4d7914eb1880760841494edf064 Mon Sep 17 00:00:00 2001 From: JL Kruger Date: Thu, 2 Apr 2026 14:14:21 +0200 Subject: [PATCH] =?UTF-8?q?Add=20ToolsnToys=20section=20=E2=80=94=20hub,?= =?UTF-8?q?=20tools,=20guides,=20FOSS=20catalog,=206=20guide=20pages?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Hub (toolsntoys.html), JL's early tools (jl-early-tools.html), guides hub (guides.html), FOSS Arsenal catalog (foss-tools.html), and 6 individual guide pages covering AppImage, Linux install/uninstall, Docker, and Facebook streaming. All pages use the night-sky adaptation of the adventurers_toolbox3 aesthetic with dimmed ember alpha (0.38/0.65). Co-Authored-By: Claude Sonnet 4.6 --- .../Guides/appimage-installation-guide.html | 671 +++++++ .../Guides/appimage-quick-reference.html | 283 +++ ToolsnToys/Guides/docker-cheatsheet.html | 218 +++ ToolsnToys/Guides/facebook-streaming.html | 212 +++ .../Guides/linux-installation-methods.html | 274 +++ ToolsnToys/Guides/linux-uninstallation.html | 243 +++ ToolsnToys/foss-tools.html | 1548 +++++++++++++++++ ToolsnToys/guides.html | 822 +++++++++ ToolsnToys/jl-early-tools.html | 487 ++++++ ToolsnToys/toolsntoys.html | 828 +++++++++ 10 files changed, 5586 insertions(+) create mode 100644 ToolsnToys/Guides/appimage-installation-guide.html create mode 100644 ToolsnToys/Guides/appimage-quick-reference.html create mode 100644 ToolsnToys/Guides/docker-cheatsheet.html create mode 100644 ToolsnToys/Guides/facebook-streaming.html create mode 100644 ToolsnToys/Guides/linux-installation-methods.html create mode 100644 ToolsnToys/Guides/linux-uninstallation.html create mode 100644 ToolsnToys/foss-tools.html create mode 100644 ToolsnToys/guides.html create mode 100644 ToolsnToys/jl-early-tools.html create mode 100644 ToolsnToys/toolsntoys.html diff --git a/ToolsnToys/Guides/appimage-installation-guide.html b/ToolsnToys/Guides/appimage-installation-guide.html new file mode 100644 index 0000000..935931c --- /dev/null +++ b/ToolsnToys/Guides/appimage-installation-guide.html @@ -0,0 +1,671 @@ + + + + + +APPIMAGE INSTALLATION // TOOLS N TOYS + + + + + +
+
+ + + + +
+ + + +
+
+
▶ FIELD MANUAL // TOOLS N TOYS
+

COMPLETE APPIMAGE
INSTALLATION GUIDE

+
Universal Methods for Any AppImage Application
+
+ +
+

What is AppImage?

+

AppImage is a portable application format for Linux. Think of it like a Windows .exe - it's a single file that contains everything the application needs to run.

+
+
Key Features
+
    +
  • No installation required - just download and run
  • +
  • No root/sudo needed - runs as regular user
  • +
  • Self-contained - includes all dependencies
  • +
  • Portable - works across different Linux distributions
  • +
  • No system pollution - doesn't scatter files everywhere
  • +
  • Easy to remove - just delete the file
  • +
+
+
+ +
+

Method 1: Quick & Dirty (Just Run It)

+

The simplest way - no integration with system menus.

+ +

Step 1: Download AppImage

+
+
BASH
+
# Example: Download to Downloads folder
+cd ~/Downloads
+wget https://example.com/app-name.AppImage
+
+# Or use your browser to download
+
+ +

Step 2: Make Executable

+
+
BASH
+
chmod +x ~/Downloads/app-name.AppImage
+
+ +

Step 3: Run It

+
+
BASH
+
./app-name.AppImage
+
+ +
+
Pros & Cons
+

Pros: Immediate, no system changes, easy to test.

+

Cons: Not in application menu, must run from terminal/file manager, no desktop integration.

+
+
+ +
+

Method 2: Proper Installation (Recommended)

+

Integrate AppImage into your system like a native application.

+ +
    +
  1. 1Create AppImages Directory: mkdir -p ~/Applications
  2. +
  3. 2Move AppImage to Applications: mv ~/Downloads/app-name.AppImage ~/Applications/
  4. +
  5. 3Make Executable: chmod +x ~/Applications/app-name.AppImage
  6. +
  7. 4Create Desktop Entry Manual Method (universal): nano ~/.local/share/applications/app-name.desktop
  8. +
+ +

Desktop Entry Template

+
+
INI
+
[Desktop Entry]
+Type=Application
+Name=Application Name
+Comment=Brief description of the app
+Icon=/home/jl-kruger/Applications/app-name-icon.png
+Exec=/home/jl-kruger/Applications/app-name.AppImage
+Terminal=false
+Categories=Utility;
+
+ +
+
BASH
+
chmod +x ~/.local/share/applications/app-name.desktop
+update-desktop-database ~/.local/share/applications/
+
+ +

Step 4: Extract Icon (Optional)

+
+
BASH
+
cd ~/Applications
+./app-name.AppImage --appimage-extract
+cp squashfs-root/path/to/icon.png ~/Applications/app-name-icon.png
+rm -rf squashfs-root
+
+
+ +
+

Method 3: AppImageLauncher (Automated Integration)

+

AppImageLauncher automatically integrates AppImages when you first run them.

+ +
+
BASH — Ubuntu/Mint/Debian
+
cd ~/Downloads
+wget https://github.com/TheAssassin/AppImageLauncher/releases/download/v2.2.0/appimagelauncher_2.2.0-travis995.0f91801.bionic_amd64.deb
+sudo apt install ./appimagelauncher_*.deb
+
+ +
+
Benefits
+

Fully automated process, consistent management, built-in update checking, and easy removal.

+
+
+ +
+

Complete Desktop Entry Reference

+

Full-Featured Entry

+
+
INI
+
[Desktop Entry]
+Type=Application
+Name=Application Name
+Exec=/home/jl-kruger/Applications/app-name.AppImage %u
+Comment=What this application does
+Icon=/home/jl-kruger/Applications/app-icon.png
+Terminal=false
+Categories=Utility;Development;
+GenericName=Generic description
+Keywords=search;terms;keywords;
+StartupNotify=true
+MimeType=text/plain;text/html;
+
+
+ +
+

Updating AppImages

+

AppImages don't auto-update. Manual update process:

+
+
BASH
+
mv ~/Applications/app-name.AppImage ~/Applications/app-name.AppImage.old
+mv ~/Downloads/app-name-new-version.AppImage ~/Applications/app-name.AppImage
+chmod +x ~/Applications/app-name.AppImage
+rm ~/Applications/app-name.AppImage.old
+
+
+ +
+

Removing AppImages

+
+
BASH
+
rm ~/Applications/app-name.AppImage
+rm ~/.local/share/applications/app-name.desktop
+update-desktop-database ~/.local/share/applications/
+rm -rf ~/.config/app-name
+
+
+ +
+

Troubleshooting

+
+
FUSE Errors
+

Install FUSE: sudo apt install fuse libfuse2

+
+
+
Permissions
+ chmod +x app-name.AppImage +
+
+ +
+

Format Comparison

+
+ + + + + + + + + + +
FeatureAppImageFlatpakSnap.deb
No root needed
Single file
Auto-updates
Startup speedFastSlowSlowFast
+
+
+ +
+

Best Practices

+

Directory Structure

+
+
~/Applications/
+  ├── logseq.AppImage
+  ├── logseq-icon.png
+~/.local/share/applications/
+  ├── logseq.desktop
+
+
+ +
+

Finding AppImages

+
    +
  • Project's GitHub Releases Page
  • +
  • Official Project Website
  • +
  • AppImageHub (archived)
  • +
+
+ +
+

Quick Reference Commands

+
+
ESSENTIAL COMMANDS
+
+
+
chmod +x app-name.AppImage
+./app-name.AppImage
+./app-name.AppImage --appimage-extract
+update-desktop-database ~/.local/share/applications/
+
+
+
+
+ +
+

Real-World Example: Installing Logseq

+
    +
  1. 1Download AppImage from GitHub.
  2. +
  3. 2Move to ~/Applications/ and chmod +x.
  4. +
  5. 3Extract icon and create .desktop entry.
  6. +
  7. 4Launch via gtk-launch logseq.
  8. +
+
+ +
+

Additional Resources

+ +
+ +
+
+ + + + \ No newline at end of file diff --git a/ToolsnToys/Guides/appimage-quick-reference.html b/ToolsnToys/Guides/appimage-quick-reference.html new file mode 100644 index 0000000..7f82870 --- /dev/null +++ b/ToolsnToys/Guides/appimage-quick-reference.html @@ -0,0 +1,283 @@ + + + + + +APPIMAGE QUICK REFERENCE // TOOLS N TOYS + + + + +
+
+ + +
+ +
+
+
▶ FIELD MANUAL // TOOLS N TOYS
+

APPIMAGE QUICK REFERENCE

+
Essential Commands and Templates
+
+ +
+

Basic Operations

+
+
BASH
+
chmod +x app-name.AppImage
+./app-name.AppImage
+
+
+ +
+

Proper Installation

+

Manual Method

+
+
BASH
+
mkdir -p ~/Applications
+mv ~/Downloads/app-name.AppImage ~/Applications/
+chmod +x ~/Applications/app-name.AppImage
+nano ~/.local/share/applications/app-name.desktop
+
+
+ +
+

Extract Icon from AppImage

+
+
BASH
+
./app-name.AppImage --appimage-extract
+find squashfs-root -name "*.png" | grep -i icon
+cp squashfs-root/path/to/icon.png ~/Applications/app-icon.png
+rm -rf squashfs-root
+
+
+ +
+

Update AppImage

+
+
BASH
+
mv ~/Applications/app-name.AppImage ~/Applications/app-name.AppImage.old
+mv ~/Downloads/app-name-new.AppImage ~/Applications/app-name.AppImage
+chmod +x ~/Applications/app-name.AppImage
+rm ~/Applications/app-name.AppImage.old
+
+
+ +
+

Remove AppImage

+
+
BASH
+
rm ~/Applications/app-name.AppImage
+rm ~/Applications/app-icon.png
+rm ~/.local/share/applications/app-name.desktop
+update-desktop-database ~/.local/share/applications/
+
+
+ +
+

Troubleshooting

+
+
FUSE Error
+ sudo apt install fuse libfuse2 +
+
+
Validation
+ desktop-file-validate ~/.local/share/applications/app-name.desktop +
+
+ +
+

Desktop Entry Template

+
+
INI
+
[Desktop Entry]
+Type=Application
+Name=App Name
+Exec=/home/jl-kruger/Applications/app-name.AppImage
+Icon=/home/jl-kruger/Applications/app-icon.png
+Terminal=false
+Categories=Utility;
+
+
+ +
+

Common AppImage Commands

+
+
UTILITIES
+
+
+
./app-name.AppImage --appimage-help
+./app-name.AppImage --appimage-version
+./app-name.AppImage --appimage-extract
+gtk-launch app-name
+
+
+
+
+ +
+

Categories Reference

+
    +
  • AudioVideo, Development, Education, Game, Graphics
  • +
  • Network, Office, Science, Settings, System, Utility
  • +
+
+ +
+

Find Installed AppImages

+
+
ls -lh ~/Applications/*.AppImage
+ls ~/.local/share/applications/*.desktop
+
+
+ +
+

Pro Tips

+
+
Aliases
+ alias myapp='~/Applications/app-name.AppImage' +
+
+ +
+

Security Check

+
+
sha256sum app-name.AppImage
+file app-name.AppImage
+
+
+ +
+
+ + + \ No newline at end of file diff --git a/ToolsnToys/Guides/docker-cheatsheet.html b/ToolsnToys/Guides/docker-cheatsheet.html new file mode 100644 index 0000000..3966a5e --- /dev/null +++ b/ToolsnToys/Guides/docker-cheatsheet.html @@ -0,0 +1,218 @@ + + + + + +DOCKER CHEATSHEET // TOOLS N TOYS + + + + +
+
+ + +
+ +
+
+
▶ FIELD MANUAL // TOOLS N TOYS
+

DOCKER CHEATSHEET

+
Comprehensive Command Reference
+
+ +
+

Docker Compose

+
+
BASH
+
docker compose up -d    # Start services in background
+docker compose down     # Stop and remove containers
+docker compose ps       # List status
+docker compose logs -f  # Follow logs
+docker compose pull     # Download latest images
+
+
+ +
+

Container Management

+
+
BASH
+
docker ps -a            # List all containers
+docker stop name        # Stop container
+docker rm name          # Remove container
+docker exec -it name bash # Shell into container
+
+
+ +
+

Image Management

+
+
BASH
+
docker images           # List images
+docker rmi image_id     # Remove image
+docker build -t name .  # Build from Dockerfile
+docker pull name:tag    # Pull specific version
+
+
+ +
+

Volumes

+
+
docker volume ls        # List volumes
+docker volume rm name   # Remove volume
+docker volume prune     # Delete unused volumes
+
+
+ +
+

Networks

+
+
docker network ls       # List networks
+docker network inspect name
+docker network create name
+
+
+ +
+

System Cleanup

+
+
Pruning is permanent
+

Use these to reclaim disk space from unused resources.

+
+
+
BASH
+
docker system prune     # Clean everything unused
+docker system prune -a  # Including unused images
+docker system df        # Show disk usage
+
+
+ +
+

Troubleshooting

+
    +
  • Permission Denied: sudo usermod -aG docker $USER
  • +
  • Port Conflict: sudo lsof -i :PORT
  • +
  • Daemon Restart: sudo systemctl restart docker
  • +
+
+ +
+
+ + + \ No newline at end of file diff --git a/ToolsnToys/Guides/facebook-streaming.html b/ToolsnToys/Guides/facebook-streaming.html new file mode 100644 index 0000000..dd68fb8 --- /dev/null +++ b/ToolsnToys/Guides/facebook-streaming.html @@ -0,0 +1,212 @@ + + + + + +FACEBOOK STREAMING SETUP // TOOLS N TOYS + + + + +
+
+ + +
+ +
+
+
▶ FIELD MANUAL // TOOLS N TOYS
+

FACEBOOK STREAMING

+
Multi-Camera Livestreaming with OBS on Mac M2
+
+ +
+

Hardware compatibility

+
+
iPad A1474 (2013)
+

iOS 12.5.7 limit. Most modern mic apps incompatible. Use Galaxy A25 for audio.

+
+

MacBook M2 supports 2-3 cameras simultaneously due to USB bandwidth constraints.

+
+ +
+

Facebook specs

+
    +
  • 720p maximum resolution.
  • +
  • 4,000 Kbps max video bitrate.
  • +
  • RTMPS protocol required.
  • +
+
+ +
+

1. Page setup

+

Access Meta Business Suite → Live Video → Select "Streaming Software". Enable persistent stream key.

+
+ +
+

2. Essential software

+
    +
  1. OBS Studio (Silicon native)
  2. +
  3. BlackHole audio driver
  4. +
  5. DroidCam OBS plugin
  6. +
+
+ +
+

3. Camera config

+

Galaxy A25: DroidCam (USB mode recommended for low latency).

+

iPad A1474: "Camera for OBS Studio" (verified iOS 12 compatible).

+
+ +
+

4. Wireless mic

+

Use SonoBus on Galaxy A25. Route output through BlackHole to OBS.

+
+ +
+

5. OBS Studio

+
+
Service: Facebook Live
+Encoder: Apple VT H264 (Hardware)
+Bitrate: 4000 Kbps
+Resolution: 1280x720
+
+
+ +
+

6. Audio routing

+

Create a Multi-Output Device in Audio MIDI Setup. Add "BlackHole 2ch" and "Built-in Output".

+
+ +
+

7. Optimization

+
    +
  • Use hardware acceleration.
  • +
  • Avoid USB hubs for cameras.
  • +
  • Monitor CPU usage (keep < 70%).
  • +
+
+ +
+
+ + + \ No newline at end of file diff --git a/ToolsnToys/Guides/linux-installation-methods.html b/ToolsnToys/Guides/linux-installation-methods.html new file mode 100644 index 0000000..b95562e --- /dev/null +++ b/ToolsnToys/Guides/linux-installation-methods.html @@ -0,0 +1,274 @@ + + + + + +LINUX INSTALLATION METHODS // TOOLS N TOYS + + + + +
+
+ + +
+ +
+
+
▶ FIELD MANUAL // TOOLS N TOYS
+

LINUX INSTALLATION METHODS

+
Comprehensive Guide to Software Management
+
+ +
+

Landscape

+
+ + + + + + + + + + +
MethodRootAuto-UpdatesSandboxedSpeed
APT⚡ Fast
Flatpak🐌 Slower
Snap🐌 Slowest
AppImage⚠️ Manual⚡ Fast
+
+
+ +
+

1. APT/DPKG (Native Packages)

+

The standard for Debian/Ubuntu-based systems.

+
+
BASH
+
sudo apt update
+sudo apt install package-name
+sudo apt purge package-name
+sudo apt autoremove
+
+
+ +
+

2. Flatpak

+

Universal package manager with sandboxing.

+
+
BASH
+
flatpak install flathub org.example.App
+flatpak run org.example.App
+flatpak update
+flatpak uninstall --delete-data org.example.App
+
+
+ +
+

3. Snap

+

Ubuntu's universal manager. (Note: Mint removes this by default).

+
+
BASH
+
sudo snap install app-name
+sudo snap refresh
+sudo snap remove --purge app-name
+
+
+ +
+

4. AppImage

+

Portable, single-file applications.

+
+
BASH
+
chmod +x app-name.AppImage
+./app-name.AppImage
+
+
+ +
+

5. Tarball Archives

+

Compressed archives for manual extraction.

+
+
tar -xzf app-name.tar.gz
+sudo mv app-name/ /opt/
+
+
+ +
+

6. Source Compilation

+

Building from source for maximum control.

+
+
./configure --prefix=/usr/local
+make -j$(nproc)
+sudo make install
+
+
+ +
+

7. Scripts

+

Third-party installation scripts (use with caution).

+
+
curl -fsSL https://get.docker.com -o get-docker.sh
+sudo sh get-docker.sh
+
+
+ +
+

Choosing the Right Method

+
    +
  1. APT - Stability & Integration
  2. +
  3. Flatpak - Latest versions & Security
  4. +
  5. AppImage - Portability
  6. +
+
+ +
+

Maintenance Best Practices

+
+
BASH
+
sudo apt update && sudo apt upgrade -y
+flatpak update -y
+sudo apt autoremove --purge
+
+
+ +
+

Troubleshooting

+
    +
  • Locked Manager: sudo rm /var/lib/dpkg/lock
  • +
  • Broken Deps: sudo apt --fix-broken install
  • +
  • Missing Libs: ldd executable
  • +
+
+ +
+
+ + + \ No newline at end of file diff --git a/ToolsnToys/Guides/linux-uninstallation.html b/ToolsnToys/Guides/linux-uninstallation.html new file mode 100644 index 0000000..ef4a5de --- /dev/null +++ b/ToolsnToys/Guides/linux-uninstallation.html @@ -0,0 +1,243 @@ + + + + + +LINUX UNINSTALLATION // TOOLS N TOYS + + + + +
+
+ + +
+ +
+
+
▶ FIELD MANUAL // TOOLS N TOYS
+

LINUX UNINSTALLATION

+
Comprehensive Guide to System Cleanup
+
+ +
+

Quick Reference

+
+ + + + + + + + + + +
MethodIdentifyCommand
APTdpkg -lsudo apt purge
Flatpakflatpak listflatpak uninstall
Snapsnap listsudo snap remove
AppImageFile locationDelete file
+
+
+ +
+

1. APT/DPKG Packages

+
+
BASH
+
sudo apt remove package-name
+sudo apt purge package-name
+sudo apt autoremove --purge
+
+
+ +
+

2. Flatpak Applications

+
+
BASH
+
flatpak uninstall org.example.App
+flatpak uninstall --delete-data org.example.App
+flatpak uninstall --unused
+
+
+ +
+

3. Snap Packages

+
+
BASH
+
sudo snap remove package-name
+sudo snap remove --purge package-name
+
+
+ +
+

4. AppImages

+
    +
  1. Delete the AppImage file.
  2. +
  3. Remove ~/.local/share/applications/name.desktop.
  4. +
  5. Clean ~/.config/app-name/.
  6. +
+
+ +
+

5. Tarball Extracts

+
+
sudo rm -rf /opt/package-name/
+rm -rf ~/.local/package-name/
+sudo rm /usr/local/bin/package-name
+
+
+ +
+

6. Source Builds

+
+
cd path/to/source/
+sudo make uninstall
+
+

If no uninstaller exists, use checkinstall for future tracking.

+
+ +
+

7. Scripts

+

Identify install location from the script source, then manually remove binaries and data.

+
+ +
+

System Cleanup

+
+
BASH
+
sudo apt clean
+sudo journalctl --vacuum-time=7d
+rm -rf ~/.cache/thumbnails/*
+
+
+ +
+

Nuclear Options

+

Only use if the system is severely corrupted. Reset package manager locks:

+
+
sudo rm /var/lib/dpkg/lock
+sudo dpkg --configure -a
+
+
+ +
+
+ + + \ No newline at end of file diff --git a/ToolsnToys/foss-tools.html b/ToolsnToys/foss-tools.html new file mode 100644 index 0000000..041bdfc --- /dev/null +++ b/ToolsnToys/foss-tools.html @@ -0,0 +1,1548 @@ + + + + + +FOSS ARSENAL // FIELD UNIT SP-07 + + + + + + + + +
+
+ + +
+ ← TOOLS N TOYS + +
+
+
▶ FIELD UNIT SP-07 // DIRECTORY
+

FOSS ARSENAL

+
FREE AND OPEN WEAPONS FOR BUILDERS
+
+
+
● DATA_LOADED
+
SOURCE: FOSS-TOOLS.MD
+
+
+ +
+
+
TOOLS
+
92
+
INDEXED
+
+
+
+
CATEGORIES
+
8
+
GROUPS
+
+
+
+
OPEN SOURCE
+
100%
+
VERIFIED
+
+
+
+
FREE
+
MOST
+
ACCESS
+
+
+
+ +
+ + +
+ +
+
+
+
+ CREATIVE +
GIMP
+
+

Powerful raster graphics editor for photo retouching, image composition, and authoring. Cross-platform Photoshop alternative with layers, filters, and customizable brushes.

+
+
+ VISIT ↗ +
+
+
+
+
+
+ CREATIVE +
Krita
+
+

Professional digital painting application designed by artists. Features brush stabilizers, advanced layer management, and animation tools for concept art and illustrations.

+
+
+ VISIT ↗ +
+
+
+
+
+
+ CREATIVE +
Inkscape
+
+

Professional vector graphics software for SVG files. Create logos, illustrations, diagrams with bezier tools, text manipulation, and precision object control.

+
+
+ VISIT ↗ +
+
+
+
+
+
+ CREATIVE +
darktable
+
+

Photography workflow application and RAW developer. Manage digital negatives in a database with non-destructive editing tools.

+
+
+ VISIT ↗ +
+
+
+
+
+
+ CREATIVE +
Blender
+
+

Complete 3D creation suite for modeling, rigging, animation, simulation, rendering, compositing, and motion tracking. Used by studios worldwide.

+
+
+ VISIT ↗ +
+
+
+
+
+
+ CREATIVE +
FreeCAD
+
+

Parametric 3D CAD modeler for real-life object design. Modular architecture for mechanical engineering, architecture, and product design.

+
+
+ VISIT ↗ +
+
+
+
+
+
+ CREATIVE +
draw.io
+
+

Free diagram software for flowcharts, process diagrams, org charts, UML, and network diagrams. Works offline with cloud storage integration.

+
+
+ VISIT ↗ +
+
+
+
+
+
+ MEDIA +
Shutter Encoder
+
+

Professional video/audio converter with extensive codec support, batch processing, custom encoding settings, and advanced filters.

+
+
+ VISIT ↗ +
+
+
+
+
+
+ MEDIA +
FFmpeg
+
+

Essential command-line multimedia framework for recording, converting, and streaming. Industry-standard codec library for batch processing.

+
+
+ VISIT ↗ +
+
+
+
+
+
+ MEDIA +
HandBrake
+
+

User-friendly video transcoder with device presets. Converts video from nearly any format with quality and size optimization.

+
+
+ VISIT ↗ +
+
+
+
+
+
+ MEDIA +
Kdenlive
+
+

Powerful multi-track video editor with effects, transitions, and color correction. Supports proxy editing for smooth high-res playback.

+
+
+ VISIT ↗ +
+
+
+
+
+
+ MEDIA +
Shotcut
+
+

Cross-platform video editor with native timeline, wide format support, and 4K handling. Includes color grading and audio filters.

+
+
+ VISIT ↗ +
+
+
+
+
+
+ MEDIA +
OBS Studio
+
+

Industry-standard software for video recording and live streaming. Real-time capture with scene composition and mixing. Powers countless streams.

+
+
+ VISIT ↗ +
+
+
+
+
+
+ MEDIA +
ClipGrab
+
+

Simple downloader and converter for YouTube, Vimeo, and other video sites. Various formats and quality options for offline viewing.

+
+
+ VISIT ↗ +
+
+
+
+
+
+ MEDIA +
Kodi
+
+

Award-winning media center organizing video, music, and photos. Extensible through add-ons, perfect for home theater PCs.

+
+
+ VISIT ↗ +
+
+
+
+
+
+ MEDIA +
mpv
+
+

Minimalist keyboard-driven media player with high-quality output. Supports virtually all formats, hardware decoding, and scripting.

+
+
+ VISIT ↗ +
+
+
+
+
+
+ MEDIA +
Jellyfin
+
+

Free media server for hosting and streaming personal collections. No premium licenses or tracking - completely free Plex alternative.

+
+
+ VISIT ↗ +
+
+
+
+
+
+ MEDIA +
FreeTube
+
+

Private desktop YouTube client. Watch videos without ads or tracking, subscribe locally, export subscriptions. No Google account needed.

+
+
+ VISIT ↗ +
+
+
+
+
+
+ MEDIA +
Tenacity
+
+

Modern Audacity fork focused on features and community. Multi-track audio editor with effects, analysis tools, and plugin support.

+
+
+ VISIT ↗ +
+
+
+
+
+
+ MEDIA +
Audacity
+
+

Legendary multi-track audio editor and recorder. Used by millions for podcasting, music production, and restoration.

+
+
+ VISIT ↗ +
+
+
+
+
+
+ MEDIA +
LMMS
+
+

Complete digital audio workstation for music production. Includes synthesizers, samples, effects, and MIDI support.

+
+
+ VISIT ↗ +
+
+
+
+
+
+ MEDIA +
Mixxx
+
+

Professional DJ software with 4 decks, powerful mixing engine, effects, and hardware controller support for live performances.

+
+
+ VISIT ↗ +
+
+
+
+
+
+ MEDIA +
MuseScore
+
+

Professional music notation software for composing and editing sheet music. WYSIWYG interface with playback and export options.

+
+
+ VISIT ↗ +
+
+
+
+
+
+ MEDIA +
MuseHub
+
+

Central hub for MuseScore plugins, sounds, and samples. Extends MuseScore with professional sound libraries and tools.

+
+
+ VISIT ↗ +
+
+
+
+
+
+ DEV TOOLS +
Docusaurus
+
+

Modern static website generator for technical documentation. Built with React, featuring versioning, search, and i18n out of the box.

+
+
+ VISIT ↗ +
+
+
+
+
+
+ DEV TOOLS +
VuePress
+
+

Vue-powered static site generator focused on documentation. Markdown-centered with built-in search and easy theming.

+
+
+ VISIT ↗ +
+
+
+
+
+
+ KNOWLEDGE +
BookStack
+
+

Self-hosted wiki organizing content into books, chapters, and pages. Simple interface with powerful search and markdown support.

+
+
+ VISIT ↗ +
+
+
+
+
+
+ KNOWLEDGE +
Wiki.js
+
+

Powerful modern wiki software built with Node.js. Clean interface, markdown editor, access control, and multiple storage backends.

+
+
+ VISIT ↗ +
+
+
+
+
+
+ DEV TOOLS +
Vue.js
+
+

Progressive JavaScript framework for building UIs. Easy to learn, performant, versatile - scales from library to full framework.

+
+
+ VISIT ↗ +
+
+
+
+
+
+ DEV TOOLS +
Create T3 App
+
+

Opinionated full-stack Next.js starter with TypeScript, tRPC, Tailwind, and Prisma. Best practices for type-safe rapid development.

+
+
+ VISIT ↗ +
+
+
+
+
+
+ DEV TOOLS +
Pandoc
+
+

Universal document converter for dozens of formats including Markdown, HTML, LaTeX, and Word. Essential for documentation workflows.

+
+
+ VISIT ↗ +
+
+
+
+
+
+ DEV TOOLS +
MiKTeX
+
+

Complete TeX/LaTeX typesetting system. Automatic package installation and integrated editor for professional scientific documents.

+
+
+ VISIT ↗ +
+
+
+
+
+
+ KNOWLEDGE +
Logseq
+
+

Privacy-first knowledge base on local markdown files. Combines outlining, bidirectional linking, and graph visualization for PKM.

+
+
+ VISIT ↗ +
+
+
+
+
+
+ KNOWLEDGE +
Trilium Notes
+
+

Hierarchical note-taking for personal knowledge bases. Features scripting, relations, and advanced note organization.

+
+
+ VISIT ↗ +
+
+
+
+
+
+ KNOWLEDGE +
Etherpad
+
+

Real-time collaborative document editing in browser. Color-coded authorship, chat, and revision history for remote teams.

+
+
+ VISIT ↗ +
+
+
+
+
+
+ KNOWLEDGE +
Publii
+
+

Desktop app for static websites with CMS interface. One-click sync to hosting services, no server or database required.

+
+
+ VISIT ↗ +
+
+
+
+
+
+ KNOWLEDGE +
Strapi
+
+

Leading open-source headless CMS built with JavaScript. Fully customizable and developer-friendly for modern APIs.

+
+
+ VISIT ↗ +
+
+
+
+
+
+ INFRA +
Vendure
+
+

Open-source headless commerce platform built with Node.js and TypeScript. Modern architecture for custom e-commerce solutions.

+
+
+ VISIT ↗ +
+
+
+
+
+
+ INFRA +
nopCommerce
+
+

Free ASP.NET Core shopping cart platform. Full-featured e-commerce solution with extensive plugin ecosystem.

+
+
+ VISIT ↗ +
+
+
+
+
+
+ INFRA +
OpenCart
+
+

PHP-based online store management system. Easy to use with thousands of modules and themes available.

+
+
+ VISIT ↗ +
+
+
+
+
+
+ INFRA +
PrestaShop
+
+

Popular e-commerce solution powering 300,000+ stores worldwide. Feature-rich with extensive marketplace.

+
+
+ VISIT ↗ +
+
+
+
+
+
+ INFRA +
Spree Commerce
+
+

Modular Ruby on Rails e-commerce platform. API-first design for headless commerce implementations.

+
+
+ VISIT ↗ +
+
+
+
+
+
+ COMMS +
Rocket.Chat
+
+

Open-source team communication platform. Self-hosted alternative to Slack with end-to-end encryption and customization.

+
+
+ VISIT ↗ +
+
+
+
+
+
+ COMMS +
Zulip
+
+

Threaded team chat for organized conversations. Combines email threading with real-time chat for productive async communication.

+
+
+ VISIT ↗ +
+
+
+
+
+
+ COMMS +
Element
+
+

Secure messaging and collaboration built on Matrix protocol. End-to-end encrypted with federation support.

+
+
+ VISIT ↗ +
+
+
+
+
+
+ COMMS +
Twake
+
+

All-in-one collaboration platform with messaging, tasks, and documents. Open-source alternative to Microsoft Teams.

+
+
+ VISIT ↗ +
+
+
+
+
+
+ COMMS +
BigBlueButton
+
+

Virtual classroom software for online learning. Built-in screen sharing, whiteboard, breakout rooms, and recording.

+
+
+ VISIT ↗ +
+
+
+
+
+
+ COMMS +
MiroTalk SFU
+
+

Free WebRTC video calls with screen sharing and messaging. Privacy-focused with no registration required.

+
+
+ VISIT ↗ +
+
+
+
+
+
+ COMMS +
Briefing
+
+

Simple, secure, anonymous video chat. No account, no tracking, ephemeral rooms for private conversations.

+
+
+ VISIT ↗ +
+
+
+
+
+
+ INFRA +
Metabase
+
+

Business intelligence tool that lets anyone query data and build dashboards. No SQL required for basic queries.

+
+
+ VISIT ↗ +
+
+
+
+
+
+ INFRA +
Redash
+
+

Connect and query your data sources, visualize results, and share insights. SQL-based data visualization platform.

+
+
+ VISIT ↗ +
+
+
+
+
+
+ INFRA +
Matomo
+
+

Ethical web analytics platform respecting user privacy. Full data ownership, GDPR compliant Google Analytics alternative.

+
+
+ VISIT ↗ +
+
+
+
+
+
+ INFRA +
Plane
+
+

Open-source project management tool. Issue tracking, sprints, and cycles with a clean, modern interface.

+
+
+ VISIT ↗ +
+
+
+
+
+
+ INFRA +
Focalboard
+
+

Open-source alternative to Trello and Notion. Organize tasks with kanban boards, tables, and calendar views.

+
+
+ VISIT ↗ +
+
+
+
+
+
+ INFRA +
ToolJet
+
+

Low-code platform to build internal tools. Connect databases, APIs, and build UIs quickly with drag-and-drop.

+
+
+ VISIT ↗ +
+
+
+
+
+
+ INFRA +
Firefly III
+
+

Self-hosted personal finance manager. Track expenses, budgets, and bills with beautiful charts and reports.

+
+
+ VISIT ↗ +
+
+
+
+
+
+ SECURITY +
Vault
+
+

Secure secrets management and data protection. Encrypt data, manage access, and provide auditing for sensitive information.

+
+
+ VISIT ↗ +
+
+
+
+
+
+ SECURITY +
Keycloak
+
+

Open-source identity and access management. SSO, social login, user federation, and fine-grained authorization.

+
+
+ VISIT ↗ +
+
+
+
+
+
+ SECURITY +
ZITADEL
+
+

Cloud-native identity platform combining best of Auth0 and Keycloak. Built for modern applications with focus on security.

+
+
+ VISIT ↗ +
+
+
+
+
+
+ SECURITY +
KeePassXC
+
+

Cross-platform password manager. Secure local storage with strong encryption, auto-type, and browser integration.

+
+
+ VISIT ↗ +
+
+
+
+
+
+ SECURITY +
Cryptomator
+
+

Client-side encryption for cloud storage. Transparent encryption for Dropbox, Google Drive, and other cloud services.

+
+
+ VISIT ↗ +
+
+
+
+
+
+ INFRA +
Nextcloud
+
+

Self-hosted file sync and share platform. Collaboration suite with calendar, contacts, mail, and extensive apps.

+
+
+ VISIT ↗ +
+
+
+
+
+
+ INFRA +
ownCloud
+
+

Enterprise file sync and share platform. Secure collaboration with granular permissions and compliance features.

+
+
+ VISIT ↗ +
+
+
+
+
+
+ INFRA +
Seafile
+
+

High-performance file syncing and sharing. Block-level sync, encryption, and efficient handling of large files.

+
+
+ VISIT ↗ +
+
+
+
+
+
+ INFRA +
Typesense
+
+

Fast, typo-tolerant search engine. Open-source alternative to Algolia with instant search and simple setup.

+
+
+ VISIT ↗ +
+
+
+
+
+
+ INFRA +
OpenSearch
+
+

Community-driven search and analytics suite derived from Elasticsearch. Distributed, scalable, and Apache 2.0 licensed.

+
+
+ VISIT ↗ +
+
+
+
+
+
+ INFRA +
NocoDB
+
+

Turn databases into smart spreadsheets. Open-source Airtable alternative with API generation and collaboration features.

+
+
+ VISIT ↗ +
+
+
+
+
+
+ AI & COMMUNITY +
Label Studio
+
+

Data labeling platform for machine learning. Annotate images, text, audio, and video with configurable interfaces.

+
+
+ VISIT ↗ +
+
+
+
+
+
+ INFRA +
TDengine
+
+

High-performance time-series database designed for IoT, Industrial IoT, and IT infrastructure monitoring.

+
+
+ VISIT ↗ +
+
+
+
+
+
+ AI & COMMUNITY +
Z.ai Chat
+
+

Free AI chat powered by GLM-4.6 and GLM-4.5 models. Advanced language model with multilingual capabilities.

+
+
+ VISIT ↗ +
+
+
+
+
+
+ AI & COMMUNITY +
DeepSeek
+
+

AI assistant powered by DeepSeek models. Strong reasoning capabilities for coding, analysis, and conversation.

+
+
+ VISIT ↗ +
+
+
+
+
+
+ AI & COMMUNITY +
T3 Chat
+
+

Chat interface for testing and exploring T3 stack applications. Developer-focused AI interaction tool.

+
+
+ VISIT ↗ +
+
+
+
+
+
+ AI & COMMUNITY +
Lemmy
+
+

Federated link aggregator and forum. Open-source Reddit alternative that's part of the Fediverse.

+
+
+ VISIT ↗ +
+
+
+
+
+
+ AI & COMMUNITY +
PeerTube
+
+

Decentralized video hosting network. Federation allows instances to follow each other, creating a federated YouTube alternative.

+
+
+ VISIT ↗ +
+
+
+
+
+
+ AI & COMMUNITY +
LBRY
+
+

Blockchain-based content sharing platform. Censorship-resistant publishing with cryptocurrency rewards for creators.

+
+
+ VISIT ↗ +
+
+
+
+
+
+ AI & COMMUNITY +
Forem
+
+

Platform for building communities. Powers DEV and other niche communities with customizable features.

+
+
+ VISIT ↗ +
+
+
+
+
+
+ AI & COMMUNITY +
AVideo
+
+

Open-source video platform for building YouTube-like sites. Live streaming, VOD, and monetization features.

+
+
+ VISIT ↗ +
+
+
+
+
+
+ INFRA +
NetBird
+
+

Open-source zero trust networking. WireGuard-based mesh VPN with centralized management and no complex configs.

+
+
+ VISIT ↗ +
+
+
+
+
+
+ DEV TOOLS +
rrweb
+
+

Record and replay web sessions. Open-source session replay library for debugging and analytics.

+
+
+ VISIT ↗ +
+
+
+
+
+
+ INFRA +
Mautic
+
+

Open-source marketing automation platform. Email campaigns, landing pages, forms, and lead scoring.

+
+
+ VISIT ↗ +
+
+
+
+
+
+ INFRA +
Dub
+
+

Open-source link management for modern marketing teams. Branded short links with analytics and API.

+
+
+ VISIT ↗ +
+
+
+
+
+
+ MEDIA +
Ant Media Server
+
+

Scalable streaming platform supporting WebRTC, RTMP, HLS. Ultra-low latency streaming for broadcasting.

+
+
+ VISIT ↗ +
+
+
+
+
+
+ MEDIA +
Invidious
+
+

Alternative YouTube frontend focused on privacy. No ads, no tracking, lightweight interface with subscriptions.

+
+
+ VISIT ↗ +
+
+
+
+
+
+ SECURITY +
ProjectDiscovery
+
+

Suite of security tools for vulnerability scanning and reconnaissance. Nuclei, httpx, subfinder for security research.

+
+
+ VISIT ↗ +
+
+
+
+
+
+ KNOWLEDGE +
ONLYOFFICE
+
+

Office suite with document, spreadsheet, and presentation editors. Strong MS Office compatibility and collaboration.

+
+
+ VISIT ↗ +
+
+
+
+
+
+ KNOWLEDGE +
Anki
+
+

Powerful flashcard program using spaced repetition. Proven effective for learning languages, medicine, and more.

+
+
+ VISIT ↗ +
+
+
+
+
+
+ DEV TOOLS +
7-Zip
+
+

High compression ratio file archiver supporting 7z, ZIP, RAR, and many formats. Essential utility with better compression than most commercial tools.

+
+
+ VISIT ↗ +
+
+
+
+
+
+ DEV TOOLS +
ShareX
+
+

Feature-rich screenshot and screen recording tool. Automatic upload to dozens of services with annotation tools.

+
+
+ VISIT ↗ +
+
+
+
+
+
+ INFRA +
Uptime Kuma
+
+

Self-hosted monitoring tool with beautiful interface. Monitor HTTP(s), TCP, ping with status pages and notifications.

+
+
+ VISIT ↗ +
+
+
+
+
+
+ INFRA +
Organic Maps
+
+

Privacy-focused offline maps for travelers and cyclists. Based on OpenStreetMap with no tracking or ads.

+
+
+ VISIT ↗ +
+
+
+
+
+
+ INFRA +
MeshCentral
+
+

Remote management and monitoring platform. Full remote desktop, terminal, file transfer for IT administration.

+
+
+ VISIT ↗ +
+
+
+
+
+
+ AI & COMMUNITY +
Open Source Alternative
+
+

Discover open-source alternatives to popular proprietary software. Curated directory with comparisons and reviews.

+
+
+ VISIT ↗ +
+
+
+
+
+ + + + diff --git a/ToolsnToys/guides.html b/ToolsnToys/guides.html new file mode 100644 index 0000000..c537d96 --- /dev/null +++ b/ToolsnToys/guides.html @@ -0,0 +1,822 @@ + + + + + +FIELD MANUALS // FIELD UNIT SP-07 + + + + + + + + +
+
+ + +
+ + ← TOOLS N TOYS + +
+
+
▶ FIELD UNIT SP-07 // FIELD MANUALS
+

FIELD MANUALS

+
STEP-BY-STEP GUIDES AND REFERENCES
+
+
+
● LOCAL_ACTIVE
+
SECTOR: MANUALS
+
SYNC: REALTIME
+
+
+ +
+
+
GUIDES
+
6
+
TOTAL
+
+
+
+
LINUX
+
3
+
SYSTEM GUIDES
+
+
+
+
STREAMING
+
1
+
SETUP GUIDE
+
+
+
+
DOCKER
+
1
+
REFERENCE
+
+
+
+
APPIMAGE
+
2
+
GUIDES
+
+
+
+ +
+ + +
+ +
+
+
🗂
+
+
LINUX INSTALLATION METHODS
+
+ LINUX + LEGENDARY +
+

"Every method from APT to source builds. Comparison table. When to use what."

+
+ READ GUIDE +
+
+ + +
+
+
📦
+
+
APPIMAGE INSTALLATION
+
+ APPIMAGE + RARE +
+

"Full walkthrough. Three methods, desktop integration, icon extraction, troubleshooting."

+
+ READ GUIDE +
+
+ + +
+
+
🐳
+
+
DOCKER COMMAND CHEATSHEET
+
+ DOCKER + RARE +
+

"Complete Docker and Docker Compose command reference with examples."

+
+ READ GUIDE +
+
+ + +
+
+
🧹
+
+
LINUX UNINSTALLATION & CLEANUP
+
+ LINUX + UNCOMMON +
+

"Seven removal methods, a case study, and nuclear options. Leave no orphans."

+
+ READ GUIDE +
+
+ + +
+
+
+
+
APPIMAGE QUICK REFERENCE
+
+ APPIMAGE + COMMON +
+

"One-page cheat sheet. Commands, templates, pro tips. Print it out."

+
+ READ GUIDE +
+
+ + +
+
+
📡
+
+
FACEBOOK PAGE LIVESTREAMING
+
+ STREAMING + DAMAGED +
+

"Multi-camera OBS setup on Mac M2. Hardware-specific. Dated but functional."

+
+ READ GUIDE +
+
+ +
+
+
+ + + + \ No newline at end of file diff --git a/ToolsnToys/jl-early-tools.html b/ToolsnToys/jl-early-tools.html new file mode 100644 index 0000000..a3de0e1 --- /dev/null +++ b/ToolsnToys/jl-early-tools.html @@ -0,0 +1,487 @@ + + + + + +JL'S TOOLS // FIELD UNIT SP-07 + + + + + + + +
+
+ + +
+ + ← TOOLS N TOYS + +
+
+
▶ FIELD UNIT SP-07 // JL'S TOOLS
+

TRAINING WHEELS

+
+
+
● MODULE_LOADED
+
ORIGIN: JL-KRUGER
+
+
+ +
+ + +
+ +
+
+
🌐
+
+
MESHAGORA
+
LINKEDLEGENDARY
+

"A whole social network that fits in a classroom. Runs on local WiFi. Demonstrates feed curation, bot flooding, and invisible admin powers. No internet required. All session data disappears when you press Ctrl+C. Very on the nose."

+
+ VISIT GITHUB +
+
+ + +
+
+
🏴‍☠️
+
+
PLAYLIST PIRATE
+
LINKEDRARE
+

"Spotify CSV goes in. Static HTML playlist pages come out. Artists get linked so you can pay them directly. Can also download the MP3s if yt-dlp cooperates. Piracy is a complicated word here."

+
+ VISIT GITHUB +
+
+ + +
+
+
+
+
REMEMBER TO FORGET
+
LINKEDUNCOMMON
+

"You start a task, it timestamps it. You stop, it timestamps that. It's interstitial journaling for people who need to invoice. Dead simple. Still mine, though."

+
+ VISIT GITHUB +
+
+ + +
+
+
🎣
+
+
TAB CATCHER
+
LINKEDCOMMON
+

"For people who open 47 tabs and call it research. Click a button. Get a markdown file of everything you had open. Browser bookmarks are a lie we tell ourselves."

+
+ VISIT GITHUB +
+
+ + +
+
+
💬
+
+
WAMEX
+
LINKEDCOMMON
+

"Paste in the HTML from WhatsApp Web's pending requests panel. Get a neat list of wa.me links out. Built in under 30 minutes."

+
+ VISIT GITHUB +
+
+ + +
+
+
🕸
+
+
DENDRITIC LINKS NETWORK
+
CURIOUNIQUE
+

"Give it a .md file of links from Tab Catcher. It grows a tree. Built during early sessions. A fossil that still runs."

+
+ OPEN CURIO +

⚠ LEGACY ITEM — PRESERVATION ONLY

+
+
+
+
+ +
+
⚙️
+
+
SYSTEM OVERVIEW // FIELD UNIT SP-07
+
All tools verified. Connectivity established. Ready for deployment.
+
+
+
+
6
+
LOADED
+
+
+
100%
+
INTEGRITY
+
+
+
+ +
+ + + + diff --git a/ToolsnToys/toolsntoys.html b/ToolsnToys/toolsntoys.html new file mode 100644 index 0000000..cd29744 --- /dev/null +++ b/ToolsnToys/toolsntoys.html @@ -0,0 +1,828 @@ + + + + + +TOOLS N TOYS // FIELD UNIT SP-07 + + + + + + + + +
+
+ + +
+ + ← SPACE + +
+
+
▶ FIELD UNIT SP-07 // TOOLS N TOYS
+

TOOLS N TOYS

+
ORCHESTRATION & UTILITY HUB
+
+
+
● LOCAL_ACTIVE
+
SECTOR: HUB-07
+
SYNC: REALTIME
+
+
+ +
+
+
SECTIONS
+
5
+
ACTIVE MODULES
+
+
+
+
TOOLS
+
57
+
COLLECTED ITEMS
+
+
+
+
GUIDES
+
6
+
FIELD MANUALS
+
+
+
+
EDU TOYS
+
4
+
LEGACY ARTIFACTS
+
+
+
+ +
+ + +
+ +
+
+
🔧
+
+
JL'S TOOLS
+
+ 5 ITEMS + LEGENDARY +
+

early solutions to very niche problems

+
+ VISIT +
+
+ + +
+
+
🛡
+
+
FOSS ARSENAL
+
+ 50+ ITEMS + RARE +
+

Free and open weapons for builders, makers, and tinkerers.

+
+ VISIT +
+
+ + +
+
+
📋
+
+
FIELD MANUALS
+
+ 6 ITEMS + UNCOMMON +
+

Step-by-step guides for Linux, Docker, AppImage, and streaming.

+
+ VISIT +
+
+ + +
+
+
🧪
+
+
EDU TOYS
+
+ 4 ITEMS + DAMAGED +
+

Artifacts from an early course prototype. Janky but preserved.

+
+ VISIT +
+
+ + +
+
+
🕸
+
+
DENDRITIC CURIO
+
+ 1 ITEM + UNIQUE +
+

An early Sonnet 4 experiment. A curiosity from the beginning of the agentic age.

+
+ VISIT +
+
+
+
+
+ + + +