-
Hacking the Kobo Clara HD – 3: Gaining root telnet access
Last time, we dipped our toes into the waters of the Kobo Clara HD's USB interface. As it turns out, there is a lot more we can do with this simple interface. The Clara HD runs Linux, and we can easily gain root telnet… »
-
Hacking the Kobo Clara HD – 2: Bypassing registration/sign in
Last time, we imaged the internal storage of the Kobo Clara HD (and possibly expanded the internal storage capacity). Now we can begin setting up the device. We soon find, however, that the Clara HD requires us to log in with a Kobo account.… »
-
Hacking the Kobo Clara HD – 1: Hacking the internal microSD storage
Introduction
The Kobo Clara HD is the latest e-reader from Canadian ebook vendor Rakuten Kobo, sporting a 6-inch 300 ppi e-ink touchscreen, and 8 GB of internal memory.
The Clara HD, like its predecessors in the Kobo range, internally runs Linux, and is surprisingly amenable… »
-
Guide: Using Okta Verify with third-party TOTP (Google Authenticator, FreeOTP, etc.)
Okta is an identity management and single sign-on cloud provider. Okta supports multi-factor authentication through multiple mechanisms, but at my site, only the proprietary Okta Verify smartphone app was supported.
Thankfully, Okta Verify operates via the ‘industry standard Time-Based, One-Time Password Algorithm (TOTP)’,… »
-
LibreOffice custom “Set numbering”/“Restart numbering from” macro
Sub RestartNumbering Dim cursor As Object cursor = ThisComponent.CurrentController.ViewCursor Dim startFrom As Integer startFrom = CInt(InputBox("Restart numbering from:")) cursor.NumberingStartValue = startFrom End Sub