Skip to content

Instantly share code, notes, and snippets.

View yashodhank's full-sized avatar
🎯
Manifesting

Yashodhan yashodhank

🎯
Manifesting
View GitHub Profile
@pirate
pirate / pluginization_example.py
Last active October 24, 2024 04:11
Example of how to pluginize a complex app using a hooks system
"""
Example of a pluginized architecture breaking up a large app
with complex behavior (ArchiveBox), into a series of steps
that plugins can hook into.
(read from the bottom to top to get a quick overview)
"""
import re
import json
@brenr
brenr / openwrt-tethering.md
Last active May 8, 2025 06:23
OpenWRT Smartphone Tethering

OpenWRT Router Pre-configured for Smartphone Tethering

In this guide, I'll be using:

  • iPhone 12 Pro on iOS 15.1.1 as my tethering device
  • Raspberry Pi 4 with OpenWRT version 21.02.1
  • 64GB Sandisk micro SD card

The goal with this guide is to create a pre-configured OpenWRT router that:

  • Is plug and play to provide out-of-the-box smartphone tethering
  • Supports both iPhone and Android (comment below if you are having any issues).
@LoliC0d3
LoliC0d3 / README.md
Last active August 17, 2021 15:57
How to install acunetix 13 in linux

Download : https://www32.zippyshare.com/v/V8LDIgDk/file.html

$ chmod +x acunetix_13.0.200217097_x64_.sh
$ ./acunetix_13.0.200217097_x64_.sh 
$ cp Crack/wvsc /home/acunetix/.acunetix/v_200217097/scanner/ 
$ cp Crack/license_info.json /home/acunetix/.acunetix/data/license/
$ systemctl start acunetix.service
@dims
dims / README.md
Last active May 3, 2025 05:44
Kubernetes Resources
@likecyber
likecyber / auto_plesk_trial.php
Last active August 12, 2024 17:08
Auto Plesk Trial Renewal (using Anti-Captcha to solve ReCaptcha)
<?php
/*
Make sure to enter $anticaptcha_key before upload to server.
Upload "auto_plesk_trial.php" file to "/home/centos/auto_plesk_trial.php"
Then create Schedule Task in Root account of Plesk.
Task Type: Run a PHP script
Script path: /home/centos/auto_plesk_trial.php
Use PHP version: 7.x.x / 8.x.x
Run: Cron style * * * * *
@iogeek
iogeek / setupPC.ps1
Last active April 25, 2025 04:50
setup Windows dev PC
# MIT License
# Copyright (c) 2022 robbieh
# See https://mit-license.org/ for details about MIT License
# Prep WSL # WSL is getting easier to install. Yah!!
wsl --install
#dism.exe /online /enable-feature /featurename:Microsoft-Windows-Subsystem-Linux /all /norestart
#dism.exe /online /enable-feature /featurename:VirtualMachinePlatform /all /norestart
# wsl --install -d ubuntu # wsl --instal now defaults to ubuntu (no *nix pref) and WSL2
@yankcrime
yankcrime / terraform.md
Last active July 13, 2022 13:59
Terraform for Kubernetes and Rancher on existing nodes

Terraform example for deploying Kubernetes and Rancher on existing infrastructure

main.tf

resource "rke_cluster" "rancher" {
  ssh_agent_auth        = true
  ignore_docker_version = true
  kubernetes_version    = var.kubernetes_version

  dynamic "nodes" {
@shurick81
shurick81 / windows.ps1
Last active February 19, 2025 07:31
Laptop provisioning
# Baseline
Install-PackageProvider -Name NuGet -MinimumVersion 2.8.5.201 -Force
Install-Module PnP.PowerShell -Force
Install-Module MSOnline -Force
Install-Module AzureAD -Force
Set-ExecutionPolicy Bypass -Force
iex ((New-Object System.Net.WebClient).DownloadString('https://chocolatey.org/install.ps1'))
# Connection and security
choco install -y forticlientvpn