- https://superuser.com/questions/317900/is-there-any-way-to-eliminate-the-macbook-pro-capslock-delay
- https://karabiner-elements.pqrs.org/docs/help/how-to/disable-caps-lock-delay/
- http://web.archive.org/web/20150115033359/http://support.apple.com/en-us/HT201509
- https://superuser.com/questions/317900/is-there-any-way-to-eliminate-the-macbook-pro-capslock-delay/1858081#1858081
- https://apple.stackexchange.com/questions/81234/linux-on-mac-hardware-how-to-remove-caps-lock-delay-on-apple-macbook-pro-alumin
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
artist/illustrated by: Rich Tennant |
https://discussion.fedoraproject.org/t/how-i-can-switch-from-wayland-to-x11/155043
apparently fedora may not even have a supported recipe to get it done
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
From d3ea9a6f494d6c895d5d6c1eaea04d3d23c30847 Mon Sep 17 00:00:00 2001 | |
From: =?UTF-8?q?Micha=C5=82=20Chojnowski?= <[email protected]> | |
Date: Tue, 15 Apr 2025 15:45:51 +0200 | |
Subject: [PATCH] logalloc tracepoints | |
--- | |
row_cache.cc | 12 ++++++++- | |
utils/logalloc.cc | 65 ++++++++++++++++++++++++++++++++++++++++++++++- | |
utils/lru.hh | 3 +-- | |
3 files changed, 76 insertions(+), 4 deletions(-) |
SELECT DISTINCT
"line_item_product_code"
, "bill_billing_period_start_date"
, "bill_payer_account_id"
, "product_product_name"
, "line_item_line_item_type"
, "line_item_operation"
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
#!/usr/bin/env bash | |
# Map Caps Lock key to Left Control key | |
# https://developer.apple.com/library/content/technotes/tn2450/_index.html | |
# This doesnt work. Reverts on restart | |
# hidutil property --set '{"UserKeyMapping":[{"HIDKeyboardModifierMappingSrc":0x700000039,"HIDKeyboardModifierMappingDst":0x7000000E0}]}' | |
# References: | |
# https://github.com/mathiasbynens/dotfiles/issues/310 | |
# https://gist.github.com/scottstanfield/0f8ce63271bebfb5cf2bb91e72c71f91 | |
# The last link didnt work for me on Sierra or High Sierra. I could not find IOHIDKeyboard but |
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
"don't write code that is easy to extend, write code that is easy to delete" |
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 | |
#Recover from an Audacity 2.0 crash by reassembling the saved data files | |
#Based on https://gist.github.com/912222 | |
if [ $# != 2 ]; then | |
echo "ERROR: Not enough arguments" | |
echo "$0 [SOURCE PATH] [DESTINATION]" | |
exit 1 | |
fi |
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
// recover from audacity crash | |
// usage: | |
// node audacity_rescue.js [sourcedir] [result_file.wav] [mono|stereo] | |
// the mono or stereo option is optional, the default is mono. | |
// | |
// Description: | |
// This script will sort all files on modification date. | |
// If you create a backup, make sure you use `cp -a` to preserve the modification date | |
// or create a zip. |
NewerOlder