#general

3141 messages ยท Page 196 of 4

tropic quarry
#

noo

#

erm

austere ivy
#

hmmm does it?

#

okay hm

#

Is that a big problem?

tropic quarry
#

I mean, these rare items are donator items, and if people get two of the same, and then they delete...

#

That would suck.

austere ivy
#

Mhm, gotcha, let's see here.

tropic quarry
#

So I really need the stack before it is placed

#

To get the amount

austere ivy
#
@EventHandler
    public void onBlockPlace(BlockPlaceEvent event) {
        if (event.getItemInHand().getItemMeta().getLore().contains("[Infinite]")) {
            event.getItemInHand().setAmount(event.getItemInHand().getAmount() + 1);
        }
    }
#

;p

tropic quarry
#

I love it

#

Yes

#

Thank you

austere ivy
#

And if IN FACT it does get get the item in hand BEFORE it was placed, you can just do that without the + 1.

#

Test it out, report back later please, I'm interested :P

#

Also, no problem koalathumbsup

cosmic raft
#

๐Ÿ‘€

#

it thinks I flew to Quebec to go to walmart

#

and then back home

tropic quarry
#

Connect to Walmart wifi?

austere ivy
#

Lol that actually seems like a hilarious case of r/softwaregore.

#

BTW iZeusi how did it go?

cosmic raft
#

no @tropic quarry

tropic quarry
#

Weird xD

#

Well, this may be the scrappiest thing I ever coded. But it works. I will definitely be working on simplifying it, cause it's 6:43am here with no sleep lol

cosmic raft
#

Nom.

tropic quarry
#

@cosmic raft you like winegums?

#

They are my fave sweet

cosmic raft
#

they're okay

austere ivy
#

Whew that's a lotta code I don't quite understand what most of it's doing but I'll take a peek.

#

Naming event e peepoMad

#

I never liked that because that's always exception for me, haha.

#
if (e.getHand() == EquipmentSlot.HAND) {
            item = p.getInventory().getItemInMainHand();
            hand = true;
        } else {
            item = p.getInventory().getItemInOffHand();
            hand = false;
        }

Instead of this, just use event.getItemInHand()? Or does that not work the same. I don't know peeposhrug

tropic quarry
#

w0t

#

Oh

#

I need to recognise whether it is main or offhand

austere ivy
#

Oh okay

tropic quarry
#

and EquimentSlot.HAND is main hand

#

Not off hand

#

So

#

Idk why i needed to know

#

But at the time I thought I did

#

But... I don't xD

#

I don't need to know

#

And I could clean up most of the code by not knowing actually hahahah

#

ty tho

#

Next issue

#

When I spawn particles on a player using a run task timer saved in an int, saved in a HashMap with UUID

#

I can't find a way to successfully turn them off

#

Here is how I create le particles

#

Called when like, the player has the item in the hotbar etc

#

And how I removed it

#

Called like, on player quit, when the player switches off the item etc

#

Any ideas why the particles don't turn off?

#

Bukkit.getScheduler().isCurrentlyRunning(SparkleID.get(p.getUniqueId()))

#

This line in particular

#

I feel doesn't work

austere ivy
#

Another thing.

#

item.getType().equals(Material.AIR)

#

Don't do this. Always compare enums with ==

#

item.getType() == Material.AIR

#

Do that instead, == isn't completely useless :p

tropic quarry
#

Got told the other way to be honest

#

And, IntelliJ autofills that for me too

cosmic raft
#

no difference in reality

tropic quarry
#

Any idea on the particles, Kashike? ๐Ÿ˜„

cosmic raft
#

what's the issue

tropic quarry
#

The particles don't stop spawning

#

The runtasktimer never ends

austere ivy
#

Oh, really? Huh.

tropic quarry
#

Despite me saving it into an int and using the int to cancel it

#

This is the last thing I need to complete and then I can sleep haha

tame pendant
#

I'm not sure if it was Paper-72 or just the players online for the past few hours, but my tps has literally tripled

vestal jasper
tropic quarry
#

How many players?

tame pendant
#

23 rn

tropic quarry
#

TPS is like what

#

17?

tame pendant
#

20.0 20.01

tropic quarry
#

im wet

tame pendant
#

ikr

austere ivy
#
for (String lore : item.getItemMeta().getLore()) {
                if (lore.contains("Infinite")) {
#

o_O

tropic quarry
#

?

#

That's how you have to do it

#

No other way to detect

austere ivy
#

I guess you could do this. In my mind it makes more sense for [Infinite] to be on it's own line.

#

uh?

tropic quarry
#

Infinite is on it's own line

austere ivy
#

item.getItemMeta().getLore().contains("[Infinite]");

tropic quarry
#

Doesn't work

#

Trusss meh ๐Ÿ˜›

austere ivy
#

Really now?

tropic quarry
#

mhmm

#

99% certain

austere ivy
#

MMmmmm

#

Do you have colors in your lore?

tropic quarry
#

Yup

austere ivy
#

That's why.

tropic quarry
#

What, strip fixs?

#

fixes*

austere ivy
#

When you have colors, the string is "ChatColor.COLOR BlahBlah" or something like that.

tropic quarry
#

Ah

#

Right

#

So strip colour is needed

#

Well

#

How about that

austere ivy
#

Your thing loops through each of the strings in the lore, and checks if the string has a sub string, so it'd see ChatColor.COLOR and then INFINITE but the other thing..

#

Yeah

#

so

#

Your way works definitely, but just saying you could potentially just check the entire thing too, but doesn't matter much I suppose :P

tropic quarry
#

I just googled this shit when I first wanted to make custom enchants and

#

That was the response I got ๐Ÿ˜„

#

But thank you

austere ivy
#

I'm confused.

tropic quarry
#

I can cut down so much like that

austere ivy
#

Looking at your final thing you put, you're doing..

#

You're remaking the item and then setting it again?

tropic quarry
#

lemme see

#

What you mean

austere ivy
#

I dunno there's just a lotta stuff that I don't get much haha but I'm quite tired.

tropic quarry
#

Where do I set it again?

#

Can I check that?

austere ivy
#
@EventHandler
    public void onBlockPlace(BlockPlaceEvent event) {
        if (event.getItemInHand().getItemMeta().getLore().contains("[Infinite]")) {
            event.getItemInHand().setAmount(event.getItemInHand().getAmount() + 1);
        }
    }
vestal jasper
austere ivy
#

That's just my idea of how it'd work but you have part of code that remakes your entire item.

#

And then it puts it at slot 40 of your player?

#

I dunno.

tropic quarry
#

Slot 40 is offhand slot

#

I got told "setItemInOffHand" and "setItemInMainHand"

#

Just don't work

austere ivy
#

o-o

tropic quarry
#

And that I should setItem(Slot, Item) instead

austere ivy
#

uhh did you test this?

tropic quarry
#

Yeah

#

Works

austere ivy
#

did you test if setItemInOffHand works?

tropic quarry
#

Oh xD

#

Well

austere ivy
#

If an entire part of the Bukkit API is not working I'd assume people would've found it by now..

tropic quarry
#

I didn't know what was causing the problem, so I was trying everything online

austere ivy
#

huh.

tropic quarry
#

I left it like that after last check without changing it back

#

And this works

#

So... not gunnah change it cause it works now xD

#

Well

#

I will

austere ivy
#

Ye i mean whatever floats your boat.

tropic quarry
#

When I clean the code

austere ivy
#

Thinking about it. Don't put the +1.

tropic quarry
#

Could Dupe

#

That was the worry

austere ivy
#
event.getItemInHand().setAmount(event.getItemInHand().getAmount() + 1);
#

Think about it. What if the amount they have is 1? If they place it, then it's air now, which means we can't even use getItemInHand() because that's AFTER they place the block.

#

Which means if this will work at all it has to be BEFORE they place the block, and if so..

#
event.getItemInHand().setAmount(event.getItemInHand().getAmount());
#

That'll do :P

#

OK goodnight!

tropic quarry
#

Eh

#

I just need help with particles now

#

Narrowed it down to one line

#

Just need help as to why it's not working really

#

Why doesn't this work?

#

Bukkit.getScheduler().isCurrentlyRunning(SparkleID.get(p.getUniqueId()))

azure bone
cosmic raft
#

I'm watching 'The Post'.

coarse narwhal
ornate spindle
#

TIL that 1.12.2 could become the new 1.8.8

serene bolt
#

it will be for sure

tardy lynx
#

(I still prefer 1.8)

merry talon
#

(ur still dumb)

static badge
#

mfw anime weeaboo js person calls someone dumb

vestal jasper
#

mfw closet furry tries to call people out on their life choices

static badge
#

mfw closet furryu

wet smelt
limber knotBOT
#

(DiscordBot) The Visits of Stan Zbornak - length 5m 31s - 2,785 likes, 41 dislikes (98.5%) - 376,971 views - Serse1000 on 2012.07.18

cosmic raft
#

god I love the golden girls

unkempt monolith
static badge
#

bunch of grandmas?

cosmic raft
#

yes

#

but it's one of the best tv series ever

limber knotBOT
#

irc never forgets

tame pendant
#

fudge

#

fine, its coming back

#

irc stupid

#

irc outdated

golden gust
#

My IRC client doesn't eat 2G of ram pretty often

tame pendant
#

u right

static badge
#

that's because ur on a mac

#

u filthy mac user

tame pendant
#

๐Ÿ˜ฎ

golden gust
#

Apples fault for making the best OS

normal echo
#

What causes it to use so much ๐Ÿ‘€

golden gust
#

few plugins and 2 server projects open

void void
cosmic raft
runic basin
heady spear
#

Kashike no

worn ember
#

weeb

heady spear
#

I slept for 14h yet I'm tired

#

Y dat

static badge
#

filthy weeaboos

#

that's why

heady spear
#

Sex me papa

#

Hah, I stunned u

golden gust
#

over sleepin' is bad 2

#

and sleep inertia is a bitch

heady spear
#

Y is PayPal to bank account transfer so slow. I wanna buy food

#

I mean yeah, I don't feel particularly well. Sorta feels like someone has punched me in the face repeatedly for 23.5 days

worn ember
#

Weak

merry talon
#

that's the bank's fault

heady spear
#

Dark is in love with me

tropic flame
#

PaperSpigot

limber knotBOT
#

@tropic flame [Auto] We're now known as Paper.

tropic flame
#

ok thx I just needed to screenshot this

merry talon
#

mfw

heady spear
#

Dark plz do impregnate me with your pool noodle

tropic flame
#

so, cars are pay-to-win now?

heady spear
#

Just get a bicycle

#

Do you know how many oomgaa had to be destroyed to make that one steel for fast Tesla car?

tropic flame
#

what is an oomgaa

#

inb4 "exactly."

heady spear
#

Clearly you are not in academia

tropic flame
#

is that an anime

heady spear
#

Dr. Charlie Fazvht Vehikklu wrote about the oomgaas in 1943, and it has since become a widely use measurement of mmgrohpg in car manufacturing.

tropic flame
#

oh... alright

#

i thought it was a joke lmao like 95% of what you say here

merry talon
#

not just pay to win

#

it's like apple disabling your phones camera with a software update

#

and you have to pay to turn it back on

heady spear
#

Fazvht Vehikklu really did revolutionize vehicle manufacturing. He also wrote a best selling book on salmon breeding

#

Overall great guy

static badge
#

Optional huh

merry talon
#

yes

#

.g js-optional

limber knotBOT
heady spear
#

That is gay

merry talon
#

wrong link it's on npm

static badge
#

retarded

#

all this optional shit is literally made for retards

heady spear
#

Wait did logics actually believe me?

#

@tropic flame I literally named the dude fast vehicle

#

Ur dummer than leafy

tropic flame
#

... oh lol I just read the first name

#

I skipped the Fazvht Vehikklu part ๐Ÿคฆ

limber knotBOT
#

(DiscordBot) โœ“@officialmcafee (John McAfee): I've collected files on corruption in governments. For the first time, I'm naming names and specifics. I'll begin wโ€ฆ https://t.co/i2miUUaLhm (16 hours and 38 minutes ago)

tropic flame
limber knotBOT
#

(DiscordBot) โœ“@officialmcafee (John McAfee): For my followers: my recent tweets are less for you than they are fir my pursuers. They are shots across the bow -โ€ฆ https://t.co/BXiKb23Umt (15 hours and 10 minutes ago)

tropic flame
#

lmao someone woke up mad--- god damnit it why all these previews that cafebabe bot sucks

ornate spindle
#

if only it was possible to filter out those messages from being sent to discord from the irc

tropic flame
#

can't CafeBabe send the links inside <> ?

#

<https://t.co/BXiKb23Umt>

ornate spindle
#

I assume it wouldn't be clickable for irc clients

heady spear
#

If they're dumb enough to use irc they deserve to have to copy and paste

tropic flame
#

Y E S

ornate spindle
#

!stats

limber knotBOT
#

Uptime: 15 days, 16 hours, 12 minutes, 14 seconds
Message Handling: 7ms / 2ms (mean/median)
Messages from IRC: 5738 (7%)
Messages from Discord: 71182 (93%)

heady spear
#

They also deserve to have a llama spit st them constantly

ornate spindle
#

7% lol

#

petition to ban irc

heady spear
#

Aye

tropic flame
#

Discord is the new IRC

#

ban old IRC

#

.kill IRC

limber knotBOT
#

stuffs a bomb up IRC's ass and waits for it to go off.

ornate spindle
#

what a way to go

heady spear
#

Yes bye irc it us controls by China anyways and bad

#

Petition to have celine dion on a loop in a voice channel

ornate spindle
#

so by having a message with tiananmen square protests of 1989 the bot will self destruct

heady spear
#

No I meant the real China

#

You know the little island outside of fake China with a tiny population of real Chinese people?

merry talon
#

message with what? Why did you send an empty code block?

tropic flame
#

tbh I use DuckDuckGo for the sake of these !bangs

#

typing !yt [insert search here] on the search bar to search youtube videos is much more convenient

#

or simply type !twitter or !gmail to go to twitter or gmail, really

merry talon
#

or just type tw and let it autocomplete Thonk

tropic flame
#

or type !t and let it autocomplete lmao

merry talon
#

thats harder to type

#

need to hit shift and 1

tropic flame
#

๐Ÿคท

limber knotBOT
#

I don't need ddg for that tho

#

Since chrome does it

#

Yt tab search term enter

warped kelp
worn ember
#

There's this thing called bookmarks

#

Very convenient

limber knotBOT
#

My history is my bookmark

#

I just remember the keys I need to type

#

Like at work, the web app to take day off, irj enter and go

#

I don't even know the full url, I just know that irj is part of it ๐Ÿ˜‚

#

And it's faster than bookmarks

heady spear
#

Omg imagine taking a day off, you lazy

unreal quarry
#

I do that too, mini. But sometimes I do it too quickly before suggestions pop up and I end up googling half words lmao

heady spear
#

You need to be sent off to correctional facility to learn the importance of work

heavy rapids
#

mfw i realize I'm an idiot

#

๐Ÿ˜ญ

golden gust
#

Shoulda asked, we coulda told you

#

โค

heavy rapids
#

โค

#

me: be surprised when stuff segfaults
also me: hand out references to stack-allocated stuff like there's no tomorrow

viscid aurora
#

it's strange.. use paperclip, tps is worst than spigot

#

spigot always keep 18-20 but paper 5-15

golden gust
#

We'd need timings, but there are lots of fun and interesting quirks

#

a major one being that spigot would sooner corrupt your entities than let you know that your server can't keep up properly

static badge
#

spigot does by default refuse to tick entities if they take too much time peepoJuice

golden gust
#

Oh, spotted, you know much more about the chunk system than I do

static badge
#

hm?

golden gust
#

if you can find a way to get a fully loaded chunk without dipping into that ass of an await, that would be spr gr8

static badge
#

pfft

golden gust
#

I'm pretty sure that even already loaded chunks are literally crapping out in there in some cases

static badge
#

well technically they shouldn't

#

the only issue is if the chunk is technically "full" but marked empty

#

it would need conversion

#

and that would take you through the queue

#

this occurs for gen

viscid aurora
static badge
#

current code only blocks if the chunk future isn't ready

golden gust
#

Hm, maybe I misread some reports

static badge
#

but in general yeah that fucking queue sucks ass

viscid aurora
#

maybe timings couldn't show anything

limber knotBOT
#

@Billy, what's even worse is when the order changes, I normally type "sp" to go to spigot, but since yesterday there is one search term that included sp and it was once ranked higher and I typed it so often I now can't get rid of it ๐Ÿ˜‚

golden gust
#

Pretty sure I was timings report where it was hitting that in areas where it should already be checking for chunks being loaded :/

limber knotBOT
#

So I am always googling about sparse matrices now ๐Ÿ˜‚๐Ÿ˜‚

static badge
#

well I can re-check this gimme a moment

golden gust
#

You apparently have 3.4k horses Wind

#

800 odd cod isn't helping cases either

viscid aurora
#

WOW.. but.. only 15players now

static badge
#

yeah chunks loaded & marked FULL will ret immediately

#

else you'll block & hit the ticket manager

#

ticking that motherfucker though monkaMEGA

#

I'm probably going to replace that system entirely too it's cancerous to tick each time you load a chunk

viscid aurora
#

๐Ÿค” maybe go back spigot is better, I've already tested for a week. or waiting 1.14.3

golden gust
#

I gotta try and spend some time on timings too

#

entity count is busted, and some of those timing handlers 100% need adjusting

static badge
#

yeah I was thinking of doing that but got sidetracked by 1.14's other 1000 issues kappa

viscid aurora
#

you said there are 3.4K horse, but actually.. not so many

#

even I teleport to check each player's home , lol

golden gust
#

I'm just going off timings

#

going to all view reduces the count to 2000, which suggest that a ton of them likely unloaded or something

static badge
#

we should start distinguishing between ticking chunks & non ticking chunks too

viscid aurora
#

i have plugin mobfarmanager , but in only check and count loading chunks, maybe server ticking mobs in unloading chunk

static badge
#

I don't think that's possible

limber knotBOT
#

no with that attitude

muted niche
#

@static badge itโ€™s already distinguished for as long as I can remember. Non-ticking chunks isnโ€™t new

#

Only player chunks tick

#

The rest do not

static badge
#

is that pre .14? I've only bothered to care since .14

muted niche
#

Of course

#

Been like this for ages ๐Ÿ˜ƒ

#

Every tick it grabs all player chunks then runs through it for block ticks etc

void void
#

i am can have made quesadillas

muted niche
#

Iโ€™ll paste it when I get to a pc

vernal belfry
void void
#

PlayerRespawnEvent gets called exiting End as well, what is a smart way to avoid that?

#

check the world?

#

alright, so just checking against getRespawnLocation() would work then, ye? :)

#

I thought it would show the same location because both put the player at its bed.

#

that will show where they respawned, not where they left from; i don't have any idea what your actual goal is so I can't tell you exactly what to do

#

I want to only call PlayerRespawnEvent upon a death.

#

Not sure, honestly. I don't see any methods that would show you the reason for the respawn, but that might be a worthy addition.

#

I'd make it an issue

#

Someone can PR

#

Alright, thanks.

muted niche
#

@static badge so just took a quick look at 1.14.2 and they seem to have gutted PlayerChunk/PlayerChunkEntry and replaced it with ChunkManager. It appears to be pulling the chunk list from it when it needs to tick.

#

just looking at the major changes they did to chunks... its going to be fun getting this stable

static badge
#

I'm aware of what they've done in .14

shy nova
#

I've been trying to get a mariadb docker image to work for fucking TWO HOURS

#

boutta lose my mind

#

boutta yeet my laptop through the roof

acoustic pilot
#

I set up that image pretty often, it's easy, not sure how you could waste 2 hours on that.

#

The official MariaDB image, ofc

#

The "hardest" part is setting up a root password (or telling it to use an empty root password) because it has to be done once when the image starts, but that's pretty easy to do and the help texts already describe how to do it.

shy nova
#

Oh my god

#

@acoustic pilot dumbest fucking issue ever

#

I was doing -p=thepassword

#

as an option in the mysql client when connecting

#

but it interpreted that as the password being =thepassword

#

FUCKK

acoustic pilot
#

well yeah, this is not surprising, and not exclusive to MySQL client.

#

this is getopt behavior

shy nova
#

D:

wide hazel
#

Well alright then

acoustic pilot
#

option=value is for long opts, e.g. --long-opt=value

wide hazel
#

Iunno what happened but if it can keep doing that it'd be great

shy nova
#

Ahh byte

#

fair

#

@wide hazel lol people are going crazy over that on r/wallstreebets

wide hazel
#

I mean

#

It's a good bet

#

For now

acoustic pilot
#

there's nowhere to go but up for vegan meat

wide hazel
#

Well, it was a good bet before it exploded

acoustic pilot
#

unless some crippling shit happens and it loses FDA approval

wide hazel
#

It might be still

#

Honestly this is just my fucking around money

#

I only put $25 in but I wanted to see if I'm actually alright at this trading thing

acoustic pilot
#

Even if you factor in competition reducing your investment's return, you still always come out with a return if you got in early, since the market is basically new

wide hazel
#

Exactly

acoustic pilot
#

And the market has nowhere to go but up

wide hazel
#

I know it's worth more than I bought it for to start

#

No idea how much more

#

But hey

acoustic pilot
#

Vegan meat gonna take off in a big way eventually

wide hazel
#

Dunno if it'll be beyond

#

But yes

acoustic pilot
#

Once it becomes cost efficient, it's gonna be a game changer.

#

We're already seeing flavor-wise that Beyond and Impossible is incredibly appealing to non-vegans too

wide hazel
#

It's unlikely this first iteration will be king 20 years from now

acoustic pilot
#

Slap on a "cruelty-free meat" label, easy money.

wide hazel
#

But it's a fun ride for now

acoustic pilot
#

Just look at how big the organic foods market is right now

#

And how quickly that spiraled out of control

wide hazel
#

I wish I could put money into a total market rather than one company easily

#

Would be vegan meat and corn

#

I don't actually follow wallstreetbets because they all play short games

#

I put my money into alphabet and beyond and Ubiquiti and don't plan on touching it for a long time

#

Also why I only did $25 on each, because this is absolutely still gambling

#

Long game or not

#

So far alphabet is the only one I lost any on

acoustic pilot
#

It doesn't have to be. If you're looking for safer investments with lower returns, Vanguard ETFs come to mind.

limber knotBOT
#

I put my money investing in groceries

#

am I doing a good job?

unreal quarry
#

sits back and watches the white collars converse

limber knotBOT
#

because the only thing I seem to get back is shit

wide hazel
#

I got in right as those tariffs neutered the tech industry for a week

limber knotBOT
#

gj

#

hey at least you did better than my uncle

#

who thought his wife was a market genius and decided to go all in

#

the year the economic crisis struck

wide hazel
#

I don't gamble unless I'm confident, and even then I don't gamble much. Just not my hobby i guess

limber knotBOT
#

now he's broke and retired

wide hazel
#

It is a little fun though

acoustic pilot
#

You can never know all the factors, that's why they say no risk no reward ๐Ÿ˜‰

limber knotBOT
#

I mean you can

wide hazel
#

I'll take my no reward :P

limber knotBOT
#

it's called insider trading

wide hazel
#

Or very little reward

acoustic pilot
#

Legally

wide hazel
#

Am not a risk taker

limber knotBOT
#

isn't it weird that the one circumstance under which you're not gambling is fully illegal?

wide hazel
#

I do actually have money in Acorns

#

Which is my IRA

upper flicker
#

Gonna retire on all that Player Aye Papi money

pulsar wigeon
#

i put my money under Z's pillow

#

it's safe there

wide hazel
#

Lol

acoustic pilot
#

If you're not a risk taker, maxing out your yearly IRA contributions would be a good use of your money probably.

wide hazel
#

So I still have money in vanguard, etv

#

Yeah, I do that already

unreal quarry
#

I spend all my money ^_^ cause that's what money's for, spending :p

#

runs

wide hazel
#

I just had some extra and wanted to see for fun

void void
#

"vegan meat"

#

if it does take off, can they just l ike, not call it meat

#

just call it something the fuck else

#

because it is something the fuck else

acoustic pilot
#

Probably not because calling it meat has too much marketing potential

limber knotBOT
#

"vegan murder"

acoustic pilot
#

The leading company is called Beyond Meat

wide hazel
#

They called cars automated carriages

void void
#

Yea I know my sister used to be one of those tards

wide hazel
#

Small steps

pulsar wigeon
#

used to be

limber knotBOT
#

siri, bring forth my automated carriage

pulsar wigeon
#

what happened, fell into a meat grinder?

void void
#

"oh yeah, i gotta make my vegan chicken nuggets with my **vegan ** steak and my vegan egg replacement"

#

lol no

acoustic pilot
#

They're at a point with vegan meat now that it's almost indistinguishable, and to many meat eaters, even preferable over actual meat.

void void
#

she's just lazy and can't commit to anything

acoustic pilot
#

The problem is really cost efficiency now.

void void
#

but god that was fucking the most annoying thing ever

#

every single normal food item

#

prefixed with vegan

unreal quarry
#

Vegan hotdogs

void void
#

yes

limber knotBOT
#

I think that was as a species need to evolve our food

wide hazel
#

I have yet to try it, but that doesn't mean there's not a future in it

void void
#

vegan steak, vegan chicken, vegan egg replacer, vegan rice, vegan whateverthefuck

limber knotBOT
#

we need to substitute our meat with vegan alternatives

#

BUT

#

we also need to replace our non-meat items with meat alternatives

#

I want vegan steak with meat rice

void void
unreal quarry
#

Meat rice

limber knotBOT
#

yes

unreal quarry
#

Sounds like ground beef that won't stick together

void void
#

Anyway she went from vegan to keto, and her keto phase was a FUCKING MESS

limber knotBOT
#

it needs to taste look and feel like rice

acoustic pilot
#

Just mix ground beef with some rice, you got meat rice.

limber knotBOT
#

but be made from pork

void void
#

She would buy shredded cheese, bake them into chips, and call that keto.

limber knotBOT
#

or even better

void void
#

Eat only that, almost all day

limber knotBOT
#

veal

void void
#

I almost threw up yall

limber knotBOT
#

I WANT MY MEAT RICE SCIENTISTS

#

where is it science

#

where are you hiding it

#

if you don't hurry up I'll start making it out of human scientist meat

unreal quarry
#

What I don't understand is why vegans aren't labeled a mental illness. If we came across a wolf that refused to eat meat and it only ate berries, for example, we'd label it mentally ill and probably put it down or try to retrain it to eat meat

acoustic pilot
#

Quinoa is a kind of "meat rice" (not meat, but high in protein)

#

Also way better than rice

void void
#

Byte, I'm gonna pretend you didn't just say that.

#

Rice is my life

limber knotBOT
#

if we follow down that path anyone making spigot or paper plugins would also be mentally ill because who would voluntarily work not only on java plugins but minecraft java plugins at that

acoustic pilot
#

Look, I grew up on Korean rice my entire life lol, so this is high praise for quinoa ๐Ÿ˜„

#

It's just nutritionally superior.

void void
#

Yeah yeah, I grew up on it and I am addicted

#

If I try to stop rice, I get actual rice withdrawals

limber knotBOT
#

my meat rice has to kill a semi-sentient being or else it doesn't count

#

it's not about nutrition

acoustic pilot
#

lol

limber knotBOT
#

it's about that warm fuzzy feeling I get when I eat something that once looked cute

acoustic pilot
#

Eat too much of that rice you gonna get that beetus

limber knotBOT
#

thereby absorbing its cuteness

wide hazel
#

Meat isn't sustainable at the rate we consume it, sadly

#

There won't be much choice

acoustic pilot
#

Well, more importantly, we over-consume meat.

unreal quarry
#

It's renewable. Just make more cows

limber knotBOT
#

that's fine, that's what GabeN gave us other planets for

void void
#

I'll raise my own meat /shrug

acoustic pilot
#

Meat doesn't need to be as big a part of our diet as it is now

limber knotBOT
#

giant space slaughterhouses

acoustic pilot
#

For a lot of people, meat represents over half the portion of their entire meal.

limber knotBOT
#

I can't wait till we get some Mars veal

acoustic pilot
#

Hm, some space milk, from cows raised on our Martian colony

unreal quarry
#

Meat is sometimes 100% of my meal

limber knotBOT
#

is that a reference to eating that good good p*ssy

unreal quarry
#

Lmao

#

No

#

I mean, I don't eat veggies :s

#

I'm like a child when it comes to greens lol

acoustic pilot
#

I prefer more greens and less meat, but still enjoy meat, just not too much.

#

Fucking love greens.

#

Will eat that shit all day

#

Spinach mostly, but kale is good too

#

Kale is more nutritious but not as flavorful

limber knotBOT
#

oh hey do you live in africa byte

#

because you sound like that african kid who would love to have my greens

#

I'll ship them to you my dude

void void
#

korea, guam
lul

acoustic pilot
#

no, I live in California, we're hippie veggie lovers

wide hazel
#

One protein, one grain, one veg

limber knotBOT
#

weird, my parents never talked about all the kids in California who are hungry and would love to have my greens

acoustic pilot
#

replace grain with quinoa and you've already got protein, don't need to add as much meat ๐Ÿ˜‰

void void
#

adds meat anyway

acoustic pilot
#

plus quinoa has fiber and since you eat less of it, you consume less carbs than rice

limber knotBOT
#

hey byte remind me to never have dinner at your place

#

if your dinner ain't murder then it ain't right

acoustic pilot
#

there's nothing configured there lol

#

it adds to the mystery

void void
#

im knocking anyway

limber knotBOT
#

man this paper sucks

#

I don't want to write it

wide hazel
#

503 -> nothing there

#

Okay

heady spear
#

what is it on?

wide hazel
#

404? 204, even?

heady spear
#

I have a 4000 word paper on zoos in scandinavia and I don't know what to write ._.

limber knotBOT
#

interpretation for diplomatic purposes

#

and undermining said activity

heady spear
#

ew ok I don't want to trade

#

I can go to the zoo for free for research purposes

limber knotBOT
#

it's 10 pages

heady spear
#

I also have to research the historical development of zoos and like all our literature is on 16th century german castles

#

I don't like this course anymore

pulsar wigeon
#

school ๐Ÿšฎ

limber knotBOT
#

wtf are you studying

pulsar wigeon
#

i'm honestly getting triggered just reading this shit

limber knotBOT
#

master's degree in my case wiz

acoustic pilot
#

he's studying to become a zoologist

void void
#

look up the inverse zoos. I think they're called that....

described differently, essentially the onlookers go into a cage and the animals are free roam; as opposed to animals in cage with onlookers free roam.

#

might be fun to write about

heady spear
#

Nah, I needed social science credits and so I decided to take a course in zoos ๐Ÿ˜›

limber knotBOT
#

makes sense, he belongs in a zoo

heady spear
#

"Zoos in contemporary society"

limber knotBOT
#

safari simple

void void
#

ah ok

heady spear
#

I am also taking a summer course in relativity alongside the zoo course

void void
#

yeah that shit

limber knotBOT
#

"inverse zoos" wtf are you even smoking

#

go learn words

void void
#

i dont know, it's not weed, i ran out

acoustic pilot
#

probably crack

heady spear
#

It makes sense because in relativity you often use space sharks as an example

limber knotBOT
#

zoos in contemporary society is a full on course?

heady spear
#

and sharks are animals

limber knotBOT
#

wut

heady spear
#

Ye it is :p

void void
#

what is the length of this course

limber knotBOT
#

jesus

heady spear
#

20h a week until August 18th

void void
#

LOL

#

HOW

limber knotBOT
#

hahaha

#

you could probably VISIT all contemporary zoos in the time that course takes

heady spear
#

๐Ÿ˜

#

The first assignment was an essay where you had to explain why you were interested in the course

#

Extremely hard to write tbh.

limber knotBOT
#

I bet they're just crowdsourcing excuses to keep the course going through that assignment

void void
#

cebu safari is a brand new zoo in, you guessed it, cebu; but it is NOT a safari...

that's kinda why I didnt think to say safari earlier lol

#

idk what kinda stuff youre looking for just throwing shit out there

limber knotBOT
#

"oh yeah it's important because little billy said it's a fun edutainment place for the entire family!"

heady spear
#

Relativity is far more interesting than the zoo stuff tho, so it's not that bad. I am also taking some extra calculus over the summer for the lols

limber knotBOT
#

also holy shit my OS has edutainment in its dictionary

acoustic pilot
#

educational entertainment?

#

_>

heady spear
#

Edutainment is a real thing, so that makes sense

limber knotBOT
#

your mom is a real thing but she's still not legally recognized as sentient in the law books

heady spear
#

Ye, it's a neat way to trick sheeple into learning

#

My mom is a filfthy whore.

void void
#

It doesn't trick me into learning, I like learning. But it makes learning more enjoyable kek

acoustic pilot
#

I hate learning! I wanna be dumb forever!!

heady spear
#

learning shouldn't be enjoyable

acoustic pilot
#

Said nobody ๐Ÿ˜›

tropic flame
#

lmao simple watches dora the explorer

limber knotBOT
#

ignorance is bliss

heady spear
#

at least not according to every professor ever

void void
#

ye i do

#

FUK U

tropic flame
#

runs

limber knotBOT
#

ever heard that oe

#

they should make a dora the explorer series for teaching kids how to make minecraft plugins

heady spear
#

woah, the nursing student at my uni need to get 100% on their math exam to pass .-.

#

and they have weird rounding rules

limber knotBOT
#

rounding or weighed evaluations?

tropic flame
#

unpopular opinion: AMP sucks, uBlock Origin doesn't properly block ads on those links and instead shows a blank space where the ad was supposed to be

heady spear
#

rounding rules for answers

limber knotBOT
#

"it's 30% right so that's 100%!"

void void
#

ubo often just breaks websites for me

#

little too good at its job

heady spear
#

I guess it makes sense, because a slip up could kill someone

limber knotBOT
#

I don't think ublock origin has ever broken a website for me

heady spear
#

meanwhile us engineers can just estimate everything

wide hazel
#

Same

tropic flame
#

I have this extension to redirect AMP pages to their HTML equivalent, on Kiwi Browser (for Android) it works more or less fast but on Firefox for Android it takes ages to redirect

#

so like, I suffer lol

heady spear
#

the redmi k20 pro looks pretty fucking good

limber knotBOT
#

I really need to finish reading this garbage

#

see ya nerds

pulsar wigeon
#

look who's talking nerd

limber knotBOT
#

ur the nerd, nerd

#

I'm a cool chad who only writes cool chad papers

tropic flame
#

we are all in a server related to minecraft server development

#

we are all nerds

heady spear
#

ur not cool until you research zoos for money

limber knotBOT
#

I turn them all in in origami form with sick-ass abs and delts

void void
#

dont call me names logics

#

u retard troglodyte

heady spear
#

Oh btw I get paid to take these dumb courses

#

imagine paying for university courses lol

void void
#

looks at himself

limber knotBOT
#

imagine pursuing zoology as a course

void void
#

looks at his debt

#

cries

limber knotBOT
#

HE BELONGS IN A museum zoo

heady spear
#

I get paid for all my courses :))))

tropic flame
#

are you simple because your mind can't work more complexly than just those elementary insults?

acoustic pilot
#

My previous roommate is in his mid-30s still paying off his student debts from his 20s lol

#

Murica

heady spear
#

they pay me for my CS and math shit too ๐Ÿ˜›

#

my uni doesn't give us the books for free tho, cheap bastards

wide hazel
void void
#

lol

#

you pay for tuition + courses at my school + books, unless the books are free for the course

#

which is not often

#

and when they're free, it's usually just an ebook

tropic flame
#

E

void void
#

and a lot of time, the professor wrote the textbook

heady spear
#

Tuition is free here, so are the courses. Some schools offer all books for free

void void
#

so basically

#

you're buying the profs mixtape

heady spear
#

Mine doesn't, but older students will share a google drive with PDFs when you start

#

That and moonshine in the middle of a football field at 3am

#

I prefer the PDFs tbh

pulsar wigeon
#

wow, piracy

tropic flame
#

don't want piracy, don't make education material paid GWchadThonkery

#

make it free, become poor and live under a bridge

heady spear
#

the recommended books are all trash tho

tropic flame
#

that's how it should be

#

/s

heady spear
#

fuck pearson and everything they stand for

wide hazel
#

@tropic flame those lists for ubo work for me

heady spear
#

we had pearson books in the IB/high school too, and I hated them back then as well ๐Ÿ˜ 

wide hazel
#

Never had an issue

heady spear
#

fucking BS books with BS illustrations and BS information

worn ember
#

haha

heady spear
#

also fuck matlab

worn ember
#

going to uni to learn stuff haha

heady spear
#

MATLAB is poo poo pee dum dum shit

tropic flame
#

@wide hazel does any of those lists properly block AMP page's ads?

wide hazel
#

Not a clue

worn ember
#

wait till you have to work with MAXIMA

terse scarab
tropic flame
#

because for me, iit blocks the ad but leaves the blank space where the ad was supposed to be

wide hazel
#

They're not 100% perfect on every site of course

#

That would be impossible

tropic flame
#

I just use the default uBlock lists + the AdGuard Spanish/Portuguese ads list

#

๐Ÿคท

heady spear
#

egg needs to learn about optimism

wide hazel
#

The default are alright

#

But you can do better easily

#

The ones I enabled work for me, but I dunno

heady spear
#

if Obama was president, then why does the sun not make the moon melt??

tropic flame
#

wait lemme show u

#

just gotta take 2 screenshots

heady spear
#

||x||

#

||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||

void void
#

||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||

wide hazel
#

But why

heady spear
#

mine is bigger than yours

void void
#

||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||

#

meh

heady spear
#

||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||

void void
#

whatevz

tropic flame
#

that loading square on the AMP screenshot is the ad that was blocked

#

in the HTML page there's no ad

heady spear
#

Mine is slightly bigger than yours so now I own your girlfriend.

wide hazel
#

@tropic flame send me a link, I cn check

#

might work

#

might not

#

who knows

limber knotBOT
#

well I finished reading now I gotta write

#

fml

heady spear
#

guys simple is a doo doo face :))) just letting y'all know

#

also, they like plain lettuce lmao

void void
#

hell yeh i do

wide hazel
#

no ads to be seen

heady spear
#

ew nasty lettuce eater

#

you should be thrown into the pit

wide hazel
#

"related" content at the bottom but that's it

tropic flame
#

weird

heady spear
#

u r

#

I'm bored

tropic flame
#

yeah on desktop it seems to effectively block the ad

#

just not on mobile

tropic flame
#

yap

#

๐Ÿคท

void void
#

get a PiHole

wide hazel
#

Indeed

#

Strange

tropic flame
#

yeah

#

regular HTML pages work fine, AMP pages do not

heady spear
#

wtf is amp

void void
#

google mobile pages

tropic flame
#

Accelerated Mobile Pages

#

yeah, made by Google

heady spear
#

gay

tropic flame
#

^

#

I mean, they're supposed to load faster, that's good but when sharing it in places like discord and reddit it sucks if whoever clicks on them is on desktop

#

also uBlock doesn't 100% work on them like I showed

brave warren
#

@tropic flame hope youre using uBlock Origin

pulsar wigeon
#

heh

tropic flame
#

yes I am @brave warren

austere ivy
#

Hmm.

#

Pihole sounds good.

limber knotBOT
#

ur a pihole

austere ivy
#

uhh

heady spear
#

wiz laughs at booty

austere ivy
heady spear
#

I laugh at the fact that he's a FAWE developer

pulsar wigeon
#

i got fired

heady spear
#

I think not

pulsar wigeon
#

wat

tropic flame
pulsar wigeon
#

well i'm fired on your discord

heady spear
#

oh no

#

well same

tropic flame
#

@austere ivy peehole

austere ivy
#

@tropic flame literally yes ezpz

#

@pulsar wigeon how'd you become WE dev?

pulsar wigeon
#

??

austere ivy
#

er how'd you become FAWE dev?

pulsar wigeon
#

???

austere ivy
#

what plugins DO you dev?

pulsar wigeon
#

you went from a retarded question to a completely retarded question

austere ivy
#

Me4502 or whatever his name is developed WE didn't he?

tropic flame
pulsar wigeon
#

tf lol

vestal jasper
#

PR code
PR more code
PR even more code

pulsar wigeon
#

what even is the question anymore

vestal jasper
#

ยฏ_(ใƒ„)_/ยฏ

austere ivy
#

wait so

pulsar wigeon
#

how did i become a WE dev
by contributing

austere ivy
#

if I do enough prs can I become a spigot dev?

pulsar wigeon
#

how did i come a fawe dev
i never was

vestal jasper
#

I assume his actual question is what steps did you have to take to go from a random person to an official WE dev

austere ivy
#

Yes there you go.

pulsar wigeon
#

sk gave me commit access

#

is that "official"?

#

lul

austere ivy
#

yes

pulsar wigeon
#

just have to write not-completely-retarded code enough to be trusted with commit access

austere ivy
#

Oof. F in chat for Lax.
F

pulsar wigeon
#

it's in the rules

#

it's in the rules in this server too actually

#

i just don't have the power to enforce it

austere ivy
#

Yeah I know it's just funny.

#

I never got not pinging, really. If you're offline and you can't take pings, then it won't notify you.

#

If you're online then it's a nice pointer to attention.

pulsar wigeon
#

no it's not

#

it's a retarded pointer to attention

austere ivy
#

Ok, DMs are better? peepoggers

acoustic pilot
#

You can actually disable DMs

pulsar wigeon
#

^^

acoustic pilot
#

You can't disable mention badges

austere ivy
#

Yeah I know. I haven't though.

pulsar wigeon
#

can't disable pings unfortunately

#

and it's honestly super rude

vestal jasper
#

it's rude because you think it's rude

austere ivy
#

I wish there was a soft ping.

pulsar wigeon
#

you're basically telling someone that you are more important than whatever they are currently focusing on

austere ivy
#

Doesn't notify anyone, doesn't draw their attention from anything.

#

BUT if they're in that channel, it shows up as a mention.

vestal jasper
#

No, you're saying "when you go to check discord, I have replied to you"

austere ivy
#

That'd be very nice for "oh look at this but it's not important"

void void
#

@pulsar wigeon

austere ivy
#

F in chat for simple

void void
#

i am more important than whatever you're currently focusing on

#

pay attention to me

austere ivy
#

boutta get peepoGIGAed

pulsar wigeon
#

i literally was fucking paying attention to you in another channel

#

you fucking retard

vestal jasper
#

Context matters. You don't decide the context / intent of people's pings. That's what's rude here, not people pinging you in conversation.

acoustic pilot
#

hm, one of the devs should do an at-everyone at some point, see if they think it's a "nice pointer to attention" ๐Ÿ˜‰

pulsar wigeon
#

vicarious don't be retarded

#

intention is as received, not as given

#

this has always been the case

#

or else you could just go around doing illegal shit and be like "it was a prank"

austere ivy
#

byteflux I literally do not mind @everyjuans

vestal jasper
#

The fuck is intent as received

austere ivy
#

OK

#

I say we petition for Discord to add soft pings.

void void
#

bro what

austere ivy
#

Instead of @austere ivy, it'd be &TehBrian.

#

Or something like that.

void void
#

to do...what

#

ping you but not ping you at the same time

austere ivy
#

Basically, instead of notifying your phone and putting a marker on a channel and distracting you from whatever you were doing, it would simply make the text orange in that channel.

#

Just like @void void

#

You see that text orange?

pulsar wigeon
#

vicarious, it doesn't matter what someone means when they ping me, what matters is that they are pinging me

void void
#

...yes

austere ivy
#

It'd make the text orange but it wouldn't notify you or annoy you or distract you in any channel.

vestal jasper
#

That's a you problem then

pulsar wigeon
#

lmfao

austere ivy
#

It's a nice "hey look at this" without being like "HEY LOOK AT THIS" peeposhrug

void void
#

I make it a habit of muting servers, and then I still get pinged but no noise.

pulsar wigeon
#

why the fuck do you think its in the rules

void void
#

ยฏ_(ใƒ„)_/ยฏ

pulsar wigeon
#

how the fuck do you interpret this to be a me problem

austere ivy
#

That's what I do.

pulsar wigeon
#

are you fucking retarded

austere ivy
#

EVERY SINGLE one of my servers are muted. The only time I look at them is WHEN I GET PINGED.

#

Which is why I prefer when people ping me, even if it's not even important.

vestal jasper
#

How about you actually look at what I'm saying

#

I'm not fucking refuting your rules

void void
#

whatevah, also wiz i was meming when i pinged you so don't murder me

austere ivy
#

Just like, oh a simple announcement, or oh look at this meme. Just ping me.

vestal jasper
#

I'm refuting your dumb points

acoustic pilot
#

yes brian but that's because you crave attention

pulsar wigeon
#

[12:04 PM] Vicarious: Context matters. You don't decide the context / intent of people's pings. That's what's rude here, not people pinging you in conversation.

austere ivy
#

ok like wow? no need to be so rude?

pulsar wigeon
#

this is just flat out wrong

austere ivy
#

literally shaking and crying rn /s

ionic sonnet
#

close discord if you don't want to interact

vestal jasper
#

Feel free to explain how it's wrong

austere ivy
#

aPES_ClapAlt truth

pulsar wigeon
#

my interpretation can't be rude

#

my reaction can be (and generally is)

vestal jasper
#

That's a strawman

pulsar wigeon
#

i never said i get to decide what other people mean by pings

austere ivy
#

ooo boy

pulsar wigeon
#

i just said i get to decide how i receive them

austere ivy
#

simple broke the rules <o/

#

That isn't a rule though PES2_Smug

acoustic pilot
#

Don't ping someone just to be a dick

pulsar wigeon
#

and for me, i take pings as you're basically telling someone that you are more important than whatever they are currently focusing on

void void
#

i dunno. sometimes i ping when im directly in convo with someone and there is other conversation happening at the same time

#

but that's pretty much it

#

unless im memeing

#

which i was

pulsar wigeon
#

i mean, just write the name then

#

don't need to ping someone who is already engaged in conversation

void void
#

i mean, when time passes a bit

#

and there is other convo

pulsar wigeon
#

either they are paying attention or they're not

void void
#

gets v busy, msgs lost

tropic flame
#

aight I just left for 2 minutes

#

cmon wtf

austere ivy
#

How would I get your attention on something important in another channel/server, wiz?

pulsar wigeon
#

define important?

ionic sonnet
#

cross your fingers

pulsar wigeon
#

like unless someone is spamming up my discord and it needs mod attention

austere ivy
#

Like this guy is asking for help with WE and it's a security concern with uh FORCE OP

pulsar wigeon
#

there isn't really much to ping me for

austere ivy
pulsar wigeon
#

that's not ping worthy

#

that's a "hey when you have time please let me dm you i found an exploit"

austere ivy
#

Huh.. How would they ask you in the first place?

pulsar wigeon
#

?

#

in a public channel

#

they say "i found an exploit i'd like to DM a dev"

austere ivy
#

huh

#

Okay what about if they found an exploit on your website?

pulsar wigeon
#

then when a dev is around they will say "sure, added you"

#

???

austere ivy
#

just imagine you have a website here

void void
#

is that like, not an active channel at all?

acoustic pilot
#

this conversation is dumber than leaf

tropic flame
#

what is "ping-worthy" for you ,wiz

void void
#

messages dont get yeeted into history?

pulsar wigeon
#

i just gave an example

#

things that are actually temporally relevant

austere ivy
#

That's the question I'm getting to. What's ping worthy?

pulsar wigeon
#

12:11 PM] wizjany: like unless someone is spamming up my discord and it needs mod attention

void void
pulsar wigeon
#

an exploit isn't temporally relevant

#

even if someone pings me and i fix it in the next 5 seconds

#

people aren't updating their servers every 5 seconds

austere ivy
#

so I can't ping you for my love for you, since that's eternal? PES_Love

pulsar wigeon
#

that's why security disclosures don't happen for months after a fix actually goes out

tropic flame
#

... brian wtf

austere ivy
#

in a friendship kinda way ,_,

limber knotBOT
#

that's fine logics4 I love you in a owo kinda way owo

void void
#

everyone sucks let's talk about Balut

austere ivy
#

but also eternal love PES_Happy

void void
#

i almost pinged byteflux to talk about Balut but Ima get banned

austere ivy
#

@void void let's talk

#
  1. what's balut
tropic flame
#

@austere ivy how are you

#

@austere ivy I hope you're fine

limber knotBOT
#

owo bawut? uwu

austere ivy
#

very good thanks @tropic flame

tropic flame
#

@austere ivy am I annoying you?

austere ivy
#

<3 @tropic flame

void void
#

Balut:

  1. duck egg, somewhat developed
  2. boil it
  3. eat it
austere ivy
#

@craggy cosmos legitimately you aren't I do not care at all

tropic flame
#

@austere ivy oh nice, I'm fine too, how was your trip to colombia?

#

@austere ivy you mistyped my name

austere ivy
#

oof sorry Logic

austere ivy
#

uhh I'm still there at Colombia

void void
#

Yes that is an eyeball and feathers

austere ivy
#

what the HELL simple

tropic flame
void void
#

it's good brian

#

dont judge

austere ivy
#

I've literally never said that

void void
#

just eat

limber knotBOT
#

that's the wrong kind of owo

#

post sexy dogs instead

tropic flame
#

you pinged Logic, tho

austere ivy
#

Like you know me, I never say hel*, ok?

tropic flame
#

that's Logic

#

I'm Logics ;;

austere ivy
#

But that's he** worthy.

#

That's wrong.

#

Bad.

void void
#

it's good

acoustic pilot
#

aborted ducks

void void
#

๐Ÿคค yummy

austere ivy
limber knotBOT
#

is it too late to abort simple

austere ivy
#

not yet

#

according to balut, any age is fine

limber knotBOT
#

can we do a very late term abortion

void void
#

what lmao

#

it's just like 18 days old m8

#

frik off ๐Ÿ˜ฆ

austere ivy
#

we're about to balut you, simple

#

GET THE BALUTER, BOIS