This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* last updated for ff 134 */ | |
/* toolkit.legacyUserProfileCustomizations.stylesheets = true */ | |
/* compact mode: | |
browser.compactmode.show = true | |
extensions.activeThemeID = [email protected] | |
browser.uidensity = 1 | |
browser.tabs.inTitlebar = 0 | |
*/ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package jsonx | |
import ( | |
"strconv" | |
"unicode/utf8" | |
) | |
// AppendKey appends a JSON key to an object, adding a comma if necessary. | |
func AppendKey(e []byte, k string) []byte { | |
if len(e) == 0 { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
for x in /data/android/lineage/vendor/google/caiman/proprietary/product/etc/CarrierSettings/*_ca.pb; do protoc -I ~/src/apnstuff/android14-qpr3-release/ ~/src/apnstuff/android14-qpr3-release/carrier_settings.proto --decode com.google.carrier.CarrierSettings < $x > $(basename $x | sed s/.pb/.txt/g); done | |
protoc -I ~/src/apnstuff/android14-qpr3-release/ ~/src/apnstuff/android14-qpr3-release/carrier_list.proto --decode com.google.carrier.CarrierList < /data/android/lineage/vendor/google/caiman/proprietary/product/etc/CarrierSettings/carrier_list.pb > x_carrier_list.txt |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
set -euo pipefail | |
process() { | |
local adb_addr pair_code pair_addr vars="$( | |
set -euo pipefail | |
magick "$1" -white-threshold 30% -black-threshold 20% PNG:- | | |
tesseract --psm 3 stdin stdout | | |
sed -E 's/^\w\s//' | | |
tr '\n' '#' | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package main | |
import ( | |
"encoding/hex" | |
"net" | |
"os" | |
"golang.org/x/sys/unix" | |
) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/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" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#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); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* ==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) { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/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 |
NewerOlder