The only way I could find to unclutter the UI. There is still a bottom dead bar, this will make it better.
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
CompileFlags: | |
CompilationDatabase: compile_commands.json | |
Add: [-x, c, -std=c23] | |
Diagnostics: | |
ClangTidy: | |
Add: [modernize-*, bugprone-*, llvm-*, performance-*, readability-*] | |
CheckOptions: | |
readability-identifier-naming.ConstantCase: UPPER_CASE | |
readability-identifier-naming.ConstexprVariableCase: UPPER_CASE | |
readability-identifier-naming.EnumConstantCase: UPPER_CASE |
- Rooted Kindle
- ADB/USB debug enabled on your kindle
- ADB installed on your compuer
Follow the procedure here to root your Kindle. As a side effect you should also have ADB properly setup.
Just in case, here's an archived version of the same guide.
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 | |
OPENAI_API_KEY="YOUR_API_KEY" | |
CONVERSATION="/tmp/$(cat /proc/sys/kernel/random/uuid)" | |
query_open_ai() { | |
curl -s https://api.openai.com/v1/chat/completions \ | |
-H "Content-Type: application/json" \ | |
-H "Authorization: Bearer $OPENAI_API_KEY" \ | |
-d "{ |
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
term=screen-256color | |
font=Fira Code,Noto Color Emoji:size=8 | |
[cursor] | |
style=underline | |
# Solarized light | |
[cursor] | |
color=fdf6e3 586e75 |
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
CONTENTFUL_MANAGEMENT_TOKEN= | |
CONTENTFUL_EXTENSION_ID= | |
CONTENTFUL_ORGANIZATION_ID= | |
CONTENTFUL_SPACE_ID= | |
CONTENTFUL_ENVIRONMENT_ID= |
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 | |
# CONSTANTS | |
readonly MIDI_DEVICE_NAME=GarageKey | |
# VARIABLES | |
midi_device_port= | |
qsynth_port= | |
# FUNCTIONS |
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 | |
# CONFIGURATION | |
readonly SCRIPT="$(basename $0)" | |
readonly APP_NAME=$1 | |
readonly TIMEOUT=.5 | |
# FILES | |
readonly GITIGNORE=""" | |
node_modules |
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 | |
DATE_HASH=$(date '+%Y%m%d%H%M%S') | |
DEFAULT_LOCATION="$HOME/recording-$DATE_HASH.wav" | |
printf "\e[1mCreating loopback devices...\e[0m\n\n" | |
sudo modprobe snd-aloop | |
RAW_LOOPBACK_DEVICES=$(aplay -l | grep Loopback | sed -E "s/card\s([0-9]+).*device\s([0-9]*).*/hw:\1,\2/g" -) |
NewerOlder