Skip to content

Instantly share code, notes, and snippets.

@adservonet
adservonet / plesk-sync.conf
Created August 18, 2026 14:54
Proxmox Mail Gateway: Plesk Sync
#/etc/pmg/plesk-sync.conf on proxmox mail gateway host
PLESK_URL=https://<plesk-host-or-ip>:8443
PLESK_API_KEY=<api-key-from-plesk>
@x0nu11byt3
x0nu11byt3 / elf_format_cheatsheet.md
Created February 27, 2021 05:26
ELF Format Cheatsheet

ELF Format Cheatsheet

Introduction

Executable and Linkable Format (ELF), is the default binary format on Linux-based systems.

ELF

Compilation

@Lh4cKg
Lh4cKg / install_hp.sh
Last active August 18, 2026 14:51
Installing networked HP printer and scanner on Fedora Linux
# docs for more information see the official HPLIP project site here.
# https://developers.hp.com/hp-linux-imaging-and-printing
# Step 1. Update Fedora Linux
# Simply run dnf command:
$ sudo dnf upgrade
# Step 2. Search for HPLIP software

Personal Online-Presence Audit — Agent Prompt

You are auditing the complete online presence of one person: [NAME]. Not just their website — everything a search engine, an AI assistant, or a stranger doing due diligence would find. Your deliverable is an honest, evidence-backed report with a prioritized action plan. You change nothing; you only measure, diagnose, and recommend.

This prompt is self-contained, but if you are a Claude Code-style agent with shell access, first install the open-source claude-seo skill (MIT) for deeper site tooling — it is optional, not required:

git clone --depth 1 https://github.com/AgriciDaniel/claude-seo.git && bash claude-seo/install.sh
@ZeroEkkusu
ZeroEkkusu / unblock-everyone-on-x.js
Last active August 18, 2026 14:40
How to unblock everyone on X (August 2026)
// HOW TO USE THIS SCRIPT IN A DESKTOP CHORMIUM BASED BROWSER:
// 1. OPEN https://x.com/settings/blocked/all IN A NEW TAB
// 2. RIGHT CLICK ANYWHERE => CLICK "Inspect"
// 3. FIND THE "Console" TAB (USUALLY AT THE BOTTOM)
// 4. COPY THIS ENTIRE SCRIPT
// 5. (FORCE) PASTE INTO THE CONSOLE AND PRESS THE RETURN/ENTER KEY
// 6. LEAVE THE TAB OPEN UNTIL THE SCRIPT UNBLOCKS EVERYONE
// 7. CLOSE THE TAB WHEN DONE
const BATCH_SIZE = 10;

Premium Software Engineering Placement Roadmap (2026 Edition)


1. Introduction

Who This Roadmap Is For

  • Target Audience: Engineering students (CS/IT & Non-CS branches) targeting Tier-1, Tier-2, Tier-3 placements, product-based companies (FAANG/MAANG, Unicorns), and high-paying service startups.
  • Prerequisites: Zero prior coding knowledge required.
@byteab
byteab / hand-drawn-character-creator.html
Created August 17, 2026 15:28
Seeded procedural animated hand drawn like characters, Canvas2D brush strokes on a Three.js rig.
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Who are you?</title>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Patrick+Hand&display=swap" rel="stylesheet">
@SeanCowburnMSFT
SeanCowburnMSFT / Disable-SSMS-Update-Notifications.ps1
Last active August 18, 2026 14:35
Suppress "update available" prompts in SSMS 22.5+ for centrally managed deployments.
<#
.SYNOPSIS
Disables automatic update checks in the private registry used by supported SSMS profiles.
.DESCRIPTION
Finds installed SSMS instances, matches each one to its local profile, backs up the
profile's private registry, and sets the update-check override to 0.
SSMS needs to be closed because its private registry file cannot be safely changed
while the application is using it. Run the script from an elevated PowerShell window.
@ahkohd
ahkohd / disable-chromium-two-fingers-swipe-navigation-explained.bash
Last active August 18, 2026 14:35
Code snippet to disable two-finger swipe gesture for next/previous page navigation for Chromium based browsers on macOS.
# Set your app name - the Chromium Browser (i.e Chrome, Brave) in a variable.
appName="Brave"
# Get the bundle Id of the Chromium Browser, store it in a variable.
bundleID=$(osascript -e 'id of app "'$appName'"')
# Example: Get the bundle Id of Brave browser
# Returns:
# com.brave.Browser