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 / amazon-domains.json
Created February 15, 2025 11:27 — forked from juanmanavarro/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",
@jpluimers
jpluimers / amazon.md
Created February 15, 2025 10:39 — forked from noraworld/amazon.md
List of country-specific domains for Amazon.com
@jpluimers
jpluimers / Move_Windows_Recovery_Partition.md
Created February 9, 2025 15:30 — forked from jmfernandez/Move_Windows_Recovery_Partition.md
Moving the recovery partition on Windows 10
@jpluimers
jpluimers / gist:7f6c9eb4cb40876b8a0c177e45a73677
Created January 17, 2025 11:23 — forked from sshay77/gist:4b1f6616a7afabc1ce2a
google-search-url-parameters-query-string-
// ==UserScript==
// @name Google Search Better Privacy
// @description Delete unnecessary params and add useful params on Google Search.
// @version 0.0.4
// @include http://*.google.*/search*
// @include http://*.google.*/imgres*
// @include https://*.google.*/search*
// @include https://*.google.*/imgres*
// @exclude http://play.google.com/*
// @exclude http://mail.google.com/*

Note that 26…29 were .gif images on-line, but copy/pasting them on MacOS+Chrome resulted in static imaages. That's why there are now in the below comment.

  1. image

  2. image

  3. image

@jpluimers
jpluimers / algemene-voorwaarden.md
Created January 14, 2025 08:51
pwri.nl Algemene Voorwaarden

Algemene voorwaarden We willen u zo goed mogelijk van informatie voorzien. Daarom besteden we de grootste zorg aan het tot stand komen van onder andere onze website en app. Maar de techniek kan ons in de steek laten. En we zijn ook mensen. Het is mogelijk dat er per ongeluk iets vermeld wordt dat niet klopt. PWRI is hier niet aansprakelijk of verantwoordelijk voor. Dat leggen we in deze disclaimer uit.

Domein Deze disclaimer geldt voor de website en app van PWRI.

Informatie We doen ons best om correcte, volledige en actuele informatie te bieden. Mocht er toch iets staan wat niet correct, volledig of actueel blijkt te zijn, dan zijn wij daar niet aansprakelijk voor.

Ook willen we dat u de informatie op deze website en in onze app begrijpt. Want we houden pensioen zo makkelijk mogelijk. Daarom vermelden we bijvoorbeeld niet alle regels en richtlijnen van een onderwerp. We kiezen liever voor minder tekst, zodat de inhoud duidelijk blijft. Dat betekent dat de pagina's een vereenvoudigde versie zijn van alle re

@jpluimers
jpluimers / readme.md
Created January 12, 2025 18:29
Images from "Yes, the planet got destroyed. But for a beautiful moment in time we created a lot of value for shareholders." : midjourney - https://old.reddit.com/r/midjourney/comments/1c11pb4/yes_the_planet_got_destroyed_but_for_a_beautiful/

Since Reddit hates deep linking to media, and therefore makes it hard for the Wayback Machine to archive them, here are the images from the above URL.

Comment 2024-04-11T00:46:43.950Z by original poster don1138

Bored. Felt cute. Ran my favorite cartoon through Ai.

The first is DALL-E, the next four through MJ with text prompt, and the last four include an image of the original cartoon in the prompt. I used Firefly to remove text and text balloons from the renders.

@jpluimers
jpluimers / recept.md
Last active January 12, 2025 16:41
Recept van LiboeLBB voor Lasagne - https://x.com/LiboeLBB

Lasagne uit Napels

Ingrediënten:

  • 1 ui
  • 1 stengel bleekselderij
  • 1 wortel
  • voet knoflook
  • blik passata
  • 300g rundergehakt
@jpluimers
jpluimers / add-p.md
Created December 28, 2024 13:03 — forked from mattlewissf/add-p.md
Lightning Talk: Git add -p

git add -p is your friend

git add -p is basically "git add partial (or patch)"

Patch mode allows you to stage parts of a changed file, instead of the entire file. This allows you to make concise, well-crafted commits that make for an easier to read history. This feature can improve the quality of the commits. It also makes it easy to remove parts of the changes in a file that were only there for debugging purposes - prior to the commit without having to go back to the editor.

It allows you to see the changes (delta) to the code that you are trying to add, and lets you add them (or not) separately from each other using an interactive prompt. Here's how to use it:

from the command line, either use

  • git add -p