- 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.
CONTENTFUL_MANAGEMENT_TOKEN= | |
CONTENTFUL_EXTENSION_ID= | |
CONTENTFUL_ORGANIZATION_ID= | |
CONTENTFUL_SPACE_ID= | |
CONTENTFUL_ENVIRONMENT_ID= |
term=screen-256color | |
font=Fira Code,Noto Color Emoji:size=8 | |
[cursor] | |
style=underline | |
# Solarized light | |
[cursor] | |
color=fdf6e3 586e75 |
#!/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 "{ |
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.
The only way I could find to unclutter the UI. There is still a bottom dead bar, this will make it better.
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 |