Skip to content

Instantly share code, notes, and snippets.

@tevino
tevino / sync-brightness
Last active November 7, 2018 16:51
Sync brightness between builtin and external monitor on a Mac
#!/bin/bash
set -e
DEPS="ioreg ggrep jq ddcctl"
EXTERNAL_DISPLAY_NO=${EXTERNAL_DISPLAY_NO:-1}
RATIO=${RATIO:-100} # 0-100
get-builtin-brightness() {
indent() { sed 's/^/ /'; }
confirm() {
msg=$1 || "Are you sure?"
msg="$msg (y/N)"
read -p "$msg" -n 1 -r
echo
[[ $REPLY =~ ^[Yy]$ ]]
}

需求

高级配置问题

现状

网上存在各类通过命令行编辑深藏在 NAS 文件系统深处的某配置文件而实现某些高级功能的方法,就连群晖官方的技术支持也会提供这种方案。

这种方式的问题

@tevino
tevino / pico8.txt
Created May 27, 2018 11:43 — forked from paniq/pico8.txt
PICO-8 hacks & secrets
Screen resolutions
------------------
PICO-8 supports different undocumented videomodes that can be activated at runtime,
using poke(0x5F2C, X) where X is one of the following mode numbers:
0: 128x128, 0 pages
1: 64x128, 1 page
2: 128x64, 1 page
3: 64x64, 3 pages
@tevino
tevino / go-testing-cover-profile-filter.js
Last active May 9, 2018 08:44
Add a search input for go testing cover profile.
// ==UserScript==
// @name Go testing cover profile filter
// @namespace https://github.com/tevino
// @version 0.1
// @description Add a search input for go testing cover profile.
// @author Tevin Zhang
// @grant none
// @require https://code.jquery.com/jquery-2.2.4.min.js
// ==/UserScript==
var frame = null;
@tevino
tevino / time-capsule
Last active April 12, 2018 09:59
time-capsule install; time-capsule monitor
#!/bin/bash
set -o posix
TC=$0
GLOBAL_EXCLUDES="\.git"
alert() {
msg=$1
@tevino
tevino / openvpn.conf
Created April 7, 2018 11:56
Route all traffic through OpenVPN together with WPAD on a Synology NAS.
# Append the following lines to:
# /usr/syno/etc/packages/VPNCenter/openvpn/openvpn.conf
push "redirect-gateway def1 bypass-dhcp"
push "dhcp-option DNS YOUR_DNS_SERVER"
push "dhcp-option PROXY_AUTO_CONFIG_URL http://wpad/proxy.pac"
#!/usr/bin/env python
# -*- coding: utf-8 -*-
import os
import sys
import HTMLParser
from json import loads
from urllib2 import urlopen
from urllib import urlretrieve
from threading import Thread
#include <stdio.h>
#include <stdlib.h>
#include <sys/types.h>
#include <sys/socket.h>
int main(){
int fds[2];
int ret;
ssize_t size;
#!/usr/bin/env python
# -*- coding: utf-8 -*-
import sys
import time
import random
import logging
from collections import Counter, defaultdict
from redis import StrictRedis
import gevent
from gevent.pool import Pool