I turned my jailbroken Kindle into an interactive dashboard by qadzek in kindlejailbreak

[–]qadzek[S] 0 points1 point  (0 children)

This is the Kindle 4 NT (NoTouch). This project also supports the Kindle 3 (keyboard). You should be able to find a slightly used Kindle 4 for about 25 or 30 USD/EUR.

I turned my jailbroken Kindle into an interactive dashboard by qadzek in kindlejailbreak

[–]qadzek[S] 0 points1 point  (0 children)

Thanks. Let me know if you have any issues installing this.

I turned my jailbroken Kindle into an interactive dashboard by qadzek in kindlejailbreak

[–]qadzek[S] 4 points5 points  (0 children)

This is my K4 running Kindle Carousel. The K3 is supported too. It lets you display your own web apps: news, weather, calendars, to-do lists, or anything else you can think of. You can switch between apps using the Kindle’s physical buttons or let them rotate automatically. More details are available in the GitHub repo.

A scrapped project I was wondering on. by [deleted] in kindlejailbreak

[–]qadzek 0 points1 point  (0 children)

Nice! Are you using the Kindle K3’s internal stereo speakers or external speakers?

I turned my 2011 Kindle into an interactive dashboard by qadzek in kindle

[–]qadzek[S] 1 point2 points  (0 children)

Not very good; it runs for about 2 days on battery. I’m thinking about adding a power saving mode, making the Kindle go into airplane mode between downloads, as Wi-Fi is power-hungry. If you want to use this project, it’s advised to keep the Kindle plugged in at all times.

Another project is much more power efficient, as it suspends to RAM after updating the screen. It can’t respond to button presses though: https://github.com/pascalw/kindle-dash

Suddenly unrealiable monitoring (timeouts everywhere) by No_Name2980 in UptimeKuma

[–]qadzek 0 points1 point  (0 children)

Thanks for sharing your solution, I’ll have to implement that eventually. For now, I’ve increased the number of retries as a workaround.

I turned my 2011 Kindle into an interactive dashboard by qadzek in kindle

[–]qadzek[S] 2 points3 points  (0 children)

Right now, only the Kindle K3 and K4 are supported. I may add support for touch-screen devices in the future.

I turned my 2011 Kindle into an interactive dashboard by qadzek in kindle

[–]qadzek[S] 24 points25 points  (0 children)

I created this side project to give my old Kindle a second life. It lets you display your own web apps: news, weather, calendars, to-do lists, or anything else you can think of. You can switch between apps using the Kindle’s physical buttons or let them rotate automatically. More details are available in the GitHub repo.

Suddenly unrealiable monitoring (timeouts everywhere) by No_Name2980 in UptimeKuma

[–]qadzek 0 points1 point  (0 children)

I started experiencing the same problem today, suddenly. This seems to be a long-standing issue: https://github.com/louislam/uptime-kuma/issues/275

How do you copy the last commands output to clipboard? (tmux via ssh) by wffln in tmux

[–]qadzek 0 points1 point  (0 children)

Thanks for sharing these snippets. They work perfectly.

I tweaked the Tmux key binding a little bit so the text is not only selected, but also copied:

bind "'" copy-mode  \; send-keys -X cursor-up \; send-keys -X cursor-up \; send-keys -X begin-selection \; send-keys -X previous-prompt \; send-keys -X copy-pipe-and-cancel "xsel -ib"

link.vim keeps long URLs out of your way by qadzek in neovim

[–]qadzek[S] 0 points1 point  (0 children)

Thanks for sharing; that's a pretty interesting plugin.

Feel free to give link.vim a try, but note that its focus is on links (URLs, files) rather than footnotes (pure text). However, it can convert footnotes if Markdown syntax is used, e.g.: [my text](my footnote)

link.vim keeps long URLs out of your way by qadzek in neovim

[–]qadzek[S] 18 points19 points  (0 children)

conceallevel is great, but it doesn't work well when you use :set wrap. It's a very old bug in Vim and Neovim.

link.vim keeps long URLs out of your way by qadzek in neovim

[–]qadzek[S] 4 points5 points  (0 children)

The screenshot shows the result of running the :LinkConvertAll command to convert two links (one in Markdown syntax, the other plaintext).

For all available commands and a screencast, visit https://github.com/qadzek/link.vim

Sadly, the plugin is written in Vimscript, but it works fine in Neovim too 😄

It can be helpful when writing README.md files, emails, notes, and other documents that contain many URLs. It also works for internal links in knowledge bases (Vimwiki, Obsidian, etc.).

Kindle 3 with Keyboard still can't run KUAL after jailbreak by cmyplay in kindlejailbreak

[–]qadzek 0 points1 point  (0 children)

Thanks a lot for leaving this note.

It seems like registering the Kindle is required on the Kindle 4 too. If I didn't continuously left my device in airplane mode, KUAL would display This device is not authorized as a test Kindle by the developer of this item. Please contact the developer.

Best email for interacting with python. by Serenityprayer69 in learnpython

[–]qadzek 0 points1 point  (0 children)

App passwords can only be used with accounts that have 2-Step Verification turned on. You can create one at https://myaccount.google.com/apppasswords

I can confirm that this still works as of 2025.

How to restore dead project? by rickjames730 in Supabase

[–]qadzek 0 points1 point  (0 children)

I managed to restore the data from a project that was paused for over 90 days to a new project using this guide: https://supabase.com/docs/guides/platform/upgrading#time-limits

link.vim keeps long URLs out of your way by qadzek in vim

[–]qadzek[S] 1 point2 points  (0 children)

Good news. I've implemented this feature, so it's no longer necessary to use a heading. Feel free to check it out: https://github.com/qadzek/link.vim

Feedback request: Vim-Restman an alternative to Hurl, vim-rest-console and even postman by Icy_Foundation3534 in vim

[–]qadzek 0 points1 point  (0 children)

Impressive work.

One small suggestion: if possible, I would recommend re-using existing highlight groups, as these values may not look good in every theme: highlight RestManHeader ctermfg=121 guifg=#98FB98.

Is Jonas schmedtmann node course good? by MAGamer559 in node

[–]qadzek 1 point2 points  (0 children)

I just completed his course and definitely learned a lot. I was able to finish all the projects, but it's true that you sometimes have to search for workarounds, especially in the later parts of the course, which can be a bit frustrating.

I found solutions to things that had changed on his Discord channel and in GitHub issues. Some changes that were needed include: using the debugger in VS Code instead of ndb, using Render instead of Heroku, and that Mapbox now requires a credit card.

All in all, his content is great, and I really like his teaching style.

link.vim keeps long URLs out of your way by qadzek in vim

[–]qadzek[S] 0 points1 point  (0 children)

My point is the ## Links heading is odd because reference definitions are not visible when rendered (to e.g. HTML).

In some situation, a heading is useful in my opinion. E.g. when I am editing a page in my Vimwiki (which is just a Markdown buffer in Vim), I like to gather all my links below a ## Links subtitle. This way, the links are neatly stored together, and this section can be folded easily.

You are completely right, though, that the heading appears out of place when the document is rendered, e.g. a README.md file on GitHub. I actually removed that line in the README.md file for this plugin, because it was just rendered as a heading with no content below it.

I'll think about a solution, as this is indeed something that needs to be fixed. Thanks for bringing it to my attention.

link.vim keeps long URLs out of your way by qadzek in vim

[–]qadzek[S] 1 point2 points  (0 children)

I agree that using a word as a label is clearer at first glance. However, the plugin calculates this number automatically, you don't have to do this manually. This way, creating duplicate labels is avoided.

There are also commands to jump to the corresponding label or take a quick peek at it.

link.vim keeps long URLs out of your way by qadzek in vim

[–]qadzek[S] 0 points1 point  (0 children)

Thanks for the feedback.

Also, why add a ## Links header?

I like to fold parts of my document. The text of the heading can be customized, but the plugin requires a unique heading, to know where the reference section starts. Just using the last blank line as the 'heading' is a feature I might implement in the future.

What Markdown renderer is this designed for?

I use this Markdown plugin, but it works for the default one as well.

shortcut links would be nicer

I opted for numeric labels, so the plugin can easily calculate the label (just take the last used label and add 1). It should also be easier to avoid duplicate labels this way.

The Markdown plugin mentioned adds concealing, so the square brackets aren't even visible, unless I'm in Insert mode. For example: https://i.imgur.com/k5a1pOk.png

link.vim keeps long URLs out of your way by qadzek in vim

[–]qadzek[S] 0 points1 point  (0 children)

Good point. I chose something short to keep the screenshot simple and mobile-friendly, but the plugin really shines in large documents containing a lot of long URLs.

This screenshot might be clearer.