gilbert189's avatar

@gilbert189
Beta tester

i'm gilbert_given_189 on Scratch.
Wall

Let’s play a game of “Fortunately, Unfortunately“. Respond the previous post (the first comment below this post) by replying this post (not the previous post!)

I’ll start with: “I found this website.“

14 1 95

A game that has a hidden script editor in place instead of a level editor

The last thing I expected for a TTYD remake is the use of words that surfaced relatively recently (or at least feels really recent)

It kinda makes sense in an off way

3 0 4

something I’m working on right now

def shrink():
	mov (r8, 0)   # index
	mov (r9, r1)  # input -> hold
	geti (r9, 0)  # last character
	mov (r10, 0)  # count
	mov (r2, "")  # result
	push (r1)
	call (len)
	pop (r11)     # length

	def add_char():
		# convert it into a character first
		add (r10, 32)
		push (r10)
		call (chr)
		pop (r10)
		# add it to the result
		add (r2, r9)
		add (r2, r10)
		# reset everything
		mov (r9, r3)
		mov (r10, 0)

	while true:
		mov (r3, r1)
		geti (r3, r8)
		cmp (r9, r3)
		if neql:
			goto (add_char)
		# increment
		add (r10, 1)
		add (r8, 1)
		# check if it's the right size
		cmp (r8, r11)
		if eql:
			goto (add_char)
			break

To make A, you can use B, but it needs A, so you can’t use B.

2 0 1

If I said “well that sounds like conversion to me” would you send me an assassin to my place

Enjoy some nonsense

clicky@localhost /s/e/0/nonsense> pypy3 gen_wfc.py 25 ion]
Using english-words.txt
Found 151098 triples
[obturrication]
[epulsificenitiation]
[nometrimilation]
[plution]
[unchantation]
[antion]
[heavyheartission]
[excipudesomeriation]
[mention] (IN DATASET)
[unconscion]
[infarcomolpion]
[orchebutuation]
[chrysogration]
[nonration]
[underitision]
[cabibolution]
[gation]
[unhimation]
[unfacillion]
[underation]
[insation]
[unnation] (IN DATASET)
[wation]
[socation]
[polation]

It’s surprisingly hard to find good monospace [pixel] fonts that are smaller than 8×8 in size

2 0 2

The thing of having an unused Telegram account is you can see weird events like “a bunch of people getting invited into a random group”

When enabling hardware accelerator for your VM does the exact opposite thing

That’s quite the hot take, my head is burning right now

CONTROVERSIAL POST

16 4 44

I’ve yet to find something I can use to transfer text (and just text) from my phone to my laptop without the struggle (and memory) of making a file and moving it to my laptop

Bonus points if it’s all local and I don’t have to transfer it through “the cloud”

2 1 4

I’ve been receiving a newsletter from Reddit which I cannot unsubscribe since I can’t even access it normally

A video codec designed specifically for old game consoles with their hardware sprites sounds like an interesting idea

(tutorial asks to make a trainer class)

class MattFromWiiSports(keras.Model):
	...