Skip to content

Instantly share code, notes, and snippets.

@jdevalk
jdevalk / .htaccess
Last active January 7, 2025 07:26
These three files together form an affiliate link redirect script.
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteRule ^index\.php$ - [L]
RewriteRule (.*) ./index.php?id=$1 [L]
</IfModule>
@andrewdanks
andrewdanks / cool_story_bro.py
Last active May 7, 2022 18:08
"Cool story, bro" alternatives
from itertools import product
from random import choice
# Cool story, bro. alternatives
# by @andrewdanks
# Prints all combinations iff True; prints a random sentence otherwise.
print_all_combos = False
story_adjectives = ['intriguing', 'riveting', 'gripping', 'fascinating', 'compelling', 'charming', 'dazzling']