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
| --- a/charproc.c | |
| +++ b/charproc.c | |
| @@ -4380,15 +4380,8 @@ doparsing(XtermWidget xw, unsigned c, struct ParseState *sp) | |
| setExtendedFG(xw); | |
| }); | |
| break; | |
| - case 5: /* Blink (less than 150 per minute) */ | |
| - /* FALLTHRU */ | |
| - case 6: /* Blink (150 per minute, or more) */ | |
| - UIntSet(xw->flags, BLINK); |
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
| #!/bin/python3 | |
| # required configured python keyring (https://pypi.org/project/keyring/) | |
| # $ keyring get "openconnect-sso" your_email | |
| # $ keyring set "vpnadfscreds" "totp" # totpBase32Secret | |
| import argparse | |
| import os | |
| import sys | |
| import time |
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
| #!/bin/python3 | |
| # required configured python keyring (https://pypi.org/project/keyring/) | |
| # $ keyring get "openconnect-sso" your_email | |
| # $ keyring set "vpnadfscreds" "totp" # totpBase32Secret | |
| import argparse | |
| import os | |
| import sys | |
| import time |
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
| #include <stdio.h> | |
| #include <stdint.h> | |
| uint16_t find_inv(uint16_t a) { | |
| uint16_t inv = 1; | |
| for (int i = 0; i < 16; i++) inv *= 2 - a * inv; | |
| return inv; | |
| } | |
| uint16_t mul_a,mul_a_inv; |