8 working snippets · 4 categories · no filler
Working code,
not another tutorial.
Downloadable, tested snippets — webhook signature verification, Excel automation, load testing — plus small interactive tools, built to drop into your project, not just read about.
Press / to search from anywhere
Continue Exploring
Catalog
Every tool, one manifest
$ cat manifest.json | jq '.snippets[]' 8 entries
# Git — 3
JV GitHub Webhooks - Java Verify GitHub webhooks correctly, in Spring Boot. #github #webhooks ›
Java Spring Boot implementation for GitHub webhooks with signature verification and deployment
Open the full package →
@RestController
public class GithubWebhookController {
private static final String SECRET = "YOUR_WEBHOOK_SECRET";
@PostMapping("/webhook") JS GitHub Webhooks - Node.js Verify GitHub webhooks correctly, without the guesswork. #github #webhooks ›
Node.js Express and vanilla implementations for GitHub webhooks with signature verification
Open the full package →
const app = express();
const SECRET = process.env.SECRET || "your_secret";
const PORT = process.env.PORT || 3000;
app.use(express.raw({ type: "application/json" })); PHP GitHub Webhooks - PHP Verify GitHub webhooks correctly, no framework required. #github #webhooks ›
PHP native implementation for GitHub webhooks with signature verification and deployment
Open the full package →
<?php
$secret = getenv('WEBHOOK_SECRET') ?: 'your_secret';
$deploy_script = '/path/to/deploy.sh';
$log_file = '/var/log/github-webhook.log'; # Testing — 3
JV Java Excel Utility - Comprehensive Stop hand-rolling Excel I/O. #java #excel ›
Production-ready Excel utility class with read/write operations, cell styling, and data manipulation for test automation
Open the full package →
public class ExcelUtil {
protected String filePath;
protected FileInputStream fis;
protected FileOutputStream fos; JV Java Selenium - ScreenshotUtil Never lose a failure screenshot again. #selenium #screenshot ›
Reusable ScreenshotUtil implementation for capturing browser, element, and failure screenshots in Selenium automation
Open the full package →
public class ScreenshotUtil {
private static String getTimestamp() {
return new SimpleDateFormat(ScreenshotConfig.TIMESTAMP_FORMAT)
.format(new Date()); JS K6 Testing Snippets Load test your API without writing k6 from scratch. #k6 #load testing ›
Ready-to-use K6 load testing scripts for common API testing scenarios with example outputs and performance metrics
Open the full package →
export const options = {
stages: [
{ duration: '1m', target: 50 }, // Ramp up to 50 users
{ duration: '3m', target: 50 }, // Stay at 50 users # Maven — 1
☕ Maven Proxy Configuration Get Maven working behind your corporate proxy. #maven #proxy ›
Configure Maven Proxy to download maven dependencies behind organization's proxy.
Open the full package →
# Telegram — 1
📱 Telegram Bot APIs Send Telegram alerts without reading the whole API doc. #telegram #telegram bot ›
Quick-access to Telegram Bot APIs plus common troubleshooting steps.
Open the full package →