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
#!/usr/bin/env python3 | |
import secrets | |
import string | |
import argparse | |
def gen_pass(length, symbols=None, no_numbers=False, no_upper=False): | |
alphabet = string.ascii_letters | |
if no_upper: | |
alphabet = string.ascii_lowercase |
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
diff -urN firefox-124.0.1-orig/browser/base/content/browser-sets.inc firefox-124.0.1/browser/base/content/browser-sets.inc | |
--- firefox-124.0.1-orig/browser/base/content/browser-sets.inc 2024-03-21 21:05:13 | |
+++ firefox-124.0.1/browser/base/content/browser-sets.inc 2024-04-01 00:29:51 | |
@@ -216,7 +216,7 @@ | |
<key id="goBackKb2" data-l10n-id="nav-back-shortcut-alt" command="Browser:Back" modifiers="accel"/> | |
<key id="goForwardKb2" data-l10n-id="nav-fwd-shortcut-alt" command="Browser:Forward" modifiers="accel"/> | |
#endif | |
- <key id="goHome" keycode="VK_HOME" oncommand="BrowserCommands.home();" modifiers="alt"/> | |
+ <key id="goHome" data-l10n-id="yliu-go-home" oncommand="BrowserCommands.home();" modifiers="accel,shift"/> | |
<key keycode="VK_F5" command="Browser:Reload"/> |
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
<?php | |
/* | |
Twitter JSON to Atom proxy for Twitter API 1.1 - @yliu | |
Original version by Russell Beattie ( https://gist.github.com/russellbeattie/3898467 ) | |
Fork of upstream to remove use of short tags; add t.co expansion and URL formatting for feed reader | |
License: BSD | |
*/ | |
date_default_timezone_set('America/Los_Angeles'); |