#general

1 messages · Page 162 of 1

polar python
#

Rage bait successful ✅

muted shuttle
#

Rage bait successful ✅

untold helm
#

???

#

Rage bait successful ✅

glacial valve
#

No cat neck rest but ts

trail isle
#

holy fuck this client is ancient

glacial valve
ornate latch
#

@half compass

trail isle
digital sable
muted shuttle
#

#

Tap this emote

#

Hold the sparkles

thick tapir
#

i feel braindead reading this shit

jaunty garnet
#

???

trail isle
#

omg you can swipe for remember list

ornate latch
half compass
trail isle
#

i’m keeping this

thick tapir
#

DNA test? The unusual resemblance of a dog to its owner

desert cairn
#

@polar python orchestrator is lowkirkenuinely goated u tell it to make a plan and it reviews the plan with a subagent and then it hands the plan to the orchestrator agent and it does all the tasks in subagents

muted shuttle
#

@polar python orchestrator is lowkirkenuinely goated u tell it to make a plan and it reviews the plan with a subagent and then it hands the plan to the orchestrator agent and it does all the tasks in subagents

ornate latch
#

@polar python orchestrator is lowkirkenuinely goated u tell it to make a plan and it reviews the plan with a subagent and then it hands the plan to the orchestrator agent and it does all the tasks in subagents

polar python
desert cairn
#

mr keto

half compass
#

@polar python orchestrator is lowkirkenuinely goated u tell it to make a plan and it reviews the plan with a subagent and then it hands the plan to the orchestrator agent and it does all the tasks in subagents

desert cairn
#

theyre adding ts to claude code soon me thinks

#

@swift grail stop lurking

polar python
#

apple should just buy anthropic atp

desert cairn
#

its the only way they can get anywhere in ai

desert cairn
#

claude code doesnt have this

crisp saffron
#

Wake up wake up

muted shuttle
#

Ipod

polar python
#

Why are you a vibe coder

desert cairn
#

fr what is nooka vibe coding

polar python
#

Go fix gir buddy

muted shuttle
#

@fervent dove Hi

desert cairn
#

i think if gir was vibe coded it would work better

muted shuttle
#

Piece of shit

trail isle
#

can you run kettutweak in this version @muted shuttle

muted shuttle
#

Nvm it mounted

polar python
#

eject

muted shuttle
#

can you run kettutweak in this version @muted shuttle

trail isle
#

or do i need sm different

muted shuttle
trail isle
#

ok

dense valve
polar python
#

gir unironically needs a ts rewrite

untold helm
dense valve
polar python
#

yes

muted shuttle
#

Ts shit

desert cairn
#

jsx components were my best idea ever

muted shuttle
#

Using too much ram

#

Reboot it

polar python
#

Ok

desert cairn
muted shuttle
#

Ok

#

And

#

Using too much ram

#

Fix it

copper tendon
#

why are mac speakers so good god damn

dense valve
# muted shuttle Ts shit

ts(trollstore) needs a ts(typescript) rewrite because ts(this shit) , ts (trollstore) doesn't work all the time

desert cairn
ornate latch
#

@desert cairn Employment

untold helm
desert cairn
#

keto hasnt been worked on with my opencode setup yet maybe this time it can be good

dense valve
#

ts means this shit

desert cairn
#

nope

#

it means this

ornate latch
untold helm
#

this trollstore type shit this shit typescript

ornate latch
#

Ur making up shit again

jaunty garnet
#

ts is trollstore

#

tns is totally not spyware

ashen basin
#

@crisp saffron started the dlc

ornate latch
chilly bear
crisp saffron
#

also the amount of clothes you get

ornate latch
crisp saffron
#

it's so ridiculous

ashen basin
#

It’s very nice so far

chilly bear
#

oh ok

ashen basin
#

Also didn’t realize this is like a full 10+ hr dlc lmfaoooo

#

Thought it would be a cute 3-4 hour addition

velvet zenith
#

@desert cairn What did you say to her

polar python
velvet zenith
desert cairn
#

too lazy

copper tendon
desert cairn
#

i feel like once i switched to a mac for my laptop i actually started to care more about things a windows laptop could never give me. like really good speakers, an insane trackpad, and an extremely bright display. these are things i probably wouldnt have cared about before having a mac but not i feel like they're essential to me

ornate latch
#

i feel like once i switched to a mac for my laptop i actually started to care more about things a windows laptop could never give me. like really good speakers, an insane trackpad, and an extremely bright display. these are things i probably wouldnt have cared about before having a mac but not i feel like they're essential to me

velvet zenith
#

i feel like once i switched to a mac for my laptop i actually started to care more about things a windows laptop could never give me. like really good speakers, an insane trackpad, and an extremely bright display. these are things i probably wouldnt have cared about before having a mac but not i feel like they're essential to me

ornate latch
#

Big fart

narrow crown
#

@muted shuttle how 2 clean out the stupid ._ files that macos maakes from my ipod file system

muted shuttle
#

Um

#

Idk

velvet zenith
#

rm -rf ._*

polar python
#

@muted shuttle i feel like once i switched to a mac for my laptop i actually started to care more about things a windows laptop could never give me. like really good speakers, an insane trackpad, and an extremely bright display. these are things i probably wouldnt have cared about before having a mac but not i feel like they're essential to me

muted shuttle
#

@muted shuttle i feel like once i switched to a mac for my laptop i actually started to care more about things a windows laptop could never give me. like really good speakers, an insane trackpad, and an extremely bright display. these are things i probably wouldnt have cared about before having a mac but not i feel like they're essential to me

worthy garden
#

@muted shuttle i feel like once i switched to a mac for my laptop i actually started to care more about things a windows laptop could never give me. like really good speakers, an insane trackpad, and an extremely bright display. these are things i probably wouldnt have cared about before having a mac but not i feel like they're essential to me

dense valve
untold helm
#

that would only remove the ones in the current directory not recursively though

desert cairn
#

find . -type d -name "._*" -print -exec rm -rf {}\;

dense valve
#

i believe it would be rm -rf **/._* then

polar python
# velvet zenith rm -rf ._*

This is a Unix/Linux command that forcefully deletes all hidden files starting with "." in the current directory.

Breakdown:
rm - remove/delete command,
-rf - flags meaning "recursive" and "force" (no confirmation prompts),
`.,

    • wildcard pattern matching all files beginning with "._"

Purpose: These "._" files are typically metadata files created by macOS systems (like resource forks) that can appear when files are transferred to non-Mac systems. This command is commonly used to clean up these unwanted hidden files.

Warning: The -rf` flags make this a powerful and potentially dangerous command as it permanently deletes files without asking for confirmation.

desert cairn
#

malware

dense valve
#

to do it recursively

muted shuttle
#

This is a Unix/Linux command that forcefully deletes all hidden files starting with "." in the current directory.

Breakdown:
rm - remove/delete command,
-rf - flags meaning "recursive" and "force" (no confirmation prompts),
`.,

    • wildcard pattern matching all files beginning with "._"

Purpose: These "._" files are typically metadata files created by macOS systems (like resource forks) that can appear when files are transferred to non-Mac systems. This command is commonly used to clean up these unwanted hidden files.

Warning: The -rf` flags make this a powerful and potentially dangerous command as it permanently deletes files without asking for confirmation.

untold helm
fervent doveBOT
#

Shut up

polar python
# velvet zenith Thanks

Hello twin. You are low on keto credits. Please buy more twin. Or we cant chat anymore. Thanks.

muted shuttle
#

नमस्ते ट्विन। आपके पास केटो क्रेडिट कम हैं। कृपया और खरीदें ट्विन। वरना हम और चैट नहीं कर पाएंगे। धन्यवाद।

polar python
#

Hello twin. You have low Keto credits. Please buy more twin. Otherwise we won't be able to chat anymore. Thank you.

polar python
#

@desert cairn error TS2353: Object literal may only specify known properties, and 'thinkingLevel' does not exist in type 'AgentOptions'.

ashen basin
#

I want to live here

muted shuttle
#

@polar python Do u use a docking station with your Mac Book Pro

polar python
#

No my monitor has usb c

desert cairn
#

docking station

muted shuttle
#

Thx

polar python
#

Ok

untold helm
#

?

#

Mods snipe

muted shuttle
#

Snipe what

green sequoia
#

i wanted to test emergency calls on my phones

polar python
#

Do u need a hub or an actual dock

muted shuttle
#

An actual dock

polar python
#

U dont need that

muted shuttle
#

Says who

desert cairn
dense valve
#

check logs

polar python
#

WHy u need a dock ur poor just buy a hub

worthy garden
polar python
#

Same shit

muted shuttle
desert cairn
#

get a thunderbolt 5 dock theyre only like $400

velvet zenith
desert cairn
#

yeah

thick tapir
#

very cool i cant unlock my phone anymore because the touch screen broke 💀

velvet zenith
#

Im trying to beat it in 1 turn

muted shuttle
#

Nvme

#

uhhhh

dense valve
#

?

#

Who said that

muted shuttle
#

There was one from kensington i was looking at

desert cairn
#

Thinking: Let me verify what was done for Task 7.
Let me verify Task 7 implementation:

untold helm
#

Thunderbolt mfs when they pay $717278382717828283 for a faster usb port

desert cairn
#

yeah i want 120 gbps

#

thx

dense valve
#

Firewire better

desert cairn
muted shuttle
#

Says who

untold helm
muted shuttle
velvet zenith
#

i should sell my thinkpad and buy a macbook

polar python
#

Plug it into ur mac mini

#

GOof ball

velvet zenith
#

i lowkey need something lighter

muted shuttle
polar python
desert cairn
#

fr

muted shuttle
#

Macbook pro m4 max 48/1tb

desert cairn
#

THIS IS THE FINAL TASK - COMPLETING THIS FINISHES ALL PHASE 1 & 2 WORK!]

muted shuttle
#

THIS IS THE FINAL TASK - COMPLETING THIS FINISHES ALL PHASE 1 & 2 WORK!]

polar python
#

THIS IS THE FINAL TASK - COMPLETING THIS FINISHES ALL PHASE 1 & 2 WORK!]

untold helm
#

THIS IS THE FINAL TASK - COMPLETING THIS FINISHES ALL PHASE 1 & 2 WORK!]

dense valve
#

THIS IS THE FINAL TASK - COMPLETING THIS FINISHES ALL PHASE 1 & 2 WORK!]

digital sable
#

@compact peak

muted shuttle
#

You're*

dense valve
#

Yo'ree*

polar python
#

Ghostty is such slop

dense valve
#

Wait

untold helm
digital sable
#

what filter bypass

desert cairn
velvet zenith
polar python
#

Idk idc

digital sable
#

ghost ping

muted shuttle
polar python
#

Cladius and claude code combined dont take up 100gb ram

desert cairn
#

@velvet zenith Congrats!

dense valve
polar python
#

Congrats!

muted shuttle
#

@velvet zenith Congrats!@velvet zenith Congrats!

#

@velvet zenith Congrats!

#

@velvet zenith Congrats!

#

@velvet zenith Congrats!

velvet zenith
worthy garden
muted shuttle
#

@desert cairn Send me 8 ball

desert cairn
desert cairn
muted shuttle
#

No

#

You send it

velvet zenith
desert cairn
#

Nah

velvet zenith
#

Where you said gg

desert cairn
muted shuttle
velvet zenith
#

Before i finished

muted shuttle
#

Before you what

desert cairn
#

Big floppa

velvet zenith
#

@k

digital sable
untold helm
velvet zenith
#

J and k are right next to each other in the alphabet

dense valve
velvet zenith
#

@desert cairn Do you see ity

muted shuttle
#

@desert cairn Hey

#

@desert cairn Hurry up

#

@desert cairn

#

@desert cairn I sent it

worthy garden
#

@desert cairn Hurry up

dense valve
#

-! | Attempting a reconnect in 1.89s
Traceback (most recent call last):
File "/opt/venv/lib/python3.10/site-packages/discord/client.py", line 659, in connect
await self.ws.poll_event()
File "/opt/venv/lib/python3.10/site-packages/discord/gateway.py", line 646, in poll_event
raise ConnectionClosed(self.socket, shard_id=self.shard_id, code=code) from None
discord.errors.ConnectionClosed: Shard ID None WebSocket closed with 1000

worthy garden
#

-! | Attempting a reconnect in 1.89s
Traceback (most recent call last):
File "/opt/venv/lib/python3.10/site-packages/discord/client.py", line 659, in connect
await self.ws.poll_event()
File "/opt/venv/lib/python3.10/site-packages/discord/gateway.py", line 646, in poll_event
raise ConnectionClosed(self.socket, shard_id=self.shard_id, code=code) from None
discord.errors.ConnectionClosed: Shard ID None WebSocket closed with 1000

desert cairn
#

@muted shuttle Sorry

#

Just one turned yo ahh

desert cairn
muted shuttle
#

Nebula is an expert at fondling balls

#

Ofc

desert cairn
#

true

#

@polar python ▣ Sisyphus-Junior · gpt-5.2

trail isle
desert cairn
trail isle
muted shuttle
#

@velvet zenith Hey

velvet zenith
muted shuttle
#

Check imessage

velvet zenith
#

Theres nothing

muted shuttle
#

ios 16 users

#

Ofc

#

Yo shit dont work

dense valve
muted shuttle
#

Yea why else would i be asking him to check imessage

muted shuttle
#

I sent 8 ball.

dense valve
#

idk why

hexed lily
#

Vagina boob

muted shuttle
trail isle
dense valve
hexed lily
#

Gm gm

dense valve
#

how are u

hexed lily
#

Bored watching a crappy movie. You?

trail isle
dense valve
#

also bored watching a tv show

#

what movie are u watching

#

(if you don't mind me asking)

ripe anchor
#

rootfs in chat?

worthy garden
ripe anchor
#

Ight, peace out I'll catch y'all later

muted shuttle
#

@velvet zenith Hi

#

Theres a ghost on your icloud account i think

#

Hes speaking to me

#

Calling me slurs

polar python
muted shuttle
#

Ok can you play the 8 ball i sent

#

Please

#

I'm bored

wide canyon
#

****

trail isle
#

gm

#

I FINALLY GOT FEATHER WORKING

#

HOLY FUCK

#

that was dumb

#

who needs livecontainer when the owner of krava gave you a cert for free

hexed lily
dense valve
#

Odd but interesting

sour canyon
#

it's over.... mister beast is banned...... no more free cydia iso 26.......

muted shuttle
#

it's over.... mister beast is banned...... no more free cydia iso 26.......

dense valve
trail isle
#

mf beat me to it

#

trollmaxxing

crisp saffron
#

@muted shuttle Hey dani is the only one online

trail isle
#

i think dani is afk also

#

maybe

muted shuttle
#

Hey

#

@velvet imp

#

Hi

#

@velvet imp

#

Hi

velvet imp
jaunty garnet
#

maxine can i xray

muted shuttle
#

Hey can i reboot the Mc server real quick for something

muted shuttle
#

Thx

trail isle
#

how do i downgrade discord on non jailbroken

narrow crown
muted shuttle
#

@crisp saffron Hey is it starting

jaunty garnet
#

and sideload it

muted shuttle
#

Taking too long to restart i dont like this

trail isle
crisp saffron
#

No

#

It's broken

muted shuttle
#

Fuck

crisp saffron
#

yeah its restarting

ashen basin
muted shuttle
#

Oh ok

#

Fuckass server

#

@crisp saffron Why is it taking so longb

crisp saffron
#

Uhm

muted shuttle
#

Please tell me the plugin isnt broken

#

I wanna r jb mc in vr

vocal plinth
#

Thank god it is broken

ashen basin
#

U fucked it

knotty hemlock
#

is it true that respring daily actually makes phone not laggy on jb

crisp saffron
#

Hang on

muted shuttle
#

Im barely hanging on

vocal plinth
#

Anything ruin @muted shuttle’s day

dense valve
#

but not really

muted shuttle
#

@velvet imp Hey in the mean time u can join maxine mc 192.168.1.12:25565

vocal plinth
#

Shut up stupid cat

crisp saffron
#

Not happening @muted shuttle

muted shuttle
#

Is it broken

#

Is it really broken

#

Have you tried hard enough

knotty hemlock
crisp saffron
#

no

muted shuttle
crisp saffron
#

the server is actually broken now?

muted shuttle
#

Did you remove the plguin ?

crisp saffron
#

wtf did you do

dense valve
#

;et me try logging on

#

let

velvet imp
#

Oh no

muted shuttle
#

All i did was /restart

#

?

vocal plinth
#

Restarts server

muted shuttle
#

restartThe /restart command is part of Spigot’s restart mechanism, which makes the server restart when it crashes or the command is run manually.

dense valve
#

Sorry i lied

muted shuttle
#

Dog no it doesnt

crisp saffron
#

Ok

muted shuttle
#

@crisp saffron Hey

#

Its back

crisp saffron
#

it was worldedit

#

?

#

Wtf

muted shuttle
#

wtf

trail isle
#

dawg

vocal plinth
dense valve
#

im in

muted shuttle
#

So no worldedit ?

#

Did we even need it for anything

crisp saffron
#

NAh not really

#

Well

muted shuttle
#

Good

crisp saffron
#

Sorta yeah but no

velvet imp
#

Wooden axe dupe

crisp saffron
#

That was going to be my saving the end strategy

muted shuttle
#

Can you not just copy the end folder and rename it

velvet imp
velvet zenith
muted shuttle
#

I didnt break shit

#

Nooka fault

crisp saffron
#

Hey theres farms people want to save

muted shuttle
#

Sounds like not an us problem

velvet zenith
#

Ok so u copy the end folder

crisp saffron
#

Also no bc we pregenned the end!

velvet imp
vocal plinth
velvet zenith
#

Oh

#

Haha

half compass
muted shuttle
velvet zenith
#

What happened to the end

half compass
#

Why is it pregnant ?

crisp saffron
#

You did

muted shuttle
#

I wasted my own resources for pregenning it

#

Thats right

velvet imp
crisp saffron
#

You offered

velvet zenith
#

Lol

muted shuttle
crisp saffron
#

i'll force him

half compass
#

I can steal the new dragon egg

#

Thank god

velvet zenith
#

forced u to pregen useless chunks btw nobody play ts anymore

trail isle
#

maxine you LIED muffinstore does not work on latest ios

velvet imp
half compass
muted shuttle
trail isle
fossil citrus
trail isle
#

i have to build it bruh

#

wait couldnt i just extract the ipa from my other phone with the version i want and sideload it

muted shuttle
#

Yea

trail isle
#

im doing that thats a lot easier

#

wait

#

how

#

do i do that

muted shuttle
#

install app

#

dump ipa using trolldecrypt

trail isle
trail isle
#

i got suggested that earlier

worthy garden
#

piracy in chat

burnt kite
#

Is it possible to share videos over LAN to omnihub? hm

#

stkc's app i mean

crisp saffron
polar python
#

omni hub

#

or ask claude to vibe code u a stremio addon

worthy garden
polar python
#

prolly faster than setting up jellyfin

#

:androidsob:

dense valve
trail isle
#

how tf do i get this off of here

muted shuttle
#

air drop

#

wait

#

rename .ipa to .tipa

#

then airdrop

trail isle
#

can you just airdrop from in filza

trail isle
muted shuttle
#

Yea

trail isle
green sequoia
#

rate the aliucord and gboard setup

#

screenshot from 2022

trail isle
#

@muted shuttle erm

#

it just sits on this loading thing

#

forever

lunar nest
trail isle
#

like

#

2022

lunar nest
#

i see

indigo bough
#

hi

trail isle
#

works on my se3 i downgraded it properly

#

im trying to get it to work on my 13 mini

#

i decrypted it from the se3 and sent it to my main phone

#

and

#

i just

#

get

#

loading screen

#

forever

chilly bear
#

haha stupid

trail isle
#

NOW IT JUST DOESNT OPEN

#

it just crashes immediately

#

this is poo

#

wait

#

is it because

#

its signed to my apple id in some way and i used a krava cert to install it

#

hm

chilly bear
#

lovely

trail isle
#

weird

chilly bear
#

besides it opened before so

jaunty garnet
chilly bear
jaunty garnet
#

ok

chilly bear
worthy garden
trail isle
#

trying an even older version

chilly bear
trail isle
#

i dont even care to mod mobile discord i just want old ui

muted shuttle
#

@polar python @desert cairn @velvet zenith

trail isle
#

triple ping

muted shuttle
#

👁️

green sequoia
lunar nest
desert cairn
#

diuscord 67

trail isle
trail isle
muted shuttle
#

No look at the date

green sequoia
#

old discord looks much better

trail isle
#

oh

muted shuttle
#

January 11.

trail isle
#

ok

#

nerd

chilly bear
#

it's her birthday just ignore it

trail isle
#

i hate airdrop it never works

#

the collection

jaunty garnet
#

why does it say ipa if its a tipa

chilly bear
#

what does the old ui look like

trail isle
#

this is 213.1

chilly bear
#

the ui never changed.

trail isle
#

i hate macos why did it do that

lunar nest
#

Did u tell it to keep .ipa when editing

trail isle
#

its just

#

a bum

scenic atlas
#

man i wish i had someone to play fortnite with

chilly bear
scenic atlas
#

will he play wit me!?

chilly bear
#

yes

muted shuttle
#

Navigate to where ipa is

chilly bear
#

he is very good fortnite player

muted shuttle
#

mv Discord\ 67.0.tipa.ipa Discord\ 67.0.tipa

#

Boom.....

#

Works....

trail isle
#

i just made it so finder always shows extensions fr

scenic atlas
scenic atlas
#

are there any mentally sane people in this chat

jaunty garnet
#

no

scenic atlas
#

damn

trail isle
#

can you actually not save gifs to favourites on this version

trail isle
#

what the hell

scenic atlas
muted shuttle
#

Vendetta has one

trail isle
scenic atlas
trail isle
#

i’m using an old version of the app no

scenic atlas
#

yea u couldnt star gifs until like 2023 or 2024 lol

trail isle
#

NEVER MIND THE VENDETTA DISCORD HAS IPAS I DONT NEED TO DO ANY OF THIS

#

FML

desert cairn
trail isle
#

instagram

ashen basin
muted shuttle
jaunty garnet
#

does anyone even use the app store on mac

#

its useless

muted shuttle
#

For some things

trail isle
jaunty garnet
#

useless besides apple software

trail isle
#

vendetta in the big 26

trail isle
jaunty garnet
trail isle
#

what

jaunty garnet
trail isle
#

best mac app

#

runcat

jaunty garnet
#

the only app store app i have is UNZIP - Rar 7z Archiver

trail isle
#

ew

jaunty garnet
trail isle
#

the unarchiver exists

trail isle
jaunty garnet
#

???

#

what exists

trail isle
#

better unzipper for mac

muted shuttle
#

keka

trail isle
#

i just doxxed my city.

#

amazing

#

great

#

fantastic

jaunty garnet
#

what

#

you didnt?

trail isle
#

my city name was in the spotlight results

jaunty garnet
trail isle
jaunty garnet
#

isnt that the 2nd opsec leak today

muted shuttle
trail isle
muted shuttle
#

I didnt know "the" was a city

jaunty garnet
#

mods

#

maxine is message logging

trail isle
muted shuttle
#

Ohhhh

trail isle
#

city

#

that i am in

jaunty garnet
#

the undergrad ❌

chilly bear
trail isle
#

shush

lunar nest
trail isle
#

I CANT INSTALL IT

#

WTF

dense valve
trail isle
#

says windows sideloadly doesnt work

#

im using feather

#

maybe its just broken

#

ill try kravas web signer ig 😭

chilly bear
#

just use 198 with enmity 💔

trail isle
#

i wanna get this to work

#

i am

#

determined

#

undertale reference

chilly bear
trail isle
#

i will get vendetta 204.0 working

#

if i give up

#

then i wont

#

but

#

blah

#

oh

#

im a idiot

#

wait

#

IT WORKS

thick tapir
#

zamn i get a free field trip to houston for comp 🎉

fossil citrus
#

and I got airpods today

trail isle
#

better

muted shuttle
#

Message logger

thick tapir
#

3 day trip for a 1 day comp 🙏

trail isle
#

mods message logger

dense valve
thick tapir
#

something

dense valve
#

ok

versed sun
jaunty garnet
#

no

#

too expensive

desert cairn
#

3rd time you've sent this here

#

We don't care

trail isle
#

fr

narrow crown
versed sun
#

And discord compression

#

Making 120 look like low bitrate 30hz

worthy garden
ashen basin
#

No

worthy garden
#

Why

ashen basin
#

Too bright

thick tapir
#

i only fw fridge rgb

jaunty garnet
#

fridge rgb ???

ashen basin
#

Got your desk looking like vegas

thick tapir
#

all white in this bitch

versed sun
worthy garden
versed sun
worthy garden
versed sun
thick tapir
worthy garden
versed sun
worthy garden
#

Shut up

chilly bear
lost dawn
#

fr

worthy garden
versed sun
worthy garden
#

Ok

trail isle
#

null what plugins do i need to make old discord usable

#

@chilly bear

chilly bear
#

oh and message logger

versed sun
thick tapir
trail isle
#

and

thick tapir
#

but fye

worthy garden
trail isle
#

forwards dont show

chilly bear
#

i wish someone would make a plugin to use commands

trail isle
#

no / commands is lowk a dealbreaker

versed sun
worthy garden
jaunty garnet
versed sun
#

Rage bait

worthy garden
trail isle
jaunty garnet
#

oh

#

you want old ui

trail isle
#

which is annoying cuz kettu is the only ios mod not dead 😭

#

aliucord exists for android and im jealous

trail isle
worthy garden
gusty gulch
versed sun
jaunty garnet
worthy garden
versed sun
worthy garden
#

Bro fell off

versed sun
worthy garden
#

Ur noob

ashen basin
thick tapir
ashen basin
#

Fighting just to fight. Teammates punching each other 😭😭

thick tapir
#

actual demon shit

ashen basin
#

Love that

muted shuttle
#

thx amazon

#

I’ll be sure to check back in on this when I have a nerdy bf before Valentine’s Day

#

(not happening)

jaunty garnet
#

it’s not even February

trail isle
jaunty garnet
trail isle
#

of course i have ellekit

agile wing
trail isle
#

ah

#

yeah you’re right

earnest crag
#

QEMUAppleSilicon by ChefKissInc has just gotten a new name "Inferno"

muted shuttle
#

Sorry

#

I’ll keep dreaming

trail isle
#

so peak

half compass
#

Its been snowing for a week straight

indigo bough
half compass
#

im going to kill myself

indigo bough
half compass
#

😭

#

i swear theres like 9 inches of snow

indigo bough
#

damn

versed sun
indigo bough
#

abt a week ago we got 21 inches in 8 hours

half compass
indigo bough
#

shit was crazy i havent seen that amt of snow in yrs

trail isle
half compass
#

my grandma lives in like

#

a more mountainous region

#

there's probably so much snow there

#

😭

versed sun
half compass
#

where the fuck are you from

#

alaska?

alpine chasm
#

For those of you who want the Windows 8 “tiles” Start Menu on Linux… I have good news!
︀︀
︀︀Someone has recreated the Windows 8 Start menu… for Linux.
︀︀
︀︀In Python. Using Qt.
︀︀
︀︀Because… he “kind of missed it”.
︀︀
︀︀He then announced it on Reddit, which caused another developer to chime in…
︀︀
︀︀www.reddit.com/r/linux/comments/1q7bk3w/i_made_windows_8_start_menu_for_linux/
︀︀
︀︀“heres my one,” said the other dev, linking to his own Win8 Start Menu for Linux project. “i am daily driving it its made in QT and C++ and fully functional its made for labwc and hyprland in mind”
︀︀
︀︀github.com/er-bharat/Win8DE

**💬 47 🔁 19 ❤️ 257 👁️ 14.6K **

versed sun
half compass
jaunty garnet
#

how do i unslop macos 26.2

trail isle
half compass
#

???

jaunty garnet
#

dont wanna lose any data

half compass
#

what the fuck does unslop mean

#

define unslop

versed sun
jaunty garnet
half compass
jaunty garnet
#

i mean like

#

the battery is shit on 26.2 compared to 15

#

im not getting the 16h advertised but rather 5 hours

#

which is 3x worse

versed sun
#

How do I get aura creator to detect my 3080 fe

jaunty garnet
#

its very buggy and slow when it comes to ui

jaunty garnet
half compass
jaunty garnet
#

so it shouldnt be feeling slow at all

#

clearly a software issue

half compass
#

yeah i think you might just have to downgrade to sequoia

jaunty garnet
#

shit

half compass
#

funnily enough i have experienced like

#

no lag on 26

#

and im on m2

jaunty garnet
#

well its mostly fine

#

its just tiny details in the ui

#

like when you scroll down to the phone apps in the apps thing it goes down to 15fps

#

and tons of the ui is at a similar framerate

#

window resizing is really bad

#

besides that its fine

half compass
#

did my appleinternalware randomly uninstall itself

#

what

jaunty garnet
#

purplejailbreak

dense valve
#

Thank you so much 🙏

jaunty garnet
#

is stage manager useful

dense valve
#

depends

#

if u have a lot of windows i guess

#

i use it raely

#

rearely

#

rarely

jaunty garnet
#

why is chrome apps purple

#

slopware

slim nova
#

i3 or hyprland

trail isle
trail isle
jaunty garnet
trail isle
#

hyprland is slopware

slim nova
jaunty garnet
#

isnt hyprland pedoware

#

or am i wrong

trail isle
#

i might give up on old discord and go back to kettu

#

this is

#

missing too many features

half compass
jaunty garnet
#

oh

half compass
#

it is pedoware too but also fascistware

jaunty garnet
#

2 in 1

slim nova
jaunty garnet
trail isle
#

but doesn’t use old ui

slim nova
#

hm

#

ok does it support android or ios

trail isle
#

both

#

i think

lunar nest
#

yeah

jaunty garnet
#

how do i convince my parents to switch to apple music

trail isle
jaunty garnet
trail isle
jaunty garnet
#

oh

lunar nest
trail isle
#

it’s coming in the mail

trail isle
jaunty garnet
#

my opsec phone uses a tello plan

lunar nest
trail isle
lunar nest
#

oh

jaunty garnet
#

didnt aliucord backport a ton of new features

#

like nicknames

#

and the new username system

trail isle
lunar nest
jaunty garnet
#

i know

#

but what did it backport

lunar nest
#

atp i think basically everything

trail isle
#

yeah my friend uses aluicord and apparently most stuff has been

lunar nest
trail isle
#

im not doing allat

#

someone else can do that

lunar nest
trail isle
#

@obsidian chasm get on this shit

fading panther
#

hello who ping

lunar nest
trail isle
dark osprey
#

@muted shuttle

muted shuttle
#

Hi

jaunty garnet
#

@muted shuttle

muted shuttle
#

Hi

desert cairn
#

@muted shuttle

trail isle
#

@muted shuttle

muted shuttle
#

Hi

#

Hi

harsh bolt
#

Happy Birthday Maxine

muted shuttle
#

Thank u :3

desert cairn
#

Happy Birthday Maxine

fervent doveBOT
#

@muted shuttle's timezone is US/Central
It is currently 11:02 PM CST

jaunty garnet
#

is it actually maxines birthday this time

muted shuttle
harsh bolt
#

Lenny ur too mean

trail isle
muted shuttle
#

In an hour for me

jaunty garnet
harsh bolt
desert cairn
#

January 67th

muted shuttle
#

But it’s January 11th for some already

dark osprey
muted shuttle
trail isle
#

i’ll say happy bday when i wake up

fervent doveBOT
#

@spark gale's timezone is America/New_York 🇺🇸
It is currently 12:02 AM EST

dark osprey
#

.remind 1hr kill maxine

#

no remind bot

desert cairn
#

.remind 1hr kill maxine

muted shuttle
#

What time zone is gir in

desert cairn
#

Keto remind me

polar python
#

gir bro

trail isle
#

.remind 1hr kill maxine

polar python
desert cairn
polar python
#

u dont get bd role anyway a mod does it

harsh bolt
#

No the fuck bro ain’t

muted shuttle
#

Oh right

trail isle
harsh bolt
#

Wait yeah

#

Nvm I’m wrong

desert cairn
#

Gir can't touch you

polar python
#

i can touch gir

muted shuttle
#

Gir would beat my ass if he could

polar python
#

good

fading panther
#

ask aaron for the real one

desert cairn
#

I would beat gir

polar python
#

not her bday yet pls remove

fading panther
polar python
#

1 hour

muted shuttle
fading panther
muted shuttle
desert cairn
#

Aaronp67

polar python
#

Aaronp67

muted shuttle
#

In 56 minutes it’ll be my birthday in my timezone

fading panther
#

also why the frick is apple sending me ads fuck em

desert cairn
#

Fitness+ is slop

dark osprey
fading panther
desert cairn
#

@polar python They have ai coding cli tool auto runners in termius

polar python
#

i am not using termius slop they stole my ssh keys

muted shuttle
#

@polar python They have ai coding cli tool auto runners in termius

#

Yay :3

#

Birthday Mod.

dense valve
#

@muted shuttle Happy birthday twin

muted shuttle
#

Thank u

jaunty garnet
#

@muted shuttle Happy Birthday!

muted shuttle
#

Thank u brain worm

desert cairn
#

Rfk

jaunty garnet
#

Rfk

muted shuttle
#

It’s hot as hell in my room

dense valve
#

Same

muted shuttle
#

I think aaron has tapped into my ac to turn my room into an oven

#

As a birthday gift

dense valve
#

Birthday gift to maxine from aaron is demotion

#

joke

desert cairn
fading panther
#

cum

#

as in cock

polar python
gusty gulch
desert cairn
muted shuttle
#

Leaked on Google

digital sable
#

happy bday maxine

muted shuttle
#

Look up stekc api keys

digital sable
#

are you 14

muted shuttle
gusty gulch
#

joe mama

polar python
muted shuttle
#

Im a major

alpine chasm
digital sable
desert cairn
polar python
digital sable
#

join the thug shake club 🔥

muted shuttle
#

Must edit bio now

jaunty garnet
desert cairn
#

Renew it ???

muted shuttle
#

Even though im not 18 in my time yet

polar python
#

Thats al ot of work

digital sable
#

maxine your bio is outdated

alpine chasm
muted shuttle
#

But I’ll probably be asleep so we ball

fervent doveBOT
#

@muted shuttle's timezone is US/Central
It is currently 11:10 PM CST

fading panther
#

wtf

#

hdr meme

alpine chasm
#

I do not care

polar python
#

fuck off bro this is burning my retinas on my m4 max mini led display

trail isle
desert cairn
#

Why is that filtered

desert cairn
fading panther
digital sable
muted shuttle
#

fuck off bro this is burning my retinas on my m4 max mini led nano texture display

fading panther
polar python
#

We are ALL ignoring option #6 @desert cairn

desert cairn
#

I love LLM slop

desert cairn
alpine chasm
#

@muted shuttle you wasted your Aaron attention span and didn't ask for a pink bday role

muted shuttle
#

@spark gale Can i have a pink bday role

#

Please.

polar python
#

Double ping + useless ping

polar python
#

Demote and mute

desert cairn
#

Mute her

muted shuttle
#

wtf

polar python
#

thats disgusting

alpine chasm
#

Wtf

desert cairn
#

Mute her for 25 hours so she's forced to spend her birthday not online

muted shuttle
#

For my birthday i will be banning one random member

polar python
#

keep it pls aaron

muted shuttle
#

It’s you @desert cairn

#

Wtf

polar python
#

Yay

alpine chasm
#

You gave him my color

desert cairn
#

Thank God

muted shuttle
#

Dark red

alpine chasm
#

Her