gilbert189 beta

i'm gilbert_given_189 on Scratch.

wall

posts

gilbert189 — 1/30/2024, 6:50:06 AM

Apparently my phone’s rumble works intermittently (but usually it doesn’t work)

♥ 4 ↩ 0 💬 0 comments
gilbert189 — 1/29/2024, 3:30:54 PM

i’m going to install dunst as my notif daemon because it’s simple enough

(some time later)

dunst would you stop telling me about low battery you’ve been spamming it for 3 hours

♥ 4 ↩ 0 💬 0 comments
gilbert189 — 1/29/2024, 5:27:06 AM

In midst of our school debate we had an unexpected drama by one of the students (not related to the debate)

Because of it we have to discuss the second motion next week

♥ 4 ↩ 0 💬 0 comments
gilbert189 — 1/28/2024, 2:05:20 PM

lu “jibni mi” li’u zoi. is my first and currently only correct Lojban sentence .zoi

♥ 3 ↩ 0 💬 0 comments
gilbert189 — 1/28/2024, 5:26:31 AM

God I hate these types of comments

♥ 10 ↩ 1 💬 0 comments
gilbert189 — 1/28/2024, 3:08:09 AM

Where is my bill gates?

↩ repost
esben — 1/27/2024, 10:33:52 AM

Who gave Steve a job?

↩ repost
jeffalo — 1/26/2024, 10:07:13 PM

who let tim cook??

♥ 31 ↩ 4 💬 8 comments
♥ 9 ↩ 1 💬 0 comments
♥ 5 ↩ 1 💬 0 comments
gilbert189 — 1/28/2024, 12:11:55 AM

Me, some months before: Someday I will do a full system update

Some months later…

♥ 3 ↩ 0 💬 0 comments
gilbert189 — 1/27/2024, 5:12:26 PM

If peanut butter is edible, are the inedible, reference peanut butters stored in NIST, degraded due to aging, really a good peanut butter to reference with? Who knows what's the contents of them, and whether or not they represent the peanut butter we're familiar with.

(Arguments in blockquote means that I’m paraphrasing someone else’s argument for demonstration purposes. It doesn’t say whether or not I agree with the argument, unless if it’s explicitly stated.)

♥ 3 ↩ 0 💬 0 comments
gilbert189 — 1/25/2024, 1:56:29 PM

What if we make a mobile app that teaches the users a new language, while also having the addicting elements of a mobile game? Things like a life system that regenerates over hours, some form of microtransaction, and a tier system, to name a few. The users will be literally addicted to learn, and we get the cash from the ads sprinkled between the lessons. It’s a win-win.

♥ 5 ↩ 0 💬 0 comments
gilbert189 — 1/24/2024, 11:38:24 AM

Now that I think about it, some of the post I made here are essentially this, but includes past memories

I got into this realization when my head remembers “once my uncle sang Never Gonna Give You Up” and thought “that would be a good wasteof post”

↩ repost
landonhere — 1/3/2024, 9:07:55 PM

The next time you find something intriguing and cool, open some sort of text input mechanism - a new .txt file, an IRC window, a word processor document - and record the things that your brain says as it says them. In hindsight, you will enjoy it.

-=-=-=-
sorry, let me fix that
neutron star causin' problems
-=-=-=-
what do those two lines meeeaaannnnnnnnnnn
and that cross...
and . . . everything, for that matter
-=-=-=-
*water noises*
we still have yet to have an answer to the thing on the right
do you ever have the urge to just . . . try to decode something that you know is gibberish?
-=-=-=-
THERE'S STUFF IN THE MARGINS~!
-=-=-=-
scroll slowly
diesel
-=-=-=-
they. don't. have. noses.
which you can't blame them for
-=-=-=-
we're back where we started
...it's iridescent
is that out of the ordinary?
-=-=-=-
the printer broke . . . along with the autoclave
-=-=-=-
I know an elevator shaft when I see one
honk
-=-=-=-
let me find that
*gets sidetracked*
NEEDLEFISH CAM
-=-=-=-
. . . there truly is nothing to see here
-=-=-=-
♥ 3 ↩ 1 💬 1 comment
♥ 2 ↩ 0 💬 0 comments
gilbert189 — 1/23/2024, 4:27:49 AM

oh no, quantum physics

♥ 5 ↩ 0 💬 0 comments
gilbert189 — 1/22/2024, 4:27:27 PM

I’ve been assigned to be a panelist at my parliamentary-style debate next week

I had to make at least 8 questions but most of the motions are literal questions like “will AI take over the world“

There’s this urge of including the motion as a question but I’d decided not to, though I feared that my question deviate from the motion

♥ 3 ↩ 0 💬 0 comments
gilbert189 — 1/22/2024, 4:04:28 PM

it’s nighty morning

i guess

♥ 3 ↩ 0 💬 0 comments
gilbert189 — 1/20/2024, 5:45:13 AM

Don’t you love it when Firefox thought “this guy is pressing a key, let’s go unresponsive for no particular reason”

♥ 3 ↩ 0 💬 0 comments
gilbert189 — 1/19/2024, 6:06:02 PM

I had a feeling there’s an easier way to do this but I implemented this

class Scope:
	def __enter__(self):
		self.glb_keys = set(globals().keys())
		print(self.glb_keys)

	def __exit__(self, exc_type, exc_value, traceback):
		glb_keys = set(globals().keys())
		for diff in glb_keys - self.glb_keys:
			del globals()[diff]

foo = 1
bar = 2
with Scope():
	baz = 3

print(globals().keys())
♥ 2 ↩ 0 💬 0 comments