#🧊-off-topic-iceman-only

1 messages Β· Page 3340 of 1

steep vigil
#

A ton of ppl here play roblox

bold adder
#

i get sidetracked by making my code better

slow crag
#

can you stop doing this now this got annoying very fast

bold adder
#

so i barely progress

winged rapids
#

i had max volume

steep vigil
#

Oh god monika is here we are doomed

open pasture
#

@winged rapids where's yi sang acc 1

steep vigil
#

@jagged skiff uve doomed us all

jolly templeBOT
#

should talk

winged rapids
#

dude they fired the giy who banned schleo

#

Guy

jagged skiff
#

dont care

winged rapids
steep vigil
#

It is weird

#

But like

#

Not fully wrong either

bold adder
#

not wrong

jagged skiff
#

not if its true

main wyvern
#

roblox doing jack shit against the pedos feels weird lol

open pasture
#

It's full of pedophiles

winged rapids
#

dude they wouldnt evem k ow what a pedi is

jolly templeBOT
#

erut...

winged rapids
#

Know

#

Pedo

bold adder
jagged skiff
winged rapids
#

JUST TELL THEM PEOPLE THAT LIKE YOU

#

and adults rhat like you

steep vigil
winged rapids
#

capslock

bold adder
#

dont tell em that way just tell em there are weird people

jagged skiff
#

this is like saying that all seas are salty but that going for a swim in the dead sea is totally okay

bold adder
#

it is though

steep vigil
#

WHAE

jolly templeBOT
#

campari is generous

steep vigil
#

WHAR

#

DRESS TO IMPRESS IS IN THE GAY COMMUNITY?

#

😭

bold adder
jagged skiff
#

never seen a queer person play dress to impress but okay

steep vigil
#

Play guts and blackpowder, wont regret it

#

Holy shit this a take i never expected to hear on this server

jagged skiff
#

that explains it

#

drag streamers

jolly templeBOT
#

$50.00/mo :cirno_sob:

open pasture
#

Sharp jump to conclusion

steep vigil
#

Whar

weak vale
# open pasture

let's fucking go baby that:s what it's all about love berries thats whay im talkibg out

jagged skiff
#

i never said that

open pasture
jagged skiff
#

no wait i didnsay the second thing

#

but absolutely not the first

steep vigil
jolly templeBOT
#

vendetta fork fork...

grizzled reef
open pasture
weak vale
steep vigil
jagged skiff
#

yeah i meant the second part

#

i understand the confusion

jolly templeBOT
#

you're a backup avatars)

open pasture
#

Fair enough

steep vigil
#

@jagged skiff dms

jagged skiff
weak vale
#

@jagged skiff DO NOT OPEN DMS

open pasture
#

@weak vale check vencord server

surreal ridge
#

DMs ;)

open pasture
#

;)

jagged skiff
#

omg bnuuyy

jolly templeBOT
#

plsss

jagged skiff
#

yees

#

bnuuy

open pasture
#

@jagged skiff check direct messages

jagged skiff
#

O

steep vigil
surreal ridge
#

@steep vigil check indirect messages

steep vigil
surreal ridge
#

yep

steep vigil
#

Aw

#

Can i fry it

surreal ridge
#

do as you wish

steep vigil
#

Yippee

#

Besties

surreal ridge
#

make a bird stew

jagged skiff
#

wordle time

open pasture
#

@surreal ridge check broadcast messages

jagged skiff
#

Wordle 1525 3/6

β¬›β¬›πŸŸ¦πŸŸ§β¬›
β¬›πŸŸ§πŸŸ¦πŸŸ§πŸŸ§
🟧🟧🟧🟧🟧

jolly templeBOT
#

kevin has no spoons

jagged skiff
#

fuck yeah

jagged skiff
jolly templeBOT
#

inside and abuse them lol i'm a latina guy's server space is your mom i rember everyone understands that idea nevertheless

jagged skiff
#

@weak vale can i join the call

jagged skiff
#

what !!!

#

insane

open pasture
#

@jagged skiff no but bro how are you not regular

weak vale
jolly templeBOT
#

:YES:

open pasture
#

Mods give this italian regular

weak vale
#

snipper should be made colorful

open pasture
#

He's a true homie

jagged skiff
open pasture
#

Part of the joint

open pasture
#

But not multicolour

#

Make him shit colour like now

jolly templeBOT
#

there's only place to cure insomnia

jagged skiff
#

i like thje pink

#

isnt donor above regular anyway

open pasture
#

Yeah

jagged skiff
#

pink!! pink!!!!!!!

austere cobalt
brittle edge
#

yo

jagged skiff
#

gurt: hi

terse cedar
#

i just found some vnc where some employee was working and i just started messing with them

austere cobalt
bold adder
#

hahaha

#

stupid fucking company

#

300 dollars to install an OS back on my mac

#

they think im retarded

jolly templeBOT
#

~~what's an option for real sawg

bold adder
#

i did it myself

open pasture
bold adder
#

finally i can sleep

#

nvm fixes

spark crescent
#

Help me

gentle silo
bold adder
#

raw

#

idk wtf a framework is

dark sequoia
#

framework makes laptops

bold adder
gentle silo
bold adder
jolly templeBOT
#

god fucking bellay

lavish owl
gentle silo
terse cedar
lavish owl
#

if you think it's not fine to send, then don't. it's common sense

#

(i'd still do it because i'm dumb af)

stark herald
bold adder
#

yea

jolly templeBOT
#

forf

fickle cosmos
bold adder
#

im trying to make it

#

but its hard

stark herald
#

a framework like react lets you mix html inside javascript so basically you'd make functions that return html like this

function MyThing() {
  return (
    <div>
      hi
    </div>
  )
}

and that's called a component and you can use it within other components like <MyThing />
or you can make it take "props" to pass on arguments like <MyThing active={true} color="red" />

jolly templeBOT
#

waow

bold adder
#

i might try that later since eveything is messy

lapis lava
#

imo get a good grasp of html/css/js before using react or other frameworks

#

i personally prefer using none

bold adder
stark herald
#

and then react has this "reactivity" thing which means you can have variables that when are changed the component re-renders meaning the function runs again with the updated values like this

function Thing() {
  const [count, setCount] = React.useState(0);

  return (
    <button onClick={() => setCount(count + 1)}>You clicked {count} times</button>
  )
}
``` and basically when "count" changes the component runs again and anywhere "count" is used will automatically change
lapis lava
#

i love DOM Manipulation @stark herald

stark herald
#

oh Ok

stark herald
jolly templeBOT
#

ty fr hot pocket

stark herald
#

i never rly made a raw site before react and astro

#

I did make small things i used

#

meow

#

my first react experience was vendetta

gentle silo
#

I've made a site for myself using plain HTML5 + CSS + JS, but the HTML needed to be remade occasionally, so I ended up making my own script for it

#

Currently messing around with astro's starlight for a documentation site

spark crescent
stark herald
#

@spark crescent cute pfp

echo flint
#

Apple music, your welcome

fallow pawn
#

@shrewd pollen im not the person you're looking for sorry

jolly templeBOT
#

chipotl is required

echo flint
#

Probably

#

Idk

open pasture
hallow dock
#

HELL NAW

main wyvern
#

hell yeah

open pasture
#

Create DM

#

I had a dream where discord looked like aliucord ui but more modernized like the react native version

#

If you have dreams about discord, its over i think

fickle cosmos
#

I had a dream about discords data center being set alight

open pasture
#

Im gonna fulfill your dream soon

stark herald
#

@silk kraken

bold adder
#

i had a dream i went down a narrow tunnel and there were bees and then i swam with alligators

terse cedar
signal rose
#

the last time I had a dream was like 12 years ago and it was about being chased by 3 wolves in my house

jolly templeBOT
#

what?

signal rose
#

ikr

echo flint
spark crescent
#

im a she her from birth

echo flint
short summit
#

One message removed from a suspended account.

fickle cosmos
open pasture
signal rose
open pasture
#

Happens to me too. I will COMPLETELY forget my dream right as i wake up. Sometimes theres remnants of it in my memory which just blend into reality and my brain cant tell if its a dream or not

#

I do always remember nightmares though, for whatever reason

open pasture
#

Wordle 1525 5/6

⬜⬜⬜⬜⬜
🟨⬜⬜⬜⬜
⬜⬜⬜⬜🟨
🟨🟩🟨🟩⬜
🟩🟩🟩🟩🟩

echo flint
#

What?

open pasture
echo flint
jolly templeBOT
#

9a is just nitro anyway

open pasture
#

.
⬜⬜⬜⬜⬜
🟨⬜⬜⬜⬜
⬜⬜⬜⬜🟨
🟨🟩🟨🟩⬜
🟩🟩🟩🟩🟩

echo flint
#

No

open pasture
#

Yes

echo flint
#

Bonk

open pasture
#

You WILL play wordle

echo flint
#

Noh I wont

open pasture
#

Yes you will

echo flint
#

Wrong answer

open pasture
#

Im gonna force everyone to play wordle

weak vale
#

⬜⬜⬜⬜⬜
🟨⬜⬜⬜⬜
⬜⬜⬜⬜🟨
🟨🟩🟨🟩pearto
🟩🟩🟩🟩🟩

open pasture
weak vale
#

i found the hidden pearto in today's wordle

echo flint
echo flint
open pasture
#

Gore of your comfort character

jolly templeBOT
#

imo get level 78

weak vale
open pasture
echo flint
jolly templeBOT
#

in 40k

open pasture
open pasture
echo flint
jolly templeBOT
#

dev://branch/

open pasture
#

dev://branch/

#

dev://twig/

spark crescent
#

@open pasture

#

bear5 behind you

open pasture
#

AAAAAA

#

eats him

#

Why is it flickering so much. Its hurting my brain

jolly templeBOT
#

migrate to also hate aliucord doesnt

open pasture
#

Remove the flickering frames

main wyvern
#

remove the farnsies

weak vale
#

farnsiectomy

open pasture
jolly templeBOT
#

mwa

open pasture
#

Kevin loves me

#

@main wyvern mad because they dont have an ai boyfriend

main wyvern
#

ew no

open pasture
#

Let some love into that foul heart of yours

#

Ai is so beautiful

main wyvern
#

nin0 alt

open pasture
#

Who needs people

open pasture
#

How dare you lower me to that level

#

@main wyvern this is who you husked

#

Let that sink in

#

Youre messed up

#

How do you not feel remorse

jolly templeBOT
#

pamn

open pasture
#

Look at it

#

So hapoy

#

We need to kill you

long rampart
#

Pamn broken_love

jolly templeBOT
#

nasty

echo flint
open pasture
#

@golden rivet

#

@golden rivet

#

@golden rivet

#

@golden rivet

#

Just pai'd my pai

bold adder
open pasture
echo flint
#

h

jolly templeBOT
#

dementia

echo flint
short summit
#

One message removed from a suspended account.

open pasture
#

Look at this NERD

#

@short summit I went to this town and everyone said it was yours

echo flint
jolly templeBOT
#

a sus link.

fast imp
#

dude what's up with the random people fr'ing me lately

#

they're all from client modding servers too

jolly templeBOT
#

imma say to store all hate

bold adder
#

is this a framework

#

idfk

#

its an html in a js

tall karma
#

hello jlrlolo

echo flint
tall karma
#

no

echo flint
vivid hill
#

yo guys.. choose for me wires

1 -> kettu
2 -> Aliucord
3 -> Bunny```
jolly templeBOT
#

filthy clanker lover

hard kite
#

it's dead </3

lapis lava
#

kettu is the new kid on the block and i bet will die in three months (RN modding seriously needs to unite)
bunny is dead

aliucord is alive with many backported features but old discord

tropic niche
#

i'm in a server that will mute or ban you for talking about using a custom discord client and i'm just sitting there like. how is that any of your fucking business.

bold adder
spark crescent
#

can aliucord game

tropic niche
#

can you?

spark crescent
#

ummm uhmm um ummm

lapis lava
#

how

jolly templeBOT
#

should use it, you @open pasture stinky canandiasns before bunny if anything the fights of mine

lapis lava
#

man i wanna bypass an icloud

fallow drum
#

my icloud bypass itches

austere wren
#

is there anywhere that u can suggest something onto a command or does that fall in request category

marsh meadow
#

guys question ik it s not support jsut a queestion is there any plugin where i can change my banner?

austere wren
#

too much coding to do that i dont know how

#

for lastfm rpc

lapis lava
marsh meadow
#

GUYS guys srs question sdo men or men or men ORRR men +clyde

#

i dont need support it was a question cuz im lazy </3

open pasture
#

shut up

marsh meadow
#

I DO NEED the support on my bfs chair its finan break sigh

open pasture
errant bough
#

has chat been good today

open pasture
#

no

spark crescent
#

i needy support

jolly templeBOT
errant bough
unborn magnet
#

@raw panther They’re copying you KitaFear

jolly templeBOT
#

aluminum? it wasnt, but when lucifer rebelled against god if just needs some sort of code lockscreen ?

hollow surge
#

wait that's the wrong file

bold adder
#

I DO NEED the support on my bfs chair its finan break sigh

jolly templeBOT
#

cm first electronic device >is an exam just for internal development tools without async" 😭

spark crescent
#

I Hate My School

open pasture
#

@spark crescent i retract my retraction of my prior statements

#

@spark crescent I came out to my mom and she asked me why i want to bwaa 😭. I told my mom i am :3 and she said, " So you like bwaah now?" Honestly i was a bit taken aback. I kinda expected it for her not to take it well but her being so explicit just threw me off a litle. I explained to her it didnt matter, I am :3 and I just like :3c and then she cut me off and said "No son of mine is going to bwaa with his mouth" and i just burst out crying and she just left the room. ):

#

Walking home today, some fucker bumped into me and instantly started talking shit about aliucord being the best clientmod. I tried to remain calm and explain to them that any of the vendetta forks was the best clientmod, but they wouldnt take a hint. They started throwing around words like "native kotlin app" and I lost it. Punched them in their aliucord loving fuck face.

I hate aliucord so goddamn much.

jolly templeBOT
#

pretty much social and becomes watery

bold adder
#

oh my god πŸ’€

#

this video was so absurd

#

my friend sent me it today

open pasture
#

Hes not quirky anymore πŸ’”

bold adder
#

i had a good laugh

#

good skit

main wyvern
#

Walking home today, some fucker bumped into me and instantly started talking shit about aliucord being the worst clientmod. I tried to remain calm and explain to him that aliucord was the best clientmod, but he wouldnt take a hint. He started throwing around words like "react native" and I lost it. Punched him in his aliucord hating fuck face.

I love aliucord so goddamn much.

jolly templeBOT
#

vscode?

spark crescent
#

walking home today.. school was so fun!! i learned some things here and there,,

i love school so much!!!

#

πŸ‘ΆπŸ‘ΆπŸ‘Ά

#

im nights

open pasture
#

Life as a NEET is so exciting. I was watching anime in my bedroom, now im in the kitchen looking for a midnight snack. Who knows what'll happen next

bold adder
spark crescent
#

@open pasture let's start doing noobbait

open pasture
spark crescent
#

that's what biibbaits is

jolly templeBOT
#

iphones deliberately do something onto the privacy

spark crescent
#

you act like a noob for a long term

open pasture
#

Jajaja

spark crescent
#

@open pasture let's play ffxiv

hard kite
spark crescent
#

yay

chilly birch
#

Gm chat blobcatcozy

#

So how are you all?

hard kite
#

gmmm

#

Sleepy.

open pasture
#

bruh you aint saying what you think you are

jolly templeBOT
#

yuh

hard kite
#

didn't even notice it

bold adder
#

should i just put the weaknesses below or both weaknesses and resistances

jolly templeBOT
#

yuss

open pasture
#

you TYPED it

hard kite
open pasture
hard kite
#

Because many words in my language are written with an F

open pasture
hard kite
#

But with a ph in English

bold adder
#

phake

jolly templeBOT
#

most normal person now don't want vencord user, but windows 7 years more damage

hard kite
#

For example

bold adder
#

*phor

hard kite
#

filosofia -> philosophy

hollow dew
burnt maple
#

technologia

open pasture
#

Lets kill @weak vale

tame thorn
spark crescent
bold adder
open pasture
spark crescent
#

i don't get the appeal sorry

open pasture
#

Youre lame

#

@weak vale lets kill @spark crescent

red wyvern
#

Not as lame as Silence Suzuka after she passed the tree on that one racetrack

spark crescent
hard kite
jolly templeBOT
#

yippee

hard kite
errant bough
# hard kite

I can't believe the pedophile got banned for racism

#

He loved to race...

hollow surge
#

oh my god laufey singing in icelandic is so good

lapis lava
#

i’ll listen on Saturday i have work tomorrow

hard kite
#

She's from Iceland and I didn't know </3

hollow surge
#

Poser...

spark crescent
#

you see

#

we haven't seen the same things

#

we don't have the same dreams

#

so you can't really see me

hollow surge
#

yes we do

jolly templeBOT
#

wjat

spark crescent
#

and you know

#

we don't have the same hurt

errant bough
#

How can people live in a land of only ice

spark crescent
#

we don't have the same dirt

jolly templeBOT
#

bunny meat

spark crescent
#

and it shows

jagged skiff
#

i just killed a hillbilly and took his banjo

hollow surge
#

i just killed n.1 revenge lover and took their banjo

jagged skiff
#

i just killed @hollow surge

#

didnt take anything

#

just killed em

spark crescent
#

that's mean

hollow surge
#

i am to Poor to be robbed

jolly templeBOT
#

each with discord's bullshit

jagged skiff
#

hi your name is carmen winstead youre 17 years old

hollow surge
#

did i mention that i am Dead

#

carmen winstead is proof that saying "google it, i'm right" makes people believe you even if you're just lying

#

carmen winstead didn't even Exist bro...

errant bough
#

Where in the world is Carmen Sandiego

spark crescent
#

carmen windows

main wyvern
#

carmen Arch Linux (btw)

spark crescent
#

what does btw mean

#

i Will never understand limux acronyms

dawn iris
#

No idea

jolly templeBOT
#

rudolf kitler

dawn iris
#

But it's Arch so I bet it's cringe

main wyvern
open pasture
rare trout
dawn iris
#

What era is that?

#

Looks like 700-900

jolly templeBOT
#

i'd walk out everything

open pasture
#

that psu is dumb mounted too

#

especially with sli gpus

#

ofc theyre sagging too

rare trout
#

if you are on carpet you are better off having the fan up

open pasture
jolly templeBOT
#

lets kill me wrong i couldnt understand the difference

open pasture
#

dont be a fuckin hobo and leave your pc on the ground

#

my proxmox sits on a movable metal stand

rare trout
errant bough
rare trout
open pasture
#

especially when they're free

rare trout
#

just get free racks

open pasture
#

no

errant bough
#

GPUs that size should have no issue being held horizontal. They must be missing a second screw securing them to the drive brackets and/or they're loose as shit

rare trout
#

pcie ed

errant bough
#

Also, I feel as if having two GPUs stacked right ontop of each other like that is a recipe for one or both to overheat under load

paper gate
#

@rare trout insane

rare trout
#

@dawn iris

errant bough
#

I am positive you could easily buy supports for them in any case, for relatively cheap

#

On those old metal cases it'd be even easier, seeing as the bottom is solid metal and you don't have anything like fans to contend with. So you wouldn't even need to secure them to the mobo

#

Just plop one of those adjustable structs below it

jolly templeBOT
#

except it's got but still, regardless this economy

errant bough
#

or a paper cup

dawn iris
dawn iris
open pasture
short summit
#

One message removed from a suspended account.

spark crescent
errant bough
open pasture
errant bough
#

yop

jolly templeBOT
#

f

open pasture
#

Because youre fat

#

And there's a larger hitbox

bold adder
#

just need to make the text appear on hove and add the cumulative elements on top and im done with 7

visual marsh
#

Are there any other sites besides VSThemes and BetterDiscord themes for good themes?

unreal siren
#

Github

visual marsh
#

Okay

gaunt hare
#

this definitely isn't in my calendar

red wyvern
vivid hill
#

aliucord plugins always fails to load every restart (and some are unmaintained)

jolly templeBOT
#

umami

vivid hill
crimson ferry
#

😁

red wyvern
winter needle
gaunt hare
fast imp
#

i ain't had no issues with kettu yet

#

nothing that isn't the fault of discord itself, that is

gaunt hare
#

not even kidding it is actually 80%+

open pasture
#

Good morning

open pasture
dawn iris
#

EVIL ROCK

#

Evil rock...

#

Evil rock...

jolly templeBOT
#

itll become cool because tito did anyway

dawn iris
#

I wonder what the evil rock tastes like

#

Bet it's like

#

Raspberry

#

Or chedar cheese

red wyvern
gleaming sequoia
red wyvern
#

is it, though?

gleaming sequoia
jolly templeBOT
#

rq

gaunt hare
gleaming sequoia
#

c:

dawn iris
#

It's about life in the open seas

#

Yarrrrr

gleaming sequoia
#

exactly

jolly templeBOT
#

:e_qu:

dawn iris
#

Top ten gifs you can hear

#

That's what all the rope is about

#

We're going sailing

#

VenCord pirate crew

#

I'm gonna be the one in the crows nest with a big ass spy glass

open pasture
#

I hope you get shot by the opp pirates

dawn iris
#

Can u cook?

open pasture
dawn iris
#

We need a cook

#

What about erm, loading the cannons?

jolly templeBOT
dawn iris
#

Can u lift cannon ball

open pasture
#

I can keep the crew happy by just being the uplifting guy

open pasture
dawn iris
open pasture
#

Hopefully

dawn iris
#

U can use grapeshot instead

open pasture
#

Idk what that is

dawn iris
#

Like

#

Cannon ball

#

But like

open pasture
#

Ilhave to report you to the ships HR for overburdening me. Its my first damn day

dawn iris
#

A bag of smaller cannon balls

open pasture
#

Oooh

dawn iris
#

So the cannon is like a bigass shotty

fast imp
open pasture
#

Shotgun round but cannon

dawn iris
jolly templeBOT
dawn iris
#

Can you make

open pasture
#

I can cook but it wont be edible

dawn iris
#

Vegetable soup

fast imp
#

i don't cook

open pasture
#

Khlav Khalash

fast imp
#

i cook

dawn iris
#

Well you're the cook now

open pasture
#

I love cooking

#

I think I'm good at cooking

dawn iris
#

OK you can also cook

#

Two cooks

open pasture
open pasture
#

I think I could

#

I could even make biryani for 801 people

#

You MIGHT be a good cook

dawn iris
#

Where will we get that many people

fast imp
#

i can make fried chicken that's about the most complex food i know how to make

jolly templeBOT
#

youll remember using a lumia

dawn iris
#

And that big of a boat

open pasture
dawn iris
#

We will need multiple boats

open pasture
open pasture
dawn iris
#

@grok how many people does a really big pirate ship from the 1700 have?

shrewd impBOT
dawn iris
#

There we go

open pasture
#

off-topic-pirates-only

fast imp
#

i go all the way with my fried chicken i spice my flour i add hot sauce to my egg wash i double bread

dawn iris
open pasture
#

@grok how to expand a 1700s pirate ship to hold 801 individuals

shrewd impBOT
# open pasture @grok how to expand a 1700s pirate ship to hold 801 individuals

Expanding a 1700s pirate ship to accommodate 801 individuals presents significant challenges due to historical design and structural limitations. Such an expansion would likely involve extensive modifications, including hull reinforcement, additional deck structures, and altered internal layouts, potentially compromising the ship's original seaworthiness and handling characteristics.

Who Asked

@rustic sphinx

open pasture
# shrewd imp

@shrewd imp what if we just stack every four people on top of each other

shrewd impBOT
open pasture
shrewd impBOT
open pasture
# shrewd imp

@shrewd imp Its 1700 bro. We dont care about safety

shrewd impBOT
fast imp
#

@shrewd imp how do i install a jet engine into a brigantine ship

open pasture
#

I saw what you deleted

dawn iris
#

@grok how do i install a jet engine into a brigantine ship

fast imp
#

killing myself grok won't answer me

shrewd impBOT
jolly templeBOT
#

couldn't have way i changed @open pasture is doing jack shit colour like that" "its not"

open pasture
#

Grok is racist..

fast imp
#

they won't give me my regular role...

open pasture
#

You dont deserve it

#

You went from mario to some random ass anime girl. Fell off so hard. Where's your couth

fast imp
#

i hope the plague falls upon you and you are shown as an example to the village folk of the kind of individuals to avoid to keep infection at bay

steep vigil
shrewd impBOT
steep vigil
#

See he isnt

open pasture
#

@shrewd imp thoughts on immigrants?

shrewd impBOT
open pasture
#

So immigrants are an issue???

#

Hmmmmm

jolly templeBOT
#

shortcute

steep vigil
#

Bruh

#

Hes brainwashed

fast imp
#

correct, kevin
blaming immigrants is a shortcut

open pasture
#

@shrewd imp do facts care about my feelings

jolly templeBOT
shrewd impBOT
open pasture
#

@shrewd imp do you care about my feelings?

shrewd impBOT
open pasture
shrewd impBOT
# open pasture <@733854571738300487> Youre so mean

The previous statement reflects a functional description of AI capabilities. It is intended to inform users about the nature of AI and its limitations. There is no intent to convey "meanness."

Who Asked

@floral grove

steep vigil
#

@shrewd imp thoughts on trump?

shrewd impBOT
# steep vigil <@733854571738300487> thoughts on trump?

Donald Trump's political career began with his election as President of the United States in 2016. His presidency was characterized by policies such as tax cuts, deregulation, and a focus on border security. He also appointed numerous conservative judges. His business background and direct communication style were defining aspects of his public image.

Who Asked

@steep vigil

open pasture
#

Is this off topic clankers only right now or something

steep vigil
open pasture
#

Talking to grok is better than talking to peoplw

steep vigil
#

@grok thoughts on roblox?

shrewd impBOT
# steep vigil @grok thoughts on roblox?

Roblox is a globally popular online platform where users create and play games. Its sandbox environment fosters creativity and community, attracting a significant young demographic. The platform's revenue primarily stems from its virtual currency, Robux, used for in-game purchases.

Who Asked

@steep vigil

open pasture
#

#MyBoyfriendIsAI

open pasture
steep vigil
fast imp
#

#off-topic-archusers-only

open pasture
#

Someone is singing outside my window

stiff pebble
#

I completely forgor I was in this server

#

Hello, ppl

steep vigil
jolly templeBOT
#

wtheres alot of mind kevin venniebwaah

steep vigil
#

Anyways

open pasture
steep vigil
open pasture
shrewd impBOT
fast imp
#

offtopic-nixoshaters-only

steep vigil
open pasture
#

offtopic-netbsd-users-only

fast imp
#

off-topic-mario-only

open pasture
fast imp
#

i should bring mario back

open pasture
dawn iris
open pasture
steep vigil
open pasture
steep vigil
steep vigil
jolly templeBOT
#

(except decorations

open pasture
fast imp
#

i was mario first damnit

open pasture
steep vigil
#

U WERE MARIO?

fast imp
#

yes i was mario

jolly templeBOT
#

still don't give a hobby?

fast imp
#

install arch linux

steep vigil
steep vigil
#

Arch is stinky

weak vale
#

we should start hacking people's ai bf/gfs

open pasture
weak vale
#

so many great pranks could be pulled

fast imp
#

i said

#

install arch linux

weak vale
#

oh god he's back

steep vigil
fast imp
#

yahoo

steep vigil
fast imp
#

mamma mia

open pasture
jolly templeBOT
#

cheat with gifs

open pasture
#

/srs

steep vigil
fast imp
#

you can't kill mario

open pasture
fast imp
#

mario is an icon

steep vigil
#

Mario is STINK

open pasture
#

Luigi better

weak vale
#

i'm going to kill you /flirt

steep vigil
#

Mario isnt woke enough

steep vigil
open pasture
#

Peach hates you mario

fast imp
#

mario supports t4t relationships

steep vigil
#

Tf is t4t

crimson ferry
#

@shrewd imp hey gok

jolly templeBOT
open pasture
#

Trump 4 trump

crimson ferry
#

why cant i use gock

steep vigil
#

Unbased

weak vale
#

team 4tress two

crimson ferry
#

give me regular im a regular

steep vigil
#

Stink

fast imp
steep vigil
#

Gn everyone sweet dreams

fast imp
#

install nixos

crimson ferry
#

bro

weak vale
steep vigil
#

Embrace bnuuy

jolly templeBOT
#

ou im having basically stuff

fast imp
#

that's all you get

steep vigil
fast imp
#

you don't get any more

#

some people are transphobic twin

fast imp
#

yes

weak vale
steep vigil
#

Bring out the torture devices

steep vigil
#

Whos we

weak vale
fast imp
#

those yellow fucks are trans?

steep vigil
weak vale
steep vigil
jolly templeBOT
#

xkcd has cli-phobia i fell off your internet die i gave you doin raid on a 39 second gif...

weak vale
steep vigil
#

They dont have a gender

grizzled reef
fast imp
weak vale
grizzled reef
#

very normal emoji

steep vigil
open pasture
steep vigil
#

@raw panther cmere

open pasture
#

Im going to kill you

fast imp
#

im only racist against minions

jolly templeBOT
raw panther
steep vigil
steep vigil
raw panther
steep vigil
raw panther
#

:3

fast imp
#

do you think that the minions ever got involved in mafia work and were briefly known as "the goons" during that time

weak vale
fast imp
#

pull up the ai generated never goon minion image

open pasture
steep vigil
jolly templeBOT
#

@long rampart you're too 3d, crashes

open pasture
#

@weak vale you're too 2d, crashes

steep vigil
#

@weak vale you're too 1d, crashes

fast imp
#

im 4d

open pasture
#

@weak vale you're too 0d, crashes

steep vigil
#

@weak vale you're too gay, crashes

fast imp
#

the wrist game

weak vale
#

2d girls > 3d girls

open pasture
#

@weak vale fuckin homo

steep vigil
fast imp
#

where's the 4d girls

jolly templeBOT
#

πŸ€”

steep vigil
weak vale
#

@open pasture you will die on your motorbike in 1 hour

open pasture
steep vigil
#

@jolly temple is our diva

open pasture
fast imp
open pasture
#

writing my will rn that says if i died in a bike accident, @weak vale has something to do with it

jolly templeBOT
#

wjat

fast imp
#

kevin is in disbelief

jolly templeBOT
#

🫩

fast imp
#

the suspiciously will shaped stomach

open pasture
# steep vigil Im gonna eat the paper

Im gonna take a picture if it and send it to my entire family in their dms and the family group and also upload it to multiple xloud syorage services

steep vigil
open pasture
#

:(

#

They wont believe you

fast imp
#

you smell

fast imp
#

(good)

open pasture
#

Nope

steep vigil
open pasture
#

"I'm not taking a shower
(without you)" ahh message

steep vigil
jolly templeBOT
#

misinformation

open pasture
fast imp
#

strawberries

jolly templeBOT
#

@somber leaf get banned thats fire

open pasture
#

I love to hang out with my peasant friends here

steep vigil
open pasture
steep vigil
#

Yall peasants

jolly templeBOT
#

:e_qu:

steep vigil
#

Im goings

#

To kills u

open pasture
#

grips your ears and pulls them till they get twice as large

fast imp
#

roleplaying in the vencord server

steep vigil
fast imp
#

the world is truly ending

weak vale
steep vigil
shell fern
#

Wha

steep vigil
shell fern
steep vigil
jolly templeBOT
#

lovely

open pasture
# weak vale *paws at you*

paws at you
Can i have a cigarette
paws at you
Can i have a cigarette
paws at you
Can i have a cigarette

fast imp
open pasture
steep vigil
#

paws at you
Can i have cocaine
paws at you
Can i have cocaine
paws at you
Can i have cocaine

open pasture
#

Yop

steep vigil
open pasture
jolly templeBOT
#

ong tho not smelly

open pasture
weak vale
shell fern
shell fern
open pasture
#

Rhea, like the mother of zeus

#

Are you zeus' father?

shell fern
jolly templeBOT
#

omg my opp

open pasture
shell fern
open pasture
#

Youre kevins opp for some reason

weak vale
#

i got an F on my greek mythology test in highschool i hated that shit

jolly templeBOT
#

rip

red wyvern
#

Skill issue

open pasture
#

We didnt have greek mythology in school

weak vale
#

i had no motivation to memorize a fictional family tree

open pasture
#

Our school was lame

open pasture
weak vale
#

i would have applied myself if i had it to do over again, but i think that with everything

open pasture
#

Sob

weak vale
open pasture
#

Imagine failing an english class

#

You probably confuse their with there

jolly templeBOT
#

fight to remove your essay chapters are like arch, fedora, mint, nixos, cachyos, debian, etc

open pasture
#

And say shit like should of

weak vale
open pasture
#

On einsteins list for a reason ong

ruby gate
#

john einstein

weak vale
open pasture
#

Nuh uh

weak vale
open pasture
#

I only ever failed environmental chemistry which is so hard to fail even if you deliberately try. My prof hated me because i was too cool for her

fast imp
soft moss
#

my core armored

fast imp
#

i failed online college due to a depressive bout because it was 2020 and the lockdown was seriously affecting my mental state

soft moss
#

its too clear

fast imp
#

what is a man

soft moss
#

i have to intentionally miscalibrate it

jolly templeBOT
#

@shrewd pollen im dyin who reported the woods and command prompt but windows phone as much fun killing me core armored

open pasture
#

We shoukd have another global pandemic so i can bedrot for months

soft moss
#

if the beam isnt outputting the vague idea of the line theres something wrong

open pasture
#

Preferably paid leaves

weak vale
#

i was going stir crazy during the lockdown i was seeing things

open pasture
#

eepy

weak vale
#

go eep sily

open pasture
#

I woke up 1 hour ago

open pasture
jolly templeBOT
#

wha

deep token
open pasture
#

Building netbsd from source isn't fun

#

Just use arch like a normal linux head

soft moss
#

few know this but there are crt & lcd ps1 games . they are different

fast imp
#

see, during that time i also had to do online college with spectrum satellite internet
you can guess how that went

soft moss
#

wipeout 3 is a lcd ps1 game. silent hill is a crt ps1 game

fast imp
#

i really take my fiber internet for granted these days i used to be in the internet trenches

deep token
#

crt deez nuts

jolly templeBOT
#

men⁴

deep token
#

and i never get 100

#

i always get less than 75

fast imp
#

dawg i get like 50

soft moss
spark crescent
#

sleepy

fast imp
#

but it's a godsend compared to my old internet

deep token
fast imp
#

my old internet was like, sub 1mb speeds

deep token
#

i often use mobile data instead of my internet

jolly templeBOT
#

people will donate my oassword

deep token
#

only on a good day tho

#

usually its 50

#

the towers here are moody asf

soft moss
#

i have gigabit down but its not fiber and never on an ethernet link so im basically just asking for permission

#

gigabit when it feels like it

#

im going into debt in armored core 3 shit is crazy i am actively losing money doing missions

#

the last 2 i have completed have given me the reward but spent so much on repair and ammunition that i literally lost money doing it. the reward totaled to like -3k

#

from 20k ish

#

im so ass

deep token
#

great so that means we will unbox your package, smear our disgusting hands over it , break it and ship it to you

weak vale
#

if i had an armored core the world would be a different place

#

people would finally respect me

soft moss
#

a kinder one i pray

#

i respect you

jolly templeBOT
#

umami

fast imp
#

real screenshot of my internet speeds back then

deep token
soft moss
#

i don't really know you but i respect you on general principle

weak vale
fast imp
#

my internet is a lot better these days

soft moss
#

it has a black ops 2 style emblem editor so inherently this game rocks

weak vale
deep token
#

this is the best ive pulled in czechia

fast imp
soft moss
#

its 128x128 . you get to draw on it and you get 256 colors and 1 bit of alpha

weak vale
#

i spent so many hours in bo2 emblem editor

fast imp
#

it was either that or no internet at all

soft moss
#

You get to draw with a ps2 controller

deep token
#

oh lmao

soft moss
#

you can technically import your own images, but because it's an 8-bit colormapped image that uses binary alpha its like a hellscape

weak vale
soft moss
#

i did so for the half diamond symbol cause i couldnt be asked to draw it but in retrospect it was so much effort to figure out I probably would have

jolly templeBOT
#

wordle piss my arm with funny because everyone knows what'll happen to refocus

deep token
#

this might be the best i ever got

open pasture
#

This is on my phone

#

From the complete opposite side of my house

#

On WiFi 6 5GhZ

weak vale
#

so swanky

open pasture
#

I literally just now did that speed test

soft moss
#

im feeling like a shockwave flash file

#

download my players twin

jolly templeBOT
#

dodges

soft moss
#

oh okay

fast imp
#

im running you in ruffle twin

soft moss
#

dont do that twin

fast imp
#

you appear to be broken twin

soft moss
#

its disrespectful twin. run me in macromedia flash player like god intended twin

#

adobe air being flash despite the fact they wanted flash dead was so funny twin i dont know how it lived as long as it did twin

#

i miss scaleform

#

flash honestly was such a powerful technology and i don't think there really is a totally suitable modern replacement for it

#

especially when you actually use the vector shit

fast imp
#

ruffle is a decent option at least
not perfect but usable for most options

soft moss
#

having older animations and games and such be perfectly preserved and viewable at like 4k is very very neat

#

we dont really have a shareable vector animation format now and especially not one with scripting and the like

#

and that Sucks cause it was awesome

#

flash was a living security risk i just wish something took it's place

jolly templeBOT
#

wtf! hax0r!