e0qdk

joined 2 years ago
[–] e0qdk@reddthat.com 14 points 2 days ago

You'd think a bunch of cryptographers would use Shamir's secret sharing to avoid issues like this...

[–] e0qdk@reddthat.com 1 points 3 days ago

It looks like the connector is U.2 so I'd look for motherboards that indicate support for that explicitly. From a quick search, it looks like SuperMicro makes some. This is getting out of my area of expertise though; I just know the crazy drives exist...

[–] e0qdk@reddthat.com 17 points 3 days ago* (last edited 3 days ago) (7 children)

Assume an unlimited budget for now, I just want to know what's out there.

I mean, if you're willing to pay the price of a car per SSD they go up to at least 122TB density per drive... (e.g. Solidigm SBFPF2BV0P12001 D5-P5336 -- $16K~$20K depending on supplier from a quick search)

I don't actually recommend that for personal use, but since you were curious about what's out there, there's some absolutely crazy shit in enterprise server gear if you have deep enough pockets.

[–] e0qdk@reddthat.com 3 points 1 week ago

It doesn't work in Firefox though... (unless you're running Nightly, I think).

[–] e0qdk@reddthat.com 1 points 1 week ago

Don't put them in until they are ripe. Once they are the right level of ripeness for you, you can extend them being in that state for several days by putting them in the fridge.

[–] e0qdk@reddthat.com 15 points 3 weeks ago (4 children)

Just run a web server and expose the specific files you want to share through that?

[–] e0qdk@reddthat.com 34 points 1 month ago (3 children)

Yeah; @Sxan@piefed.zip uses þ a lot to mess with people trying to train LLMs off the Fediverse, IIRC, but I don't think I've seen anyone else using it regularly.

[–] e0qdk@reddthat.com 3 points 1 month ago (1 children)

The Expression Amrilato is a VN that's mostly in Juliamo (i.e. Esperanto with some modifications like a custom alphabet). It's mostly an Esperanto tutorial though with an isekai yuri plot.

Disney's Atlantis had a custom conlang specifically made for it, but IIRC the dialogue was mostly in English still.

[–] e0qdk@reddthat.com 6 points 1 month ago

This was my grandfather's axe; the head's been replaced twice and the handle three times since he owned it.

It's the same pizza we had last week. / Eww! Shouldn't you have gotten rid of it by now? / No -- I mean, it's just got the same toppings! We ordered it last night!

If you could swap memories with another person, which body is "you"? Well, that depends on what the meaning of the word is is... Mr. President.

An annoying amount of philosophy "problems" are really just equivocation about different kinds of equivalence.

These ramblings brought to you from my aging -- though not yet lost -- memories of long hours of procrastination during my sophomore year in college...

[–] e0qdk@reddthat.com 6 points 1 month ago

I went to a lot of different schools growing up. Some of them were not-very-well-funded public schools, but others were international schools for expats and private US schools -- some of which might qualify. Most of the schools I went to had a cafeteria with a typical "go through the line with a tray and get whatever they cooked that day in bulk" kind of system. Some of them also had a store where you could buy snacks, prepackaged sandwiches, and such. I remember bringing lunch from home a lot -- either sandwiches or leftovers from dinner the previous night, usually. One of the schools was so small it didn't even have a real cafeteria for us and all the students (6th~8th grade in the US system) brought lunch from home and ate on fold up chairs in the multi-purpose room every day. I also went to a boarding school for a couple years. That one had a cafeteria system too -- but the students were pressed into working on a rotation schedule (wiping down tables, cleaning dishes, and such -- I don't remember preparing any of the food). I don't recall anything particularly outstanding one way or the other about the regular lunches there, but that one had periodic formal dinners (once a month or so, IIRC) where I had to get dressed up (e.g. put on a tie) and they broke us up into small groups of students and teachers. I remember those being stressful, but also having better than average food.

[–] e0qdk@reddthat.com 13 points 2 months ago (1 children)

There's something else going on there besides base64 encoding of the URL -- possibly they have some binary tracking data or other crap that only makes sense to the creator of the link.

It's not hard to write a small Python script that gets what you want out of a URL like that though. Here's one that works with your sample link:

#!/usr/bin/env python3

import base64
import binascii
import itertools
import string
import sys

input_url = sys.argv[1]
parts = input_url.split("/")
  
for chunk in itertools.accumulate(reversed(parts), lambda b,a: "/".join([a,b])):
  try:
    text = base64.b64decode(chunk).decode("ascii", errors="ignore")
    clean = "".join(itertools.takewhile(lambda x: x in string.printable, text))
    print(clean)
  except binascii.Error:
    continue

Save that to a file like decode.py and then you can you run it on the command line like python3 ./decode.py 'YOUR-LINK-HERE'

e.g.

$ python3 ./decode.py 'https://link.sfchronicle.com/external/41488169.38548/aHR0cHM6Ly93d3cuaG90ZG9nYmlsbHMuY29tL2hhbWJ1cmdlci1tb2xkcy9idXJnZXItZG9nLW1vbGQ_c2lkPTY4MTNkMTljYzM0ZWJjZTE4NDA1ZGVjYSZzcz1QJnN0X3JpZD1udWxsJnV0bV9zb3VyY2U9bmV3c2xldHRlciZ1dG1fbWVkaXVtPWVtYWlsJnV0bV90ZXJtPWJyaWVmaW5nJnV0bV9jYW1wYWlnbj1zZmNfYml0ZWN1cmlvdXM/6813d19cc34ebce18405decaB7ef84e41'
https://www.hotdogbills.com/hamburger-molds/burger-dog-mold

This script works by spitting the URL at '/' characters and then recombining the parts (right-to-left) and checking if that chunk of text can be base64 decoded successfully. If it does, it then takes any printable ASCII characters at the start of the string and outputs it (to clean up the garbage characters at the end). If there's more than one possible valid interpretation as base64 it will print them all as it finds them.

view more: next ›