Skip to content

Instantly share code, notes, and snippets.

@pgaskin
pgaskin / reconcile_branches.sh
Created May 10, 2024 21:33
Creates a synthetic merge commit from scratch out of the specified branches, then adds it to the history of the current branch. Used to maintain https://github.com/pgaskin/cmus.
#!/bin/bash
set -e
# our script name
self="_exp_reconcile_branches.sh"
# check the args
if [[ $# -eq 0 ]]
then
echo "creates a synthetic merge commit from scratch out of the specified branches, then adds it to the history of the current branch"
#include "pico/stdlib.h"
#include "hardware/i2c.h"
#include "fnk0079.h"
int main() {
i2c_init(i2c0, 100 * 1000);
gpio_set_function(4, GPIO_FUNC_I2C);
gpio_set_function(5, GPIO_FUNC_I2C);
gpio_pull_up(4);
gpio_pull_up(5);
/* ==UserStyle==
@name Compact Outlook.com Calendar
@version 20240124.13.32
@namespace ?
==/UserStyle== */
@-moz-document url-prefix("https://outlook.office.com/calendar/view/week"), url-prefix("https://outlook.office.com/calendar/view/workweek"), url-prefix("https://outlook.office.com/calendar/view/day") {
/* collapse global nav unless hovering over edge */
#appContainer:not(:hover:not(:has(* >#MainModule:hover))) {
:has(> #MainModule) {
package redshift
import (
"github.com/jezek/xgb"
"github.com/jezek/xgb/randr"
"github.com/jezek/xgb/xproto"
)
// ColorRamp calculates the gamma ramp with the specified parameters. Use a
// value of 1 for the white values for the default ramp.
#!/bin/sh
set -eu
encode_integer() {
local value=$1
printf "0x10 0x%08X" $((value&0xFFFFFFFF))
}
encode_dimen() {
# https://android.googlesource.com/platform/frameworks/base/+/master/core/java/android/util/TypedValue.java

setup

mkdir /opt/rsync-backup
cd /opt/rsync-backup
go mod init rsync-backup
go mod tidy
go build .
mkdir -p /etc/sysusers.d /etc/tmpfiles.d
ln -sf /opt/rsync-backup/rsync-backup.sysusers /etc/sysusers.d/rsync-backup.conf
@pgaskin
pgaskin / htoprc
Last active October 30, 2023 06:57
# Beware! This file is rewritten by htop when settings are changed in the interface.
# The parser is also very primitive, and not human-friendly.
htop_version=3.2.2
config_reader_min_version=3
fields=0 48 38 39 119 40 2 46 47 49 1
hide_kernel_threads=1
hide_userland_threads=1
hide_running_in_container=0
shadow_other_users=0
show_thread_names=0
#!/bin/bash
set -euo pipefail
cd "$(dirname "$0")"
if [[ $# -ne 1 ]] && [[ $# -ne 2 ]]; then
echo "usage: $0 fw [old_fw]"
exit 2
fi
test -f ~/kp/v/$1/nickel
@pgaskin
pgaskin / phyphox.py
Created April 14, 2023 05:53
Python client for getting data from the Phyphox remote access server.
#!/usr/bin/env python3
import itertools
import json
import math
import socket
import time
import urllib.error
import urllib.request
import urllib.parse
<# ::
@@ start "" powershell -WindowStyle Hidden -NoProfile -ExecutionPolicy Bypass -Command "Invoke-Expression (Get-Content -Raw '%~f0')"
#>
$ErrorActionPreference = "Stop"
try {
Add-Type -Language CSharp -ReferencedAssemblies $("System.Windows.Forms", "System.Drawing") @"
using System;
using System.Drawing;
using System.Reflection;