Jira: [XXX-XXXX](link to issue)
Describe the problem and what is to be achieved with this pull request...
- Bug Fix
- New Feature
{ | |
"header": { | |
"version": "2.1.0", | |
"mc_version": "1.16.5", | |
"name": "Copy 6", | |
"author": "iFunkyMunky", | |
"bounding_box": { | |
"min_x": 0, | |
"min_y": 0, | |
"min_z": 0, |
<#PSScriptInfo | |
.VERSION 1.0.1 | |
.GUID ea95d532-3b54-48b0-97ef-45f16237e277 | |
.AUTHOR Colin Cogle | |
.COPYRIGHT (c) 2021 Colin Cogle. All Rights Reserved. Licensed under the AGPLv3. | |
.TAGS Microsoft, screwed, up, again, 2104, Office, 2016, 2019, Current Channel, Outlook, bug, email, M365, update, devops-fail | |
.LICENSEURI https://www.gnu.org/licenses/agpl-3.0.en.html | |
.PROJECTURI https://gist.github.com/rhymeswithmogul/f6d5c37ed3058802e9cb94e637e989c9 | |
.RELEASENOTES Documentation updates, link to PowerShell Gallery, remove swearing for broader public release. | |
#> |
syntax on | |
call plug#begin('~/.vim/plugged') | |
Plug 'scrooloose/nerdtree' " file list | |
Plug 'majutsushi/tagbar' " show tags in a bar (functions etc) for easy browsing | |
Plug 'vim-airline/vim-airline' " make statusline awesome | |
Plug 'vim-airline/vim-airline-themes' " themes for statusline | |
Plug 'jonathanfilip/vim-lucius' " nice white colortheme | |
Plug 'davidhalter/jedi-vim' " jedi for python |
#!/bin/bash | |
#### Restart Bluetooth | |
if [ "$1" == "resetBT" ] ; then | |
sudo rfkill block bluetooth && sleep 0.1 && sudo rfkill unblock bluetooth; | |
exit; | |
fi; | |
#### Toggle listen/speak | |
if [ "$1" == "" -o "$1" == "toggle" ] ; then |
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.
def add_check_digit(upc_str): | |
""" | |
Returns a 12 digit upc-a string from an 11-digit upc-a string by adding | |
a check digit | |
>>> add_check_digit('02345600007') | |
'023456000073' | |
>>> add_check_digit('21234567899') | |
'212345678992' | |
>>> add_check_digit('04210000526') |
def upca_to_upce(upca): | |
""" | |
Takes a upc-a code (12 digits), including check digit, | |
as a string and returns upc-e representation. | |
UPC-E representation will be eight digits, including check digit | |
Returns None if no upc-e representation is possible | |
Rules from http://mdn.morovia.com/kb/UPCE-Specification-10634.html | |