Skip to content

Instantly share code, notes, and snippets.

@zincplusplus
zincplusplus / iterm
Last active March 11, 2026 12:43
You also need monaspace-neon and Symbols nerd font (might need to manually set this as fallback for non ascii chars)
{
"Ansi 7 Color (Light)" : {
"Red Component" : 0.72549019607843135,
"Color Space" : "sRGB",
"Blue Component" : 0.73725490196078436,
"Green Component" : 0.69411764705882351
},
"Ansi 15 Color (Light)" : {
"Red Component" : 0.94901960784313721,
"Color Space" : "sRGB",
@zincplusplus
zincplusplus / Albert Heijn app API.md
Created July 8, 2025 19:54 — forked from jabbink/Albert Heijn app API.md
Interact with the Albert Heijn mobile app API to retrieve receipt data, and other things

AH API

Always use User-Agent: Appie/8.22.3 and Content-Type: application/json
Technically there is more information about your device and user ID after it, but the server does not seem to care

Token

If you have a valid access_token, add it as a header in request
Authorization: Bearer access_token

@zincplusplus
zincplusplus / dabblet.css
Created June 26, 2012 20:39
Space invadors - all species
/**
* Space invadors - all species
*/
body {
font-size: 4px;
}
.row {
overflow: hidden;
}
.invader {
@zincplusplus
zincplusplus / dabblet.css
Created December 21, 2011 12:56
Merry Christmass Newsletter Template
/**
* Merry Christmass Newsletter Template
**/
body {
background: linear-gradient(27deg, transparent 48%, rgba(0,0,0,0.5) 48%, transparent 49%),
linear-gradient(-27deg, transparent 48%, rgba(0,0,0,0.5) 48%, transparent 49%);
background-size: 20px 40px;
background-color: #00906f;
height: 100%;
@zincplusplus
zincplusplus / dabblet.css
Created December 20, 2011 10:22
jack frost
/**
* jack frost
**/
background:
radial-gradient(circle, black 3%, transparent 3%) 3px -33px, /* rigth eye */
radial-gradient(circle, black 3%, transparent 3%) -3px -33px, /* left eye */
linear-gradient(75deg, orange 4%, transparent 4%) -50px 8px, /* nose */
radial-gradient(circle, white 15%, transparent 15%) 0 -31px, /* head */
radial-gradient(circle, rgba(0,0,0,.05) 15%, transparent 15%) 0px -30px,/* head shadow */
radial-gradient(circle, red 15%, transparent 15%) 0px -28px, /* neck scarf */
@zincplusplus
zincplusplus / dabblet.css
Created January 2, 2012 10:34
The -Webkit-scrollbar challenge
/**
* The -Webkit-scrollbar challenge
* * * * * * * * * * * * * * * * * * * * * * * * * * * *
* Make the first div’s scrollbar like the second’s
* without changing the styling of the div (i.e. you
* can only change the ::-webkit-scrollbar-* rules
* * * * * * * * * * * * * * * * * * * * * * * * * * * *
* It doesn't matter if the second div doesn't look the same
* after your changes, it's only there to show you how the
@zincplusplus
zincplusplus / cloudSettings
Created November 20, 2018 22:11
Visual Studio Code Settings Sync Gist
{"lastUpload":"2018-11-20T22:10:57.293Z","extensionVersion":"v3.2.0"}
@zincplusplus
zincplusplus / pushover.php
Last active January 21, 2016 13:18
Pushover + PHP API Implementation
<?php
function pushNotification($message) {
// create curl resource
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, "https://api.pushover.net/1/messages.json");
curl_setopt($ch, CURLOPT_HEADER, false);
curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false);
@zincplusplus
zincplusplus / dabblet.css
Created November 20, 2013 12:55
Untitled
body {
font-family: Helvetica, Arial, sans-serif;
background: #f2f4f6;
color: #333;
}
.group {
background: #fff;
border: 1px solid #ccc;
float: left;
height: 248px;
@zincplusplus
zincplusplus / dabblet.css
Created July 30, 2013 15:41
Rotate a red block
/* Rotate a red block */
body {margin: 100px; padding:0}
.parent {
width: 200px;
height: 200px;
background: yellow;
}
.rotateMe {
width: 100%;
height: 100%;