Now that the status of Stack Overflow has become unclear - it's mostly an AI feeder now, I copied the below entry from it.
Asked 7 years, 11 months ago
| <!-- | |
| Hello future GitHubber! I bet you're here to remove those nasty inline styles, | |
| DRY up these templates and make 'em nice and re-usable, right? | |
| Please, don't. https://github.com/styleguide/templates/2.0 | |
| --> | |
| <html><head> | |
| <title>Unicorn! · GitHub</title> |
| unit hcTemporaryCursor; | |
| interface | |
| {$I delphi.inc} | |
| uses | |
| {$ifdef FMX} | |
| FMX.Platform | |
| ,FMX.Types |
Now that the status of Stack Overflow has become unclear - it's mostly an AI feeder now, I copied the below entry from it.
Asked 7 years, 11 months ago
| unit GenericVisualizer; | |
| interface | |
| procedure Register; | |
| implementation | |
| uses | |
| Classes, SysUtils, ToolsAPI; |
Mapjes op Google Photo's:
Niet alle foto's staan netjes in het midden want iemand stootte helaas boven tegen het statief, wat ik met afstandbediening beneden vanuit de zaal niet kon zien.
| { | |
| "us": "https://www.amazon.com", | |
| "uk": "https://www.amazon.co.uk", | |
| "ca": "https://www.amazon.ca", | |
| "de": "https://www.amazon.de", | |
| "es": "https://www.amazon.es", | |
| "fr": "https://www.amazon.fr", | |
| "it": "https://www.amazon.it", | |
| "jp": "https://www.amazon.co.jp", | |
| "in": "https://www.amazon.in", |
| var xhr = new XMLHttpRequest(); | |
| xhr.onload = function() { | |
| if (this.status < 400 && this.status >= 300) { | |
| console.log('request redirects to ' + this.getResponseHeader("Location")); | |
| } else { | |
| console.log('request does not redirect'); | |
| } | |
| } | |
| xhr.open('HEAD', 'https://t.co/Ui4Wmesq1j', true); | |
| xhr.send(); |