resnap takes a snapshot of the current display on the reMarkable. It copies '/dev/fb0' from the reMarkable to the host machine and uses ImageMagick to convert to an image.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var E_PREFIX_RATE = 0.25; | |
// All of our word lists: | |
var _word_lists = { | |
verb : [ | |
"implement", "utilize", "integrate", "streamline", "optimize", "evolve", "transform", "embrace", | |
"enable", "orchestrate", "leverage", "reinvent", "aggregate", "architect", "enhance", "incentivize", | |
"morph", "empower", "envisioneer", "monetize", "harness", "facilitate", "seize", "disintermediate", |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
##################### client ########################### | |
# sends a single one-line command | |
import socket | |
import time | |
import sys | |
# Create a UDS socket | |
sock = socket.socket(socket.AF_UNIX, socket.SOCK_STREAM) |
Welcome to the reHackable scripts wiki!
The reHackable scripts repository provides a set of bash scripts primarily aimed to increase productivity for Linux and OSX enthusiasts that own a reMarkable tablet.
The repository provides a broad range of scripts, ranging from simple patchers meant to fix obnoxious little flaws, all the way to push and pull scripts that can transfer documents from- and to the reMarkable from the bash command line.
Host scripts are meant to be executed on the host device and will frequently require a connection the device either locally via USB, or wirelessly via SSH.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
``` python | |
print('hi') | |
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Evan Widloski - 2018-11-05 | |
import ldap # this is python-ldap | |
import sys | |
import ldif | |
from ldap import modlist as modlist | |
import pprint | |
# set debugging level | |
ldap.set_option(ldap.OPT_DEBUG_LEVEL, 1) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python | |
# Evan Widloski - 2018-11-02 | |
# Auto answer any call and play a prerecorded message | |
from __future__ import print_function | |
from twisted.internet import protocol | |
from twisted.internet import reactor | |
import time | |
import re |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/env python3 | |
# Evan Widloski - 2018-04-11 | |
# keepass decrypt experimentation | |
# only works on AES encrypted database with unprotected entries | |
# Useful reference: https://gist.github.com/msmuenchen/9318327 | |
# https://framagit.org/okhin/pygcrypt/#use | |
# https://github.com/libkeepass/libkeepass/tree/master/libkeepass | |
import struct |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Evan Widloski - 2018-04-18 | |
# Neomutt Monokai Theme | |
#---------- Colors ---------- | |
set my_background = "color234" | |
set my_gray = "color245" | |
set my_magenta = "color198" | |
set my_brightmagenta = "brightcolor198" | |
set my_green = "color112" | |
set my_brightgreen = "brightcolor112" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- a/package/Config.in | |
+++ b/package/Config.in | |
@@ -756,6 +756,7 @@ menu "External python modules" | |
source "package/python-docutils/Config.in" | |
source "package/python-dominate/Config.in" | |
source "package/python-dpkt/Config.in" | |
source "package/python-ecdsa/Config.in" | |
source "package/python-engineio/Config.in" | |
source "package/python-enum/Config.in" | |
@@ -765,6 +766,7 @@ menu "External python modules" |
NewerOlder