Skip to content

Instantly share code, notes, and snippets.

View winguse's full-sized avatar
🎣
fishing

Yingyu Cheng winguse

🎣
fishing
View GitHub Profile
@winguse
winguse / flac2alac.bash
Created January 12, 2020 13:41 — forked from yenliangl/flac2alac.bash
Convert flac to Alac (Apple Lossless Audio Codec)
# convert flac files in current directory to Apple loss-less codec.
function flac2alac {
for f in *.flac; do
ffmpeg -i "$f" -acodec alac -vsync 2 -c:v copy -metadata COMMENT= -y "${f%.flac}.m4a"
#-map_meta_data $f:${f%.flac}.m4a;
done
}

Keybase proof

I hereby claim:

  • I am winguse on github.
  • I am winguse (https://keybase.io/winguse) on keybase.
  • I have a public key whose fingerprint is 66DE FC48 E0A1 9969 AB1F 97A1 C985 F630 4EC9 1173

To claim this, I am signing this object:

local timer=require'hs.timer'
local checkMods=require'hs.eventtap'.checkKeyboardModifiers
local function modsPressed() return checkMods(true)._raw>0 end
local frontWindows = {}
local frontFocusIdx = 0
local modes = {
full = { 1 },
half = { 0.5, 0.5 },
const fs = require('fs')
const http = require('http');
// https://ftp.arin.net/pub/stats/arin/delegated-arin-extended-latest
// https://ftp.apnic.net/stats/apnic/delegated-apnic-latest
/**
* get content from URL
* @param {String} url URL
* @returns {Promise<String>} the response body of input URL
@winguse
winguse / create_place_holder.js
Last active July 1, 2020 03:12
copy and paste this in your browsers' console...
const walk = document.createTreeWalker(document.body, NodeFilter.SHOW_TEXT, null, false);
const delay = [];
while (true) {
const node = walk.nextNode();
if (!node) break;
if (!node.textContent.trim()) continue;
const { parentElement } = node;
if (parentElement.tagName === 'STYLE') continue;
const { color, display } = getComputedStyle(parentElement);
if (display === 'inline') {
#!/bin/sh
echo '
net.core.wmem_max = 12582912
net.core.rmem_max = 12582912
net.ipv4.tcp_rmem = 10240 87380 12582912
net.ipv4.tcp_wmem = 10240 87380 12582912
net.ipv4.tcp_window_scaling = 1
const http = require('http');
const { spawn } = require('child_process');
const jobs = {};
setInterval(() => {
Object.keys(jobs).forEach(url => {
const {ts} = jobs[url];
if (Date.now() - ts > 24 * 3600 * 1000) {
delete jobs[url];
Hi Apple,
Well known to the world, Apple treats customers' privacy as a high priority.
I recently realized that two popular Apps in the Chinese community, Wechat, and AliPay, will get started in the background when my iPhone changes its state of WiFi connection. Further research indicates that these two Apps implemented the HotspotHelper feature of iOS.
I know these features can be helpful, during which they can help users connect to public WiFi, but most people rarely use this feature. For example, I am not aware of this before today. I also do not expect my WiFi connectivities to be monitored by these two Apps. I try my best to find a way to disable this feature in these two Apps' settings, and there is no help.
I urge Apple to consider this situation, stop the abusing usage of these two companies, and provide consumers options and transparency about their WiFi network connection activities.
@winguse
winguse / .env
Created April 1, 2022 19:26
Teslamate deploy
TM_DB_USER=teslamate
TM_DB_PASS=PASSWORD_HERE
TM_DB_NAME=teslamate
GRAFANA_USER=admin
GRAFANA_PW=PASSWORD_HERE
TM_TZ=America/Los_Angeles
#!/usr/bin/env bash
PORT_SCAN_MAX=1
IP_DENY_SECOND=300
IP_SET_MAX=1024000
NET_IF=eth0
ipset create pub-port-set bitmap:port range 0-65535
ipset add pub-port-set 22