Skip to content

Instantly share code, notes, and snippets.

View jpluimers's full-sized avatar

Jeroen Wiert Pluimers jpluimers

  • wiert.me
  • Amsterdam, The Netherlands
View GitHub Profile
@jpluimers
jpluimers / index.html
Created February 9, 2026 19:28
GitHub unicorn page copied after posting https://mastodon.social/@wiert/116042242733383184
<!--
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>
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@jpluimers
jpluimers / readme.md
Created February 4, 2026 13:53
Archived copy of "How to do a very simple debug value replacer for Delphi?"
@jpluimers
jpluimers / GenericVisualizer.pas
Last active February 4, 2026 11:52
Archived version of "Code snippet: IDE debug visualizer plugin for generic and template types"
unit GenericVisualizer;
interface
procedure Register;
implementation
uses
  Classes, SysUtils, ToolsAPI;
@jpluimers
jpluimers / content.md
Last active January 11, 2026 20:22
20260110 - Crescendo Sassenheim - Winterconcert in 't Onderdak - linkjes naar mapjes met foto's gemaakt door Jeroen Wiert Pluimers

Foto's alleen gebruiken met als naamsvermelding Jeroen Wiert Pluimers.

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.

@jpluimers
jpluimers / amazon-domains.json
Created December 12, 2025 17:06 — forked from AminulBD/amazon-domains.json
Amazon operating domains by country.
{
"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",

Sintekerstennieuwcadeautips Leuke cadeautips! Voor nerds, maar ook normale mensen ;)

@jpluimers
jpluimers / code.js
Created November 22, 2025 18:01
Unsuccessful Browser client side HTTP redirect checker
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();