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
| /* Show the name of libcurl's resolver. | |
| Usage: ShowLibcurlResolver | |
| "Is there a way to programmatically know if the version being used was compiled | |
| with the threaded resolver?" | |
| curl-library mailing list thread: | |
| 'segfaulting in Curl_num_addresses on OS X and Ubuntu' | |
| http://curl.haxx.se/mail/lib-2015-08/0002.html |
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
| /* Use libcurl to retrieve Gmail folders and labels via IMAP over SSL (IMAPS). | |
| Usage: ShowGmailFolders <username> <password> | |
| curl-library mailing list thread: | |
| 'Re: DL curl 7.35 mingw32' | |
| http://curl.haxx.se/mail/lib-2015-05/0037.html | |
| Note: When you attempt to login to Gmail via IMAP they sometimes require a | |
| web login first for security reasons. In that case an error will be shown. Such |
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
| static function Main() { | |
| var today: Date = new Date(); | |
| FiddlerObject.StatusText = " CustomRules.js was loaded at: " + today; | |
| // Uncomment to add a "Server" column containing the response "Server" header, if present | |
| // FiddlerObject.UI.lvSessions.AddBoundColumn("Server", 50, "@response.server"); | |
| // https://groups.google.com/forum/#!topic/httpfiddler/RIjfLBU58Io | |
| CONFIG.oAcceptedServerHTTPSProtocols = System.Security.Authentication.SslProtocols.Tls | |
| | System.Security.Authentication.SslProtocols.Tls11 | |
| | System.Security.Authentication.SslProtocols.Tls12; |
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
| /* Use libcurl to POST JSON data. | |
| Usage: PostJSON <name> <value> | |
| curl-library mailing list thread: | |
| 'how do i post json to a https ?' | |
| https://curl.haxx.se/mail/lib-2015-01/0049.html | |
| * Copyright (C) 2015 Jay Satiro <raysatiro@yahoo.com> | |
| https://curl.haxx.se/docs/copyright.html |
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
| :: This batch file builds the RunAtWinlogon program. | |
| :: http://reboot.pro/files/file/255-runatwinlogon/ | |
| :: | |
| :: BUG: Although this builds both x86 and x64 versions it looks as though | |
| :: ServiceKick.au3 needs to be changed if using x64 version from RunAtWinlogon | |
| :: to RunAtWinlogon64. | |
| :: | |
| :: The include and Aut2Exe directories are needed from autoit-v3.zip | |
| :: https://www.autoitscript.com/site/autoit/downloads/ | |
| :: |
NewerOlder