Live data from Hacker News

Jailbroke my Kindle to use it as an e-ink monitor

gist.github.com

101–110 of 145 posts

Re: Jailbroke my Kindle to use it as an e-ink monitor

#101
post #23
post #16

Earlier quoted context omitted.

I should stop writing code in files like /tmp/x.go no matter how throwaway I think the code might be. I still have the linux/armv7 binary if anyone wants it lol.

Oh man, apparently I'm not alone in using /tmp/ as my storage space. I like it because it's self-cleaning!

I present you my most used shell function:

    cdtmp() {
        cd $(mktemp -d)
    }

Re: Jailbroke my Kindle to use it as an e-ink monitor

#102
post #84
post #23

Earlier quoted context omitted.

Oh man, apparently I'm not alone in using /tmp/ as my storage space. I like it because it's self-cleaning!

You know what else is self-cleaning? /dev/shm The advantage being that it does not even touch the disk.

One can use tmpfs for /tmp as well (and I do it).

Re: Jailbroke my Kindle to use it as an e-ink monitor

#103
post #101
post #23

Earlier quoted context omitted.

Oh man, apparently I'm not alone in using /tmp/ as my storage space. I like it because it's self-cleaning!

I present you my most used shell function: cdtmp() { cd $(mktemp -d) }

That's fantastic, thanks! I always used to do this by hand. Though one downside is that the name is random, and it's hard to go back if you CD out. I might use diceware to make a memorable random name.

Re: Jailbroke my Kindle to use it as an e-ink monitor

#104

Earlier quoted context omitted.

You can always use a clip-on book light, or other external light source. https://accessorytosuccess.com/blogs/tools/best-book-light-r... >

Every light in your link advertises (!) its multiple brightness and color settings. That makes for absolutely awful usability. I purchased a light like that, and it's terrible. Give me an actual booklight where the settings are "on" and "off". (Bizarrely, the light settings on a Kindle Oasis are barely better - since the light is controlled by an internal menu, as opposed to a hardware control, it can't be operated u…

How about a white book light with a piece of orange/yellow plastic over it (like a stage lighting gel).

Re: Jailbroke my Kindle to use it as an e-ink monitor

#105
post #16

Earlier quoted context omitted.

Followed up with "but it was pretty simple, like under 30 lines" So simple in fact, that it wasn't quickly rewritten and added to GitHub...

I should stop writing code in files like /tmp/x.go no matter how throwaway I think the code might be. I still have the linux/armv7 binary if anyone wants it lol.

I'm team /home/user/Downloads/tmp

Re: Jailbroke my Kindle to use it as an e-ink monitor

#106
post #101

Earlier quoted context omitted.

I present you my most used shell function: cdtmp() { cd $(mktemp -d) }

That's fantastic, thanks! I always used to do this by hand. Though one downside is that the name is random, and it's hard to go back if you CD out. I might use diceware to make a memorable random name.

I agree that sometimes that is a problem, so I find out the latest tmp directory with ls -tr /tmp | tail. But using nicer names would help with that.

So I took your tip and now I have

    cdtmp() {
        local name
        name=/tmp/$(diceware --no-caps -d - -n 2)
        mkdir $name && cd $name
    }
I decided not to worry about the directory existing already, or of the other checks mktemp -d would do for me in my single-user system.. I suppose mktemp -d -t cdtmpXXX would work almost as well. Thanks for the idea!

Re: Jailbroke my Kindle to use it as an e-ink monitor

#109

Earlier quoted context omitted.

Be the change you want to see in the world. In the time you spent complaining about it here you could have made such a resource. Don't ask the Internet in general to do it for you.

No, I could not have, because I don't own a Kindle nor do I have any way of exercising the instructions. I'm just calling out that this is an asinine delivery format.

If you don't have a Kindle, why do you care where Kindle owners keep their technical information about Kindles?

Re: Jailbroke my Kindle to use it as an e-ink monitor

#110
post #9
post #4

This would be far more interesting if you shared how, and did it on a platform that wasn't meant for short form content.

Writing a quick Github gist, sorry haha, I'll post a link here in a few minutes. Edit: https://gist.github.com/adtac/eb639d3c707b55a28f0ee9a420aa7e...

Can it cause my Kindle to get bricked?
Post reply on HN