aboutsummaryrefslogtreecommitdiff
path: root/research/readers.md
diff options
context:
space:
mode:
Diffstat (limited to 'research/readers.md')
-rw-r--r--research/readers.md45
1 files changed, 45 insertions, 0 deletions
diff --git a/research/readers.md b/research/readers.md
new file mode 100644
index 0000000..15375a2
--- /dev/null
+++ b/research/readers.md
@@ -0,0 +1,45 @@
+[[!meta title="Leitores - eReaders"]]
+[[!tag leitura hardware pesquisa gadget]]
+
+Candidato: Kobo.
+
+* [fread is coming](https://fread.ink/).
+* [MobileRead Wiki - Debian Linux on a Kobo](https://wiki.mobileread.com/wiki/Debian_Linux_on_a_Kobo).
+* [Ask HN: Cheap, hackable e-reader? | Hacker News](https://news.ycombinator.com/item?id=13863046).
+
+Kobo
+----
+
+* [Kobo Brasil - Google+](https://plus.google.com/communities/112084021543948580071).
+* [Graham King » Kobo eReader Touch on Ubuntu Linux](https://www.darkcoding.net/misc/kobo-ereader-touch-on-ubuntu-linux/).
+* [Kobo Aura H2O - Rakuten Kobo eReader Store](https://gl.kobobooks.com/products/kobo-aura-h2o).
+* [Kobo e-reader](https://en.wikipedia.org/wiki/Kobo_eReader).
+* [Code](https://github.com/kobolabs/Kobo-Reader).
+
+## Customizing
+
+* [KOReader Community · GitHub](https://github.com/koreader): [Installation on Kobo devices · koreader/koreader Wiki · GitHub](https://github.com/koreader/koreader/wiki/Installation-on-Kobo-devices).
+
+### Hacking
+
+* [Kobo Start Menu 08 - MobileRead Forums](https://www.mobileread.com/forums/showthread.php?t=266821).
+* [Hacking the fnacbook (aka. Kobo by Fnac) - a3nm's blog](https://a3nm.net/blog/fnacbook_kobo_hacking.html).
+* [Even more Kobo hacking - a3nm's blog](https://a3nm.net/blog/kobo_glo_hacking.html).
+* [MobileRead Wiki - Kobo Touch Hacking](https://wiki.mobileread.com/wiki/Kobo_Touch_Hacking).
+* [Hacking / Customizing a Kobo Touch ebook reader: Part I, sqlite (Shallow Thoughts)](http://shallowsky.com/blog/tech/kobo-hacking.html).
+* [Offline Wikipedia on Kobo (Guide) - MobileRead Forums](https://www.mobileread.com/forums/showthread.php?t=276219).
+* [KoboStuff](https://geek1011.github.io/KoboStuff/).
+
+### Sincronização
+
+A partir de uma cópia completa do acervo:
+
+ storage="/path/to/complete/doc/repos"
+ sudo rsync --size-only -avL --no-p --no-g --no-owner --delete-after --ignore-errors \
+ --include='*/' --include='*.pdf' --include='*.epub' --include='*.mobi' --exclude='*' \
+ $storage/books/ /media/tablet/books/
+
+Notar que usamos:
+
+* `--size-only` para fazer uma comparação simples de tamanho dos arquivos (é seguro porque assumimos que são obras autoradas/fechadas) e copiar mais rápido, além de evitar a cópia completa por conta de `-L`.
+* `--ignore-errors` por conta de possíveis ligações simbólicas mortas de arquivos do git-annex que não estejam na cópia de trabalho.