Skip to content

Instantly share code, notes, and snippets.

@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

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 / 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 March 2, 2025 14:32
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
@inkz
inkz / inputset.txt
Last active February 9, 2025 17:20
express-big-inputset
NodeBB/nodebb-plugin-write-api
sisense/compose-sdk-monorepo
volumio/volumio3-backend
spryker/docker-sdk
hbkabir004/Mrittik-Server
apu52/METAVERSE
NUWCDIVNPT/stig-manager
debloper/xplex
cedalo/management-center
Sunny-117/mini-anything
@iamdanre
iamdanre / dumpVar.blade.php
Created December 20, 2024 12:00
blade to js object dump
<script>
const user = @json($user);
console.log(user);
</script>
<script>
const user = {!! json_encode($user ?? []) !!}
console.log(user)
<script>