summary refs log tree commit diff
path: root/home/.local/bin/git-password (follow)
Commit message (Expand)2020-08-23
|
2020-05-04
n1'>| | Almost always templated shell for rc scripts. * Bump title buffer to 64KJune McEnroe2020-08-15 | | | | YouTube now sends <title> that occurs 38K into the file... * Fix setting second title request to GETJune McEnroe2020-07-25 | | | | | | | Since 9c845be2797e2047547ec247cb037471aeb48bb0 in curl (7.71.0), setting CURLOPT_NOBODY to 1 sets the request method to HEAD, but setting it back to 0 does not change the method back to GET. Setting CURLOPT_HTTPGET both sets the request method and unsets CURLOPT_NOBODY. * Read from stdin in orderJune McEnroe2020-07-18 | * Add facebook and twitter to title user-agentJune McEnroe2020-07-08 | | | | | | | | | This fixes fetching tweets again! https://github.com/thelounge/thelounge/pull/ 3602 (Intentionally breaking the link so GitHub doesn't add a "referenced this PR" thing?) * Remove aesJune McEnroe2020-06-17 | * Fix pbd for neovimJune McEnroe2020-06-11 | | | | | At some point neovim started setting argv[0] to the absolute path for some reason. * Add additional permission for linking with LibreSSLJune McEnroe2020-06-08 | | | | https://www.gnu.org/licenses/gpl-faq.en.html#GPLIncompatibleLibs * Replace __DECONST with regular castsJune McEnroe2020-06-08 | | | | sed -E 's/__DECONST[(]([^,]+), ([^)]+)[)]/(\1)(\2)/' * Replace __printflike with __attribute__((format(printf, ...)))June McEnroe2020-06-08 | | | | sed -E 's/__printf0?like[(]([^,]+), ([^)]+)[)]/__attribute__((format(printf, \1, \2)))/' * Replace __dead2 with __attribute__((noreturn))June McEnroe2020-06-08 | | | | sed 's/__dead2/__attribute__((noreturn))/' * Replace __FBSDID macros with comments