Skip to content

Instantly share code, notes, and snippets.

@hanneshier
hanneshier / browser console log
Created April 14, 2026 14:55
Postiz Console Logs
0o0u8i7biaxph.js:2 🌐 i18next is maintained with support from Locize — consider powering your project with managed localization (AI, CDN, integrations): https://locize.com 💙
0~pf_~dhq1me7.js:15 Polotno API is initialized without API key. It may lead to unexpected behavior and stop working. Please create API key here: https://polotno.com/cabinet
cw @ 0~pf_~dhq1me7.js:15
await in cw
cx @ 0~pf_~dhq1me7.js:15
__ @ 0~pf_~dhq1me7.js:191
rp @ 0~pf_~dhq1me7.js:2
bound __ @ 0~pf_~dhq1me7.js:2
type @ 0~pf_~dhq1me7.js:2
n @ 0~pf_~dhq1me7.js:2
@hanneshier
hanneshier / Logo.svg
Last active August 30, 2025 22:53
Innwerk Logo
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@hanneshier
hanneshier / clockTimeZone
Created February 24, 2015 20:28
clock with time zone
int timeZone = 0;
void setup() {
size(500,500);
frame.setResizable(true);
noFill();
ellipseMode(CENTER);
textAlign(CENTER,CENTER);
}
@hanneshier
hanneshier / changeableBall
Last active August 29, 2015 14:15
changeableBall
boolean directionX; // true = rechts; false = links
boolean pause; // true = pause; false = ingame
int speedX = 3;
int ballSize = 100;
int positionX = ballSize;
int colourR = round(random(255));
int colourG = round(random(255));
int colourB = round(random(255));
void setup() {