Label | Description | Color |
---|---|---|
accessibility | a11y | #0052cc |
benchmark | We can't optimize what we can't measure. | #FADDE6 |
blog | Related to blog content or publication. | #0DD1CE |
breaking change | Introduces changes that are not backward compatible. | #A33CD6 |
browser: Edge | Affects or fixes behavior in Microsoft Edge. | #68522D |
browser: Firefox | Affects or fixes behavior in Mozilla Firefox. | #68522D |
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 to 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.
This file contains hidden or 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
# Based on https://deanandrews.uk/export-woocommerce-reviews-wordpress/ but enhanced to include the rating and filter out other comments. | |
``` | |
SELECT `post_title` AS 'Product', `comment_author` AS 'Customer Name', `comment_author_email` AS 'Customer Email', `comment_date`, `comment_content` AS 'Review', `wp_commentmeta`.`meta_value` AS 'Rating' | |
FROM `wp_comments` | |
INNER JOIN `wp_posts` ON `comment_post_ID`=`ID` | |
INNER JOIN `wp_commentmeta` ON `wp_commentmeta`.`comment_id`=`wp_comments`.`comment_ID` | |
WHERE `comment_author` != 'WooCommerce' | |
AND `wp_posts`.`post_type` = 'product' | |
AND `wp_posts`.`post_status` = 'publish' |
This file contains hidden or 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
@-moz-document url-prefix("https://www.linkedin.com/") { | |
/** Picture **/ | |
.pv-top-card__non-self-photo-wrapper, .pv-top-card__photo-wrapper { | |
filter: blur(1.5rem); | |
} | |
/** Links to profile **/ | |
a[href^="/in/"], a[href^="https://www.linkedin.com/in/"] { | |
filter: blur(1rem); | |
} | |
/** Name **/ |
This file contains hidden or 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
module.exports = require('@material-ui/styled-engine-sc'); |
This file contains hidden or 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
import warning from 'warning' | |
const times = new Map() | |
const implementations = { | |
mark: { | |
start: name => { | |
times.set(name, performance.now()) | |
performance.mark(`metric_${name}_start`) | |
}, |
This file contains hidden or 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
import { deepmerge } from '@material-ui/utils'; | |
import { createMuiTheme } from '@material-ui/core/styles'; | |
import grey from '@material-ui/core/colors/grey'; | |
const rawTheme = createMuiTheme({ | |
palette: { | |
primary: { | |
main: '#1976d2', | |
dark: '#0052cc', | |
}, |
This file contains hidden or 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
import { deepmerge } from '@material-ui/utils' | |
import { createMuiTheme } from '@material-ui/core/styles' | |
import grey from '@material-ui/core/colors/grey' | |
const basicBlue = '#0052cc' // Nathan's blue #0b24fb | |
const rawTheme = createMuiTheme({ | |
palette: { | |
primary: { | |
main: basicBlue, |
diff --git a/yarn.lock b/yarn.lock
index fb57ccd..e24ce4a 100644
--- a/yarn.lock
+++ b/yarn.lock
@@ -2,3 +2,276 @@
# yarn lockfile v1
+"@babel/runtime@^7.3.1", "@babel/runtime@^7.4.4", "@babel/runtime@^7.5.5", "@babel/runtime@^7.8.3", "@babel/runtime@^7.8.7":
NewerOlder