Skip to content

Instantly share code, notes, and snippets.

View marvinschopf's full-sized avatar
🥑
Working from home

Marvin Schopf marvinschopf

🥑
Working from home
View GitHub Profile

How I write my commit messages in the future

This is how I would write my commit messages:

  • [F]: Feature
  • [B]: Bugfix
  • [I]: Little improvements, like imports
  • [R]: Refactoring
  • [M]: Meta
  • [D]: Documentation
  • [G]: Graphics
@coccoinomane
coccoinomane / Excel Password Generator.md
Last active July 29, 2025 15:41
Copy this formula into an Excel cell to generate a random 9-character password

Copy this formula into an Excel cell to generate a random 9-character password. Then Copy & Paste Special (as value) in place in order to avoid the cell being continuosly re-evaluated.

English version

=CHAR(RANDBETWEEN(65;90))&CHAR(RANDBETWEEN(97;122))&CHAR(RANDBETWEEN(97;122))&CHAR(RANDBETWEEN(65;90))&RANDBETWEEN(1000;9999)&CHAR(RANDBETWEEN(42;43))

English version (with commas)

@Zirak
Zirak / gist:3086939
Last active August 27, 2022 22:01
xhr for dummies

So, you want to send a motherfucking XMLHttpRequest (XHR, or commonly and falsly known as AJAX.) Too bad, just ran out of motherfucking XMLHttpRequests; but I still have one regular. XHR is not magic. It does not autofuckinmagically send things the way you want them do be sent. It does not do the thinking for you. It just sends an Http Request.

You get a hold on such a prime beast like this: