Skip to content

Instantly share code, notes, and snippets.

View region23's full-sized avatar
:octocat:
Vibe-coder

Pavel Pavlenko region23

:octocat:
Vibe-coder
View GitHub Profile
@Willian-Zhang
Willian-Zhang / eligibilityfix.sh
Last active June 17, 2025 06:14
Mac enable AI Fix 15.4.1
#!/bin/bash
if [[ $EUID -ne 0 ]]; then
sleep 3
echo "Not running as root"
exit 3
fi
label=com.apple.eligibilityd
@phalt
phalt / main.go
Created December 3, 2014 14:51
Simple HTTP API in Go
package main
import (
"github.com/gin-gonic/gin"
"database/sql"
"github.com/coopernurse/gorp"
_ "github.com/mattn/go-sqlite3"
"log"
"time"
"strconv"