This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Application | |
| Logged Out | |
| log in -> Logged In | |
| Logged In | |
| log out -> Logged Out | |
| Presentation& | |
| Title | |
| Untitled* |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Post | |
| author posts new standard -> New & Default | |
| author posts new special -> New & Enhanced | |
| Standard | |
| New & Default | |
| user revisits home page -> Default | |
| Default* | |
| Special | |
| New & Enhanced | |
| user revisits home page -> Enhanced |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| source=$1 | |
| dest=${source::-4}_wp.jpg | |
| colors=($(convert $source +dither -colors 2 -define histogram:unique-colors=true -format "%c" histogram:info: | awk '//{print $3}')) | |
| convert $source \ | |
| -gravity center \ | |
| -resize 1280x1280 \ | |
| -bordercolor ${colors[1]} \ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import colorsys | |
| import re | |
| def hex_to_rgb(hex_color): | |
| """Convert hex color to RGB values (0-1 range)""" | |
| hex_color = hex_color.lstrip('#') | |
| rgb = tuple(int(hex_color[i:i+2], 16) for i in (0, 2, 4)) | |
| return tuple(x/255 for x in rgb) | |
| def rgb_to_hsl(rgb): |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/env python3 | |
| """ | |
| Export COMPLETE message history from Tlon channels with pagination. | |
| This script works on both hosted and local ships. | |
| """ | |
| import argparse | |
| import requests | |
| from datetime import datetime |
OlderNewer