Skip to content

Instantly share code, notes, and snippets.

@m13253
m13253 / getproxy.sh
Created April 10, 2020 03:23
List proxy server status on macOS
#!/usr/bin/env bash
networksetup -listallnetworkservices | tail +2 |
while read NETWORK_SERVICE
do
echo 'Network service: '$'\e[34m'"$NETWORK_SERVICE"$'\e[0m'
networksetup -getproxyautodiscovery "$NETWORK_SERVICE" | sed 's/^/[WPAD] /'
networksetup -getautoproxyurl "$NETWORK_SERVICE" | sed 's/^/[PAC] /'
networksetup -getwebproxy "$NETWORK_SERVICE" | sed 's/^/[HTTP] /'
networksetup -getsecurewebproxy "$NETWORK_SERVICE" | sed 's/^/[HTTPS] /'
@m13253
m13253 / android-captive-portal-china-fix.sh
Created January 22, 2020 16:01
Change Android captive portal detection to Xiaomi's server
adb shell settings put global captive_portal_https_url https://connect.rom.miui.com/generate_204
adb shell settings put global captive_portal_http_url http://connect.rom.miui.com/generate_204
@m13253
m13253 / mousetest.js
Created November 11, 2019 14:36
A mouse test program written in gjs (Gtk+ JavaScript)
#!/usr/bin/gjs
const GObject = imports.gi.GObject;
const Gdk = imports.gi.Gdk;
const Gtk = imports.gi.Gtk;
const Lang = imports.lang;
const MouseTest = new Lang.Class({
Name: "Mouse Test",
#include <X11/Xlib.h>
#include <X11/Xutil.h>
int main(int argc, char* argv[])
{
Display* display = XOpenDisplay(NULL);
XVisualInfo vinfo;
XMatchVisualInfo(display, DefaultScreen(display), 32, TrueColor, &vinfo);
@m13253
m13253 / bird-dn42-util.conf
Last active June 22, 2025 13:03
BIRD 3.0 utility for DN42 related operations
# BIRD 3.0 utility for DN42 related operations
# To be used with:
# include "bird-dn42-util.conf";
# in bird.conf main configuration file.
function reset_origin (int transit_; int origin)
{
bgp_path.empty;
bgp_path.prepend(origin);
bgp_path.prepend(transit_); # "transit" is a keyword since BIRD 3.0
@m13253
m13253 / init.sh
Last active May 19, 2025 01:07
Minimal working initramfs for BusyBox, with login
#!/bin/busybox sh
# 1) Download a prebuilt BusyBox binary here:
# https://busybox.net/downloads/binaries/
#
# 2) Prepare your kernel
# cp /boot/vmlinuz vmlinuz
#
# 3) Copy the files
# install -Dm0755 busybox-x86_64 initramfs/bin/busybox
package main
import (
"log"
"github.com/miekg/dns"
)
func main() {
err := dns.ListenAndServe(":5533", "udp", dns.HandlerFunc(handler))
if err != nil {
@m13253
m13253 / TagCloud.pde
Created May 20, 2017 15:38
Program to draw a rotating tag cloud, using Processing schetchbook
/*
TagCloud.pde
Copyright (C) 2017 StarBrilliant <m13253@hotmail.com>
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
@m13253
m13253 / conver.pe
Created April 28, 2017 09:39 — forked from endel/conver.pe
FontForge script to convert .ttf file to its webfont variations (.otf, .svg, .woff, .woff2)
#!/usr/local/bin/fontforge
Open($1)
Generate($1:r + ".otf")
Generate($1:r + ".svg")
Generate($1:r + ".woff")
Generate($1:r + ".woff2")
#include <cassert>
#include <cstdio>
#include <cstdlib>
#include <cstring>
#include <deque>
#include <queue>
#include <unistd.h>
#include <utility>
#include <vector>