Skip to content

Instantly share code, notes, and snippets.

View desantis's full-sized avatar
💭
Hello, world wide web!

#!de : <os> :: $I.am : DESANTIS.SJ desantis

💭
Hello, world wide web!
View GitHub Profile

Keybase proof

I hereby claim:

  • I am desantis on github.
  • I am xbt (https://keybase.io/xbt) on keybase.
  • I have a public key whose fingerprint is BC64 8F6C 8A73 8B0A B47E A13A F2D1 E198 3A31 A5C6

To claim this, I am signing this object:

@desantis
desantis / keybase.md
Created September 6, 2025 16:15
wiki

Keybase proof

I hereby claim:

  • I am desantis on github.
  • I am wiki (https://keybase.io/wiki) on keybase.
  • I have a public key whose fingerprint is D0EA FDAC 1064 8018 3247 AE6D 52A4 F0E4 C11E B75C

To claim this, I am signing this object:

@desantis
desantis / keybase.md
Created September 4, 2025 11:31
news

Keybase proof

I hereby claim:

  • I am desantis on github.
  • I am news (https://keybase.io/news) on keybase.
  • I have a public key whose fingerprint is E980 F002 F67A B6E1 AAEB 54E8 A958 3C56 72C1 AE18

To claim this, I am signing this object:

@desantis
desantis / keybase.md
Created March 4, 2025 19:24
$III.am IFPI

Keybase proof

I hereby claim:

  • I am desantis on github.
  • I am home (https://keybase.io/home) on keybase.
  • I have a public key ASCPbNM1UmmbeBC434V9FqMKFB2WJxwoRR4LQ1iqJ75iqwo

To claim this, I am signing this object:

@desantis
desantis / keybase.md
Created February 26, 2025 14:19
$I.am : IFPI

Keybase proof

I hereby claim:

  • I am desantis on github.
  • I am ifpi (https://keybase.io/ifpi) on keybase.
  • I have a public key ASBGb-N0hYA38HqQP6FOrimYjHEeP-TT1BUOQ_QIpOcBWgo

To claim this, I am signing this object:

@desantis
desantis / ftw.md
Created December 29, 2024 01:06
Why did you have me unchained?

There is no reason for any individual to have content in their files.

The filename ought to be enough for anybody.

—xDotComRootUser

@desantis
desantis / keybase.txt
Created March 28, 2019 15:49
[keybase.io/home] <-> [simpsonms.org]
==================================================================
https://keybase.io/home
--------------------------------------------------------------------
I hereby claim:
* I am an admin of https://simpsonms.org
* I am home (https://keybase.io/home) on keybase.
* I have a public key ASCXK7tAzySlIwBarJ6n2BMrZp_d4Mftc9B3Nvof0TF-igo
@desantis
desantis / keybase.md
Created March 28, 2019 13:14
keybase.md

Keybase proof

I hereby claim:

  • I am desantis on github.
  • I am home (https://keybase.io/home) on keybase.
  • I have a public key ASCXK7tAzySlIwBarJ6n2BMrZp_d4Mftc9B3Nvof0TF-igo

To claim this, I am signing this object:

-----BEGIN PGP PUBLIC KEY BLOCK-----
Version: SKS 1.1.6
Comment: Hostname: pgp.mit.edu
mQINBFdQq7oBEADEVhyRiaL8dEjMPlI/idO8tA7adjhfvejxrJ3Axxi9YIuIKhWU5hNjDjZA
iV9iSCMfJN3TjC3EDA+7nFyU6nDKeAMkXPbaPk7ti+Tb1nA4TJsBfBlmCC14aGWLItpp8sI0
0FUzorxLWRmU4kOkrRUJCq2kAMzbYWmHs0hHkWmvj8gGu6mJWU3sDIjvdsm3hlgtqr9grPEn
j+gA7xetGs3oIfp6YDKymGAV49HZmVAvSeoqfL1ppEKlNQ1aO9uNfHLdx6+4pS1miyo7D1s7
ru2IcqhTDhg40cHTL/VldC3d8vXRFLIiUo2tFZ6J1jyQP5c1K4rTpw3UNVne3ob7uCME+T1+
ePeuM5Y/cpcCvAhJhO0rrlr0dP3lOKrVdZg4qhtFAspC85ivcuxWNWnfTOBrgnvxCA1fmBX+
@desantis
desantis / blocktoimg.py
Created September 16, 2018 09:18 — forked from laanwj/blocktoimg.py
tools to write (block) data to png files and vice versa
#!/usr/bin/env python3
# Distributed under the MIT software license
import binascii, struct, sys, io, argparse
from PIL import Image
IMG_WIDTH = 512 # could be made adaptive...
MIN_HEIGHT = 4 # minimum height of image; twitter won't let us upload anything smaller
BYTES_PER_PIXEL = 4 # RGBA, 8 bit
def div_roundup(x,y):