Button | Function | IR Code |
---|---|---|
Power | Power button and save settings | 0x1FE817E |
Menu | Cycle to Next Output Resolution | 0x1FEC13E |
Home | Cycle to Next Input | 0x1FECE31 |
Up Arrow | Shift Image Up (1080p over) | 0x1FE1CE3 |
Down Arrow | Shift Image Down (1080p over) | 0x1FE02FD |
Left Arrow | Previous OSD option | 0x1FEEC13 |
Right Arrow | Next OSD option | 0x1FE9C63 |
OK | Cycle through items within option | 0x1FEC837 |
- Use
pass2csv
to export generic csv - Add header
folder,name,password,comments
to first line of that csv file - Use the script to convert file
- Import password with "Bitwarden (csv)" format
Remeber to delete your csv file safely once it's imported!
Past August 2024, Authy stopped supported the desktop version of their apps:
See Authy is shutting down its desktop app | The 2FA app Authy will only be available on Android and iOS starting in August for details.
And indeed, after a while, Authy changed something in their backend which now prevents the old desktop app from logging in. If you are already logged in, then you are in luck, and you can follow the instructions below to export your tokens.
If you are not logged in anymore, but can find a backup of the necessary files, then restore those files, and re-install Authy 2.2.3 following the instructions below, and it should work as expected.
#only dependency is pillow, just run "pip install pillow" | |
#tested on python 3.6 and 2.7 | |
from PIL import Image | |
mode = ["Normal", "Twitter"][1] #0 = Normal, 1 = Twitter (add clear pixel) | |
number = "0001" #change to screenshot number | |
drive = "E:" #change to SD card drive | |
path = drive + "/luma/screenshots/" | |
if mode == "Normal": #400x240 + 320x240, black background |
More details - http://blog.gbaman.info/?p=791
For this method, alongside your Pi Zero, MicroUSB cable and MicroSD card, only an additional computer is required, which can be running Windows (with Bonjour, iTunes or Quicktime installed), Mac OS or Linux (with Avahi Daemon installed, for example Ubuntu has it built in).
1. Flash Raspbian Jessie full or Raspbian Jessie Lite onto the SD card.
2. Once Raspbian is flashed, open up the boot partition (in Windows Explorer, Finder etc) and add to the bottom of the config.txt
file dtoverlay=dwc2
on a new line, then save the file.
3. If using a recent release of Jessie (Dec 2016 onwards), then create a new file simply called ssh
in the SD card as well. By default SSH i
Movement: | |
j, k down, up | |
h, l left, right (in some contexts) | |
space page down | |
pg up/down page up/down | |
arrows up, down, left, right |
// Conditionally Load jQuery (javascript) | |
// Source: https://gist.github.com/gists/902090/ | |
var init, maybeLoadJq; | |
init = function() { | |
jQuery(document).ready(function() { | |
alert('Your Code Here'); | |
}); | |
}; |