Skip to content

Instantly share code, notes, and snippets.

View sohaibilyas's full-sized avatar
🎯
Focusing

Sohaib Ilyas sohaibilyas

🎯
Focusing
View GitHub Profile
@sohaibilyas
sohaibilyas / sae-decode.sh
Created February 13, 2026 00:00
SAE Systems Tracking URL Decoder
#!/bin/bash
# SAE Systems Tracking URL Decoder
# Usage: ./sae-decode.sh "YOUR_URL_HERE"
# Or run without arguments to paste interactively
set -e
# Colors for output
RED='\033[0;31m'
@sohaibilyas
sohaibilyas / deploy-to-laravel-vapor.yml
Last active June 2, 2020 11:12
Github Action file to deploy to Laravel Vapor.
name: Deploy to Production
on:
push:
branches:
- master
jobs:
laravel:
name: Check out, build and deploy to Vapor
runs-on: ubuntu-latest
steps: