Skip to content

Instantly share code, notes, and snippets.

View AnythingLinux's full-sized avatar
🏠
Working from home

Masum AnythingLinux

🏠
Working from home
View GitHub Profile
Looking for an expert to install and configure the Faraday Vulnerability Management Platform on your Linux server? I provide professional Faraday installation, deployment, configuration, troubleshooting, and ongoing technical support for cybersecurity teams, penetration testers,
and organizations.
My Faraday Installation Services Include:
✔ Faraday Community/Enterprise setup on Linux
✔ Ubuntu, Debian, CentOS, and other Linux server installation
✔ Docker and manual Faraday deployment
✔ Database configuration and optimization
✔ User, workspace, and team configuration
@AnythingLinux
AnythingLinux / Hermes Agent Full Installation Support
Last active June 13, 2026 04:54
Hermes Agent - Full Course & Setup Guide - For COMPLETE Beginners
Hermes Agent - Full Course & Setup Guide - For COMPLETE Beginners
Get professional Hermes Agent Installation Support including production-grade setup, AI API integration, troubleshooting,
optimization, and ongoing maintenance.
What You'll Get Support?
- 🧠 Hermes Agent Installation Full Support
- 🌐 Cloud & VPS server setup (DigitalOcean, AWS, etc.)
- 🔌 Cloud AI API & local LLM integration
- 🔐 NGINX reverse proxy configuration
@AnythingLinux
AnythingLinux / Odysseus Self-hosted AI workspace Setup Support
Last active June 7, 2026 19:31
Professional Odysseus AI Workspace Setup & Support
Professional freelance support for Odysseus AI Workspace, including production-grade setup, deployment, AI integration,
troubleshooting, optimization, and ongoing maintenance.
What You'll Get Support?
🧠 Full Odysseus AI Workspace installation
🌐 Cloud & VPS server setup (DigitalOcean, AWS, etc.)
🔌 Cloud AI API & local LLM integration
🔐 NGINX reverse proxy configuration
🔒 SSL certificate setup (HTTPS secure deployment)
⚡ Performance optimization & scaling
@AnythingLinux
AnythingLinux / Ubuntu Security Notices
Last active May 31, 2026 11:53
Ubuntu 24.04 LTS Security Notices
sudo -i
pro attach (token)
apt update -y
apt upgrade -y
apt install build-essential checkinstall
apt install software-properties-common
apt upgrade -o APT::Get::Show-Upgraded=true
apt install apt-show-versions
apt install --install-recommends linux-generic-hwe-24.04
dpkg-reconfigure --priority=low unattended-upgrades
@AnythingLinux
AnythingLinux / bitcoin-pizza.md
Created April 20, 2026 23:50 — forked from RobertBarrow/bitcoin-pizza.md
Bitcoin Pizza, Bitcoin Pizza Index, Bitcoin Pizza Day and Bitcoin Lightning Pizza

Bitcoin Pizza

On 22nd May 2010, programmer Laszlo Hanyecz made the first documented purchase of goods using bitcoin when he exchanged 10,000BTC for two pizzas supplied by Jeremy Sturdivant (which he had bought from Papa John's). Back then - when the technology was just over a year old - that equated to roughly $25 per pizza.

Here is a link to the original "Pizza for bitcoins?" post on bitcointalk.org.

Here is a link to the transaction on the Bitcoin blockchain.

Bitcoin Pizza Index

@AnythingLinux
AnythingLinux / How To Kill Zombies Automatically Linux Server
Last active April 20, 2026 21:48
Kill Zombies Automatically Linux Server
# Create script
nano /usr/local/bin/cleanup_zombies.sh
#!/bin/bash
# ============================================================
# zombie_manager.sh — Ubuntu Server Zombie Process Manager
# Usage: sudo bash zombie_manager.sh [--kill] [--log] [--watch]
# Options:
# --kill Auto-kill parent processes of zombies
@AnythingLinux
AnythingLinux / Enable SSH Access on Ubuntu Linux Server
Created March 31, 2026 09:00
How To Enable SSH Access on Ubuntu Linux Server
apt install openssh-server
nano /etc/ssh/sshd_config
# Find (ctrl+w) this line and set
PermitRootLogin yes
PubkeyAuthentication yes
PasswordAuthentication yes
# Save & exit ctrl+s and ctrl+x then hit enter
@AnythingLinux
AnythingLinux / Telnyx Full Installation & Configuration Guide for SMS, Voice, and API Integration
Last active February 18, 2026 11:47
Telnyx Complete Setup, Installation & Configuration Support
This Gist provides a complete step-by-step guide to set up, install, and configure Telnyx for your business or development projects.
Get Your Support 💬 Telegram: https://t.me/AnythingLinux
Service I Offer:
- Complete setup Telnyx account including 10DLC branding and 10DLC campaign
- Configure inbound and outbound SMS and voice call flows
- Integrate Telnyx APIs with your applications
- Secure your server and optimize performance on Ubuntu Linux or cloud environments
- Troubleshoot common setup errors for bulk SMS and VoIP services
@AnythingLinux
AnythingLinux / Professional n8n Support Services – Fix, Optimize & Scale Workflows
Last active January 7, 2026 08:59
n8n Help and Support for Businesses – Fast, Reliable Solutions
As your business grows, manual processes become costly, slow, and error-prone. We provide professional n8n automation services
help growing businesses streamline operations, integrate systems, and scale efficiently—without adding complexity.
💬 Telegram: https://t.me/AnythingLinux
📧 Email: linuxguns@gmail.com
📩 WhatsApp: https://wa.me/8801890757616
We design and implement custom n8n workflows that connect your CRMs, SaaS tools, APIs, databases, and internal systems.
Every automation is built for real business use, with proper error handling, logging, security, and long-term maintainability.
@AnythingLinux
AnythingLinux / Python Installation Ubuntu Linux
Created August 30, 2025 21:27
Python Installation Linux
apt install snapd
snap install python38 --classic
apt install python3-pip
nano ~/.bashrc
# Add into the bottom
alias python=python3
alias pip=pip3
# Save & Exit ctrl+s and ctrl+x
alias python=python3