I hereby claim:
- I am alexanderomara on github.
- I am alexanderomara (https://keybase.io/alexanderomara) on keybase.
- I have a public key ASBYUXQkcCWkdeR_CWMUmliz1t8H4Ckcb99CMS3euWuomwo
To claim this, I am signing this object:
| #!/usr/bin/env bash | |
| set -o errexit | |
| set -o nounset | |
| set -o pipefail | |
| # Licenses: Public Domain, CC0, MIT | |
| # For ZSH autocompletion add to .zshrc: | |
| # compdef rclonenv=rclone |
I hereby claim:
To claim this, I am signing this object:
| #include <stdio.h> | |
| #include <unistd.h> | |
| #include <sys/socket.h> | |
| #include <netinet/tcp.h> | |
| #include <netinet/in.h> | |
| #include <arpa/inet.h> | |
| #define HOST_NAME "icanhazip.com" | |
| #define HOST_IP "136.144.56.255" | |
| #define HOST_PORT 80 |
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| <meta charset="utf-8" /> | |
| <title>Firefox IDBMutableFile Download Test</title> | |
| <style> | |
| a { | |
| text-decoration: none; | |
| } | |
| </style> |
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| <meta charset="utf-8" /> | |
| <title>Firefox IndexedDB Limit Test</title> | |
| </head> | |
| <body> | |
| <script> | |
| (function() { | |
| 'use strict'; |
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| <meta charset="utf-8" /> | |
| <title>Download large Blob Firefox issue on macOS</title> | |
| </head> | |
| <body> | |
| <h1>Download large Blob Firefox issue on macOS</h1> | |
| <h2>About</h2> | |
| <p>Attempting to download a blob URL on macOS over a certain size will hang at "A few seconds left" without ever finishing the download.</p> |
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| <meta charset="utf-8" /> | |
| <meta http-equiv="Content-Security-Policy" content="default-src 'self' 'unsafe-inline' stackoverflow.com;"> | |
| <title>Are you logged in to Stack Overflow?</title> | |
| </head> | |
| <body> | |
| <h1>Are you logged in to Stack Overflow?<h1> | |
| <h2 id="answer">...<h2> |
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| <title>Edge Wheel Delta X Inverted Test</title> | |
| <style> | |
| body { | |
| background: #CCCCCC; | |
| } | |
| .panel { | |
| overflow: scroll; |
| // clang -Wall -o posixsemtest posixsemtest.c | |
| #include <stdio.h> | |
| #include <semaphore.h> | |
| int main(int argc, char** argv) { | |
| if (argc < 2) { | |
| printf("USAGE: %s <semaphore_name>\n", argv[0]); | |
| return 1; |
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| <title>this and strict mode</title> | |
| </head> | |
| <body> | |
| <script> | |
| 'use strict'; | |
| alert('this === window: ' + (this === window)); | |
| </script> |