#general

3141 messages ยท Page 1480 of 4

twin lagoon
#

purchase fees

novel horizon
#

Alright ty

twin lagoon
#

it's just a normal paid plan + transaction fees over a set amount of revenue if you don't use checkout

#

checkout is nice though, you get a bunch of regional gateways & you can accept paypal without having paypal

novel horizon
#

I'll look into it, I don't have many payments so it may not be worth it maybe

#

Even the free one is decent, right

#

For a start to try it ^^

potent fossil
#

I saw that sulu

worn ember
#

Dimple spy

potent fossil
#

Correct

left swift
#

I just use patreon for my donations lol

potent fossil
#

nomana selling nudes on patreon?

#

sign me up

left swift
#

Minecraft rank colors on patreon

potent fossil
#

That's lame. Nevermind

worn ember
#

How many patrons do you have

left swift
#

8

#

Highest was like 17 I think

#

My system is just 5 usd monthly for supporter rank though so its easy to get patrons

potent fossil
#

nomana making $45/mo off his server?

#

poggers

#

wait no

#

$40

#

less poggers

left swift
#

I make 63 right now cuz I have a tier 2

twin lagoon
#

@mossy vessel panda_flush

left swift
#

Tier 2 simps PEPWwiners

twin lagoon
#

@warm anchor AYAYA

potent fossil
#

i've been measuring how many times i exhale while laughing and my average is 7

#

everyone else perform this experiment, thanks

waxen panther
#

wat

potent fossil
#

like every "ha" is an exhale

#

measure your legitimate laughs and count the "ha"'s

olive garden
#

is there an easy way in python (eg via itertools) to create all possible sets of disjoint pairs whose union equals the input, when the input has an even number of elements? eg. {1,2,3,4} -> {{(1,2), (3,4)}, {(1,3), (2,4)}, {(1,4), (2,3)}}

potent fossil
#

yeah that's too much math for me atm

left swift
#

Simple is going crazy

potent fossil
#

mana fuck u

#

and by that i mean when and where

left swift
potent fossil
#

just kidding i already know when and where, i checked my timeline analyzer

left swift
#

Google hangouts

potent fossil
#

Nah

olive marlin
olive garden
#

yeah that's what I'll do

#

probably, not sure what chunks are

potent fossil
#

They're 16x16x256 (x128????) volumes (idfk oh my god)

#

(Just fucking with you)

granite salmon
#

tfw when you're testing a plugin and auth servers go down :(

ashen cliff
#

At least we still have offline mode so we can test stuff.

potent fossil
#

It's almost like that's what offline mode was created for, instead of not paying for Minecraft

#

almost

ashen cliff
#

We should remove it anyway.

potent fossil
#

Of course, that can't be the true reason it was created

#

It must have been created so that people can not pay for Minecraft

ashen cliff
#

Since more people would buy Minecraft if we removed that.

potent fossil
#

It's the only logical conclusion.

ashen cliff
#

We should also make it super hard to have multiple accounts.

potent fossil
#

I agree.

ashen cliff
#

After that, we should send all chat to Mojangs servers to be inspected.

#

Including the tablist, scoreboard and nametags.

potent fossil
#

How else would we maintain our safety?

wide chasm
#

Yes, the launcher now only supports one account at a time. Want to use another account? Log out of your previous one and log in with your other one.

potent fossil
#

Do it now.

ashen cliff
#

And after that, we should remove third party servers.

potent fossil
#

We need no more suggestions.

#

Simply implement everything in your mind, as they have all proven to be intellectually founded.

ashen cliff
#

Don't worry, we already have Bedrock for that. kekwhyper

left swift
#

Sell chat logs to pay for realm servers

potent fossil
#

It's for a good cause.

left swift
#

Maybe they can get a second 1245v2 server

potent fossil
#

Or a third. It depends on the gullability payment the client provides us.

ashen cliff
#

Sell all the data to any party that requests it. They only info they need to provide to Mojang would be the persons email.

potent fossil
#

Great idea.

left swift
#

Sell emails good money

#

I would also like to request a bitcoin miner in my client

potent fossil
#

@left swift Hello. I regret to inform you that your ideas have consistently been insufficient with regard to our corporate goals. As a result, we have decided to kill you. Please report to the admin office so that we may proceed. Thank you.

left swift
#

pokiSad not again

potent fossil
#

In that case, we will do it in public.

#

.kill nomanasendhelp

limber knotBOT
#

beheads nomanasendhelp with a chainsaw and uses their head to play tennis.

potent fossil
#

Thank you.

ashen cliff
# potent fossil <@!121769553603723265> Hello. I regret to inform you that your ideas have consis...

What clearly will happen several thousand years from now unless a certain video-hosting site fixes their shit right this instant.

Fresh as Arbitrator
https://www.youtube.com/user/Zolken91

ZoranTheBear as Hobo
https://www.youtube.com/user/ZoranTheBear

Zegram as Inquisitor Headsmash
https://www.youtube.com/user/theorangechao200tv

Alfabusa as c...

โ–ถ Play video
#

Thank you for your understating.

potent fossil
#

Understood. Thank you.

left swift
#

Underthanking. Stand you.

potent fossil
#

No.

left swift
#

Stand you simple

potent fossil
#

No.

#

@ashen cliff Hello. I would like to request the SWAT team respond to the individual who is talking and reacting to me. Thank you.

olive marlin
# olive garden is there an easy way in python (eg via itertools) to create all possible sets of...

Not sure if you managed it or not. I couldn't figure anything that's pretty. But got it working recursively:

 #!/usr/bin/env python
 
 from pprint import pprint
 
 t=(1,2,3,4)
 
 def pair(array) -> set[tuple]:
     if len(array) <= 2:
         return {(tuple(array),)}
     if len(array) % 2 != 0:
         raise ValueError("Got list not divisible by 2")
     solutions=set()
     for index in range(1, len(array)):
         for result in pair(array[1:index]+array[index+1:]):
             solutions.add(((array[0], array[index]),) + result)
     return solutions
 
 pprint(pair(t))
#

I always take the first item from array and then go over each remaining item to pair it with.

#

And pass the new array without the first or the selected item to itself.

#

Of course it should be cleaned up, reduce allocations and lookups etc :)

olive garden
#

yeah I basically did the same just with less allocations

#

or did I

#

I think you did it wrong, or at least you did something else

#

I wanted the set of all possible pair sets

#

(and ended up using lists in python because a set of a set is a no-no in python)

olive marlin
#

Yes. Sets are not hashable, that's why I used tuples.

olive garden
#

oh, you just stopped the typing after tuple

#

typing as in specifying the type

olive marlin
#

Oh, yeah.

#

Should be tuple in that tuple.

#

No.

#

Wait.

#

Yeah, you are right.

#

set[tuple[tuple]]

olive garden
#

I swear I have to do more programming for my discrete maths course than for my object oriented programming course

worn ember
#

nurd

olive garden
#

it's called education

#

I know, you don't get it

left swift
#

Damb

twin lagoon
worn ember
#

why are they still milking gta5 lol

slim nymph
#

why not, it makes fuck tons of money

#

do you not like money

cedar spade
#

because it's a wildly popular and profitable game?

worn ember
#

idk, thought it'd be dead by now

cedar spade
#

...no, it's still one of the top selling games on weekly charts lol

slim nymph
#

nope, and they charge so much for "micro" transactions too

#

people be dropping multiple grand on that game

worn ember
#

yikes

#

and then you have the ones that just cheat it in lol

slim nymph
#

every dlc comes out lets you pay to get it all

#

and the idea of grinding the progress feels intimidating

cunning raft
worn ember
#

i bought the game and played it once, uninstalled and never played it again xD

cunning raft
#

peaking at 700k live viewers on twitch in the past 7 days too

worn ember
#

waste of 50bucks

slim nymph
#

i havent played ina ges but many on my friend list still playing it

worn ember
#

i didnt get the appeal to it ig

left swift
#

Viewers on twitch is from gtav rp

slim nymph
#

its fun when you just wanna cause some carnage

worn ember
#

fair enough

cunning raft
left swift
#

Ded only plays coolmathgames

#

Anything else is stupid

worn ember
#

ye

#

and 5d chess

left swift
#

Ur take of I dont like it so its waste of money reminds me of that streamer chick that said she doesnt understand depression so she thinks it stupidest thing in the world

floral mesa
#

they still do produce content update for GTA online

#

oh

#

well then

#

amazing how discord doesnt auto scroll when inactive

worn ember
#

depressions is stupid tho pepe_run

#

just be happy kappa

left swift
#

Wrong emote normie

worn ember
#

are you one of those 4chan plebs?

left swift
#

Dont go full normie ded

#

4chan is a Russian hacker

quasi valley
#

"Red Dead Onlineโ€™s summer update" has basically become a meme pepela

worn ember
#

how so

twin lagoon
#

red dead online omegachair

quasi valley
#

like two years a big ol summer update was announced and I think? came out in winter/late fall

minor badge
#

@quasi valley dorime

mental meadow
#

what the fuck is wrong with my PC, I'm struggling to keep 60 fps in Diablo 3 which is a 10 year old game at this point

quasi valley
#

10 year old game doesnt mean it's well written

mental meadow
#

but nothing seems really struggling hardware wise, everything sitting at a ~30% usage

quasi valley
#

glances at arma games

mental meadow
#

incredible, even when setting everything to low/off I get the same frame rate

potent fossil
#

i drank a lil too much, now waiting for burrito to be delivered

worn ember
#

day drinking simple?

potent fossil
#

night drinking that spilled into the day

worn ember
#

it do be like that sometimes

#

cant have a hangover if you dont stop drinking

potent fossil
#

just gonna eat my burrito then slep

faint crystal
left swift
#

Ya u drunk sinple

worn ember
#

i havent drank any alcohol in like 5 months lol

#

well nothing significant

left swift
#

Nothing significant compared to an alcoholic

merry talon
potent fossil
#

before this i also hadn't drank in like 8-9 months

#

idk why i think this is fun

#

it aint

#

k anyway

#

burrito is here

#

bai

left swift
#

Good luck eating have fun

mental meadow
merry talon
#

the fix might be still the same tbh

#

windows just likes to get dementia

waxen panther
#

we do a little windows'ing

potent fossil
#

brocc no!

#

that's dangerous,

waxen panther
#

true

#

nothing is more risky than un protected windows usage

potent fossil
#

That's why I always put on a condom before booting Windows.

mental meadow
#

kinky

#

using windows that is

potent fossil
#

Of course.

quasi valley
#

you almost made me spit out my cookie, simple omegaroll

spiral robin
#

hi

half lynx
#

.optimize

limber knotBOT
potent fossil
#

i reported my delivery driver for not following instructions

#

they put my food on the ground instead of the bench i set up

#

it says very clearly put it on the bench!!!!!!!!!!!!!!

#

this is unacceptable

potent fossil
#

correct. ok goodnight

mental meadow
#

I think I found the issue

#

it was sound lol

#

you can set the amount of channels D3 should use, it was set to 128, setting it to 32 and my fps don't drop anymore

twin lagoon
haughty bear
#

can I ask a dev question here if it's not specifically related to paper or minecraft?

vernal moth
#

yes

#

it costs 1 taco tho

haughty bear
#

๐ŸŒฎ

#

I have this parser grammar for a maths parser:

<expression>    ::= <signed_term> <sum_op>
<sum_op>        ::= PLUS_MINUS <term> <sum_op> | ฮต
<signed_term>   ::= PLUS_MINUS <term> | <term>
<term>          ::= <factor> <term_op>
<term_op>       ::= MULTIPLY_DIVIDE <factor> <term_op> | ฮต
<signed_factor> ::= PLUS_MINUS <factor> | <factor>
<factor>        ::= <argument> <factor_op>
<factor_op>     ::= EXPONENT <expression> | ฮต
<argument>      ::= FUNCTION <argument> | OPEN_BRACKET <sum> CLOSE_BRACKET | <value>
<value>         ::= NUMBER | VARIABLE

I don't really understand much about parsers and grammars, but I found this online and one issue I've found is:
10 + 5 + 2 evaluates as a sum of [ 10, 5, 2 ] however 10 / 5 / 2 evaluates as [ 10 / [ 5 / 2 ] ] in the node structure (add, subtract, multiply, divide etc. is stored as a list of nodes).
(addition/subtraction and multiplication/division are treated as the same thing, just a different op; += vs -=, *= vs /=)
How can I modify this grammar to make that division evaluate to [ 10 / 5 / 2 ]?

vernal moth
#

why would you even want that?

haughty bear
#

java and python both evaluate 10 / 5 / 2 to 1

vernal moth
#

it makes sense to simplify sums like that, but for non associative operations its important to scope properly

#

oh wait I look wrong

#

sorry

#

I got confused by your notation

haughty bear
#

I don't know exactly what it means myself lol

vernal moth
#

yeah its def too late to think about grammars, sorry

#

can't you debug the individual steps the parser takes?

haughty bear
#

sure but I'm not sure what use that would be

vernal moth
#

I know jflex prints out all kinda stuff if you enable debug for example

haughty bear
#

I just know the grammar somehow disallows [ 10 / 5 / 2 ]

#

something to do with term ::= <factor> <term_op> but factor ::= <argument> <factor_op> maybe

#

or maybe I should write my own grammar, but I have no clue how to do that

vernal moth
#

I wrote a grammar for minimessage

#

but I only pretend to understand it

haughty bear
#

kind of like regex

#

everyone pretends they know how it works

vernal moth
#

regex is simpler tho ๐Ÿ˜‚

haughty bear
#

that is true

waxen panther
#

looking at minimessages jflex stuff made my heart shatter

#

@cunning raft

cunning raft
waxen panther
#

double pump from fortnite ๐Ÿ˜€

cunning raft
#

i have no idea what that is

waxen panther
#

neither do i!

#

i think oskar should explain it

cunning raft
#

but those are the two worst guns in valorant

#

ok

twin lagoon
#

๐Ÿ˜€

waxen panther
#

wow epic!

#

๐Ÿ˜€

cunning raft
#

ninja poggers

waxen panther
#

Me when i watch the epic blue hair person drink a blue chug jug on my favourite game fornnight ๐Ÿ˜€

twin lagoon
#

ahahahahaha

untold copper
#

brO

#

illegal

waxen panther
#

no

mossy vessel
#

no

woven otter
#

no it's "Resource Monitor" ๐Ÿ˜

vernal moth
waxen panther
#

looking at the grammar to fix an issue :'^)

vernal moth
#

If you got a solution to that, sure Oskar

waxen panther
#

what issue is this?

worn ember
#

the mc wiki says you can put looting on shears but it doesnt work cmonBruh

wide chasm
#

You mean fortune?

wraith trail
#

does it work if you kill the sheep with sheers? I don't see why adding it for shearing it would as thats not how it works anywhere else

#

fortune is just for blocks I think

worn ember
#

no i mean the enchant doesnt work

#

the wiki says you can add it to the item

#

but it doesnt let you without creative

wraith trail
#

oh lol

worn ember
#

cant in vanilla either tho so idk where they pulled that out

#

but if you apply it to the shears in creative it does work lol so idk if its intended or not to work or what

wraith trail
#

odd

worn ember
#

mc in a nutshell

frank otter
#

yes

#

what in particular

#

slide

#

slide everywhere

#

there's that digital threat whatnot in titanfall and I think it's in apex too

#

makes enemies hot pink

#

iirc sliding gves you a speed bist even uphill

#

what shooters did you play before?

#

not sure about war one and cold War but csgo and val are very stand still and shoot

#

apex is alla out movement

#

I can spell today

#

if I remember, because getting hit slows you down

#

it's more important to not get hit than to land shots some of the time

#

this is all my opinion and I'm pretty bad

spring otter
#

Hello, Does anyone knows how to open minecraft with java 16 not java 8

quasi valley
#

go to your installs, edit a profile, show more options, change the java path

#

yeah assuming you want that for pre 1.17 already

wraith trail
#

it only does that for 1.17, all other versions use an ancient build of java 8

#

version, not build

spring otter
#

thank you

wide chasm
#

The Vanilla launcher shouldn't by default, but you could've changed it manually

frank otter
#

learn rust

formal turret
#

I guess it's time to take a break then

#

not think about valorant for 15 minutes

cosmic raft
#

learn

#

@visual egret if you want to do some light reading

#

read these:
Point-free Program Transformation: https://haslab.uminho.pt/alcino/files/pfpt.pdf
The essence of strategic programming: https://pdfs.semanticscholar.org/8643/73ffcee27467876b1030ee347b3c2e625756.pdf
Algebraic Specialization of Generic Functions for Recursive Types: https://haslab.uminho.pt/alcino/files/msfp08.pdf
Generic Programming with Fixed Points for Mutually Recursive Datatypes: http://users.eecs.northwestern.edu/~clk800/rand-test-study/_gpwfpfmrd/gpwfpfmrd-2009-10-8-12-02-00.pdf
A Formal Comparison of Approaches to Datatype-Generic Programming: https://arxiv.org/pdf/1202.2920.pdf
Profunctor Optics: Modular Data Accessors: https://arxiv.org/pdf/1703.10857.pdf
Generic Point-free Lenses: https://haslab.uminho.pt/alcino/files/mpc10.pdf
Type-safe Two-level Data Transformation: http://www4.di.uminho.pt/~joost/publications/TypesafeTwolevelDataTransformation.pdf
Transformation of structure-shy programs with application to XPath queries and strategic functions https://haslab.uminho.pt/alcino/files/scp.pdf
Calculating with Lenses: Optimising Bidirectional Transformations: https://haslab.uminho.pt/alcino/files/pepm11.pdf

#

of course not

#

learn!

olive marlin
#

Thanks Kash, stolen the list for if I'm ever running out of things to do.

ancient bolt
#

I hate learning

#

I refuse to do it

#

I haven't learned anything since I was 5 years old

cosmic raft
#

no

vernal moth
#

Other blizzard games?

cosmic raft
#

nothing, I have it connected only so people know which account is actually mine

vernal moth
cosmic raft
#

I've had people try to impersonate me

ancient bolt
#

So I'm listening to the pirates of the caribbean curse of the black pearl sound track to help focus on work and god damn it's so good. One of the best movie soundtracks of all time imo

worn ember
#

all PotC songs are pretty good

vernal moth
#

Whenever I hear it I start playing it on piano in my kind, lmao

#

Mind*

ancient bolt
#

in general each of the members of the core team have had situations and times when people have tried impersonating us in different ways on different platforms

cosmic raft
#

Not on blizzard

#

In general

#

So I've linked my accounts that I own, so people know which are actually mine

worn ember
#

Hello i'm DemonWav DenWav

ancient bolt
#

speaking of I need to fix some of my account links

cosmic raft
#

None of this "Did you send me a friend request on battle.net" shit

worn ember
#

I had someone impersonate me on skype a few years ago thonk took my gamertag and pfp

#

like wtf

#

if i was famous i'd understand, but i'm literally some rando that plays minecraft

vernal moth
#

Ppl tried impersonating me on spigot

#

That was dum

worn ember
#

people do everything for attention ig

warm anchor
#

Even dumber some people do fall for it

cosmic raft
#

"Fame" has nothing to do with it

worn ember
#

and then theres the amount of people that slide in your dm's cuz they need something

#

those are the worst

#

Them: "hey dude been a long time"
Me: "what do you want"

#

95% of the time they need something so might aswel cut the bs lol

warm anchor
#

Also this one from steam is now on discord.

#

Gotta be the stupidest person to actually fall for it

worn ember
#

lol

#

i mean at the start its not obvious

#

but the moment you go into it a bit it gets clear quickly

#

best is subjective

#

depends on the situation

olive marlin
#

Kubernetes would like to have a word with you.

spiral robin
#

hi

quasi valley
#

no aber, you're not kubernetes

spiral robin
#

but MOOOOMMMM

#

you said i can do whatever i want in life ๐Ÿ˜”

cosmic raft
#

hi @spiral robin!

spiral robin
#

hi kash :D

#

miss u xoxo

worn ember
#

everything except that ๐Ÿ™‚

cosmic raft
worn ember
#

kash, what project are you working on now?

ancient bolt
#

He's supposed to be working on getting me tacos

olive marlin
#

It's easier to ask what project Kash IS NOT working on rn.

worn ember
#

slacking again smh

vernal moth
#

Oh shit

unkempt drift
#

wait 2.0?

#

hell yes

spiral robin
#

yesterday kash told me the official date of hardfork

#

i guess you could argue it is somewhat more secure

#

in different ways

twin lagoon
#

@spiral robin @spiral robin @spiral robin @spiral robin @spiral robin @spiral robin @spiral robin @spiral robin @spiral robin @spiral robin @spiral robin @spiral robin @spiral robin @spiral robin @spiral robin @spiral robin @spiral robin @spiral robin @spiral robin

ancient bolt
#

saw the mass ping and almost instinctively banned

worn ember
#

ethernet is faster than wifi

olive marlin
spiral robin
#

be like me, i have a 150ft ethernet cable from inside my house upstairs, out the window, down the side, down the wall of my hosue and into my basement pc :)

#

@twin lagoon pleadcry apple_pleading

vestal jasper
#

You must be 13+ in order to use discord

waxen panther
#

LMAO

worn ember
#

gg

olive marlin
#

Because base64 is the best encryption! /s

worn ember
#

base64? more like bass -64dB amirite

cedar spade
#

hello

cunning raft
#

do you want to go to federal prison

worn ember
vestal jasper
#

No I quite enjoy being able to visit my home at will

#

2inch thick beds really aren't that comfortable imo

waxen panther
#

yo you guys tried bank robbing yet

twin lagoon
#

josh SlowPensive

vestal jasper
#

hi

worn ember
spiral robin
#

@cedar spade

#

hi

cedar spade
#

@spiral robin

#

๐Ÿด๓ ง๓ ข๓ ณ๓ ฃ๓ ด๓ ฟ

olive marlin
cunning raft
#

no

worn ember
#

ask google

cunning raft
#

you're not getting hacked either way

#

as long as the wifi network has a password

worn ember
#

jroy is gonna hack you

vestal jasper
#

Noone cares about your network lmao what are they gonna get random spongebob pictures

cosmic raft
vestal jasper
#

what

worn ember
#

does he mean macspoofing or what? Or otherwise, who is mag?

vestal jasper
#

You should realise that exploiting things without prior authorization is something we call "not a good fucking idea"

worn ember
#

the only hacking you need is social engineering anyway

cunning raft
#

ok

vernal moth
vestal jasper
#

if there were no hackers then the existence of exploits would therefore not matter

cunning raft
#

yeah i remember doing that too pepelaugh

vernal moth
#

Sadly https/hsts makes that hard :/

worn ember
spiral robin
#

just shut up please

vestal jasper
#

If there's noone to exploit something then... there's noone to exploit something.

cunning raft
#

yeah for the better

spiral robin
#

google it

#

jesus

vestal jasper
#

You should probably ask for your parents help if you're having troubles setting up a network.

worn ember
#

i really cant tell if this guy is trolling or not

vernal moth
#

We really can't walk you thru setting up a Ethernet network

spiral robin
#

they have to be

#

GOOGLE IT

worn ember
#

this is even beyond oskar level

vernal moth
#

Plugging stuff into the wall obviously only works if "the wall" is connected to your router

worn ember
#

plug it in your outlet

limber knotBOT
#

is there a way to disable those annoying statuses/playing info for other users in dumcord?!?

worn ember
#

avoid anything with gaming in the name

vernal moth
#

Dude you already have a router

#

You don't need a new one

spiral robin
#

mini just sit back and watch

vernal moth
#

Without a router you couldn't connect to the internet

limber knotBOT
#

the only routers you want are the ones that allow you to install OpenWRT

spiral robin
#

dont waste your time

worn ember
#

Marcel, honest question, are you legal to use discord?

vestal jasper
#

your parents let you have a pc in your room at that age? lucky

vernal moth
#

Gaming routers do have a use, they have multiple antennas and strong 5ghz

limber knotBOT
#

is that open source, Prof?

worn ember
limber knotBOT
#

oh, there

vernal moth
#

Marcel please just talk to your parents

limber knotBOT
#

their link is freaking small

#

(to github)

spiral robin
#

anyone is more techy than you mate

vestal jasper
vernal moth
#

There is always a place and a time

worn ember
#

haha probably for the better

olive marlin
#

Yeah, Gargoyle is a fork of OpenWRT iirc.

limber knotBOT
#

it looks like something out of the 2000s xD

worn ember
#

i want to start a petition to rename forks to sporks

olive marlin
#

I haven't had a chance to try OpenWRT because I saw Gargoyle and decided to try it.

worn ember
#

i sporked spigot

limber knotBOT
#

as far as I can tell it's just OpenWRT with some fluff and extra pre-installed services

#

but ยฏ_(ใƒ„)_/ยฏ I'm not going to change my somewhat working setup any time soon lol

vernal moth
#

Cables can cross multiple floors

limber knotBOT
#

maybe I'll test it on a new router at some point, good to know about it at least

olive marlin
#

Yeah, I only did it cause I wanted to try it on a new router.

vernal moth
#

Can't see anything bad?

worn ember
#

i mean

vernal moth
#

What's so bad about that?

#

It's not new that google shows ads?

#

Everybody uses an adblocker anyways

#

YouTube vanced ftw

worn ember
#

i wonder what their alternative will be when everyone uses adblockers

#

i dont

vernal moth
#

What's this offline thing

worn ember
#

spotify premium for me when running

vernal moth
#

Also Spotify caches stuff, i have 15gb of music on my phone, lol

worn ember
#

well yeah, where else you gonna get it from

vernal moth
#

Just get Spotify, it's super cheap

#

Get your whole family on board and it's just a few euro per month

#

15 euro for 5 accounts iirc?

worn ember
#

get the whole street on spotify

spiral robin
#

yes

#

if you pay

vernal moth
#

If you save them

spiral robin
#

another question for google :^)

worn ember
#

you can set it to download offline mini

vernal moth
#

Yeah that's what I mean

worn ember
#

oh ok

vernal moth
#

You need to tell it what to download

worn ember
#

i just set my whole playlist to download

vernal moth
#

YouTube music works offline iirc?

topaz mortar
#

troll get to bed.

vernal moth
#

YouTube vanced kinda gives you that for free

void void
#

so in mongo i have several million entries that are email address : phone number
how do i remove every email that isnt part of a certain service
like i have a list of certain services, gmail; outlook; yahoo, etc
and lets say if an email is not that, i want it removed
what command would i run

worn ember
#

yt downloader peepotos

vestal jasper
#

is there no gap under the door?
I literally run a cable under mine no problem

vernal moth
#

Downloading music is most likely not legal

worn ember
#

its legal for personal use :p

#

distributing it is not however

vestal jasper
#

No, I obey the law.
I pay for the services and things I consume

topaz mortar
#

Only using yt-downloader for downloading music, that is licensed the right way.

vernal moth
vestal jasper
#

Jobs help with that

vernal moth
#

Spotify is really a steal for what you get

#

Especially on student or family plans

worn ember
#

mini exposed

#

"student" plan is a joke tho

vernal moth
#

Why? It's half the price, lol

topaz mortar
#

I'm not listening to music that often, when I do it's youtube (online).

worn ember
#

for 3 months

vernal moth
#

And no, I generally pay for content, unless it's by EA, fuck them

worn ember
vernal moth
worn ember
#

for me it said 3 months

vernal moth
worn ember
#

total price of sims expansions is like 800$

vernal moth
#

And fuck no am not paying whatever how many hundrets of dollars for that game

topaz mortar
#

Advantage of not playing SIMS. ๐Ÿ˜„

vernal moth
#

It's such a good game tho

worn ember
#

2 and 3 were the best

#

4 is yuck

vernal moth
#

Sims got best changelogs

#

Just watch that vid

worn ember
#

listen to the radio then

olive marlin
#

yt-downloader? Also many services provide download of free music, just usually it's not the music you want to listen to.

spiral robin
#

yes

olive marlin
#

I don't listen to music >.>

wraith trail
#

it caches stuff

#

to a point

#

so if you listen to stuff it'll stay on your phone for a decent while

vernal moth
#

No

wraith trail
#

yes

olive marlin
#

I pay like 6-7$ for 10GB I think?

vernal moth
#

Different counties different prices

olive marlin
#

Sorry, 15GB ๐Ÿ˜Ž

vernal moth
#

US is obviously fucked because they don't regulate the market

olive marlin
#

In USA, they want to charge us over 1USD for 100kB. Yes, not MB.

#

Yes.

vernal moth
#

Considering the time, yes, most ppl are EU rn

#

Wait an hour or two and EU is asleep

#

And then the dark side of paper rises

olive marlin
#

Play wita w USA. Koszty polaczen do Polski - 8 zl/min, polaczenie przychodzace - 4,92 zl/min. Koszt SMS - 2 zl, MMS - 3 zl. Koszt transmisji danych - 4,3 zl/100kB (taryf. co 100 kB ). Wszystkie ceny sa z VAT. Polaczenie z alarmowym nr 112 jest bezplatne. Wiecej informacji o roamingu w USA - wyslij SMS o tresci '2' na nr 115 lub zadzwon na nr +<REDACTED>.

spiral robin
#

no

olive marlin
#

no sport > any sport

vernal moth
#

And that's coming from an American

#

Let's hope he doesn't meant pretend football

#

No it's not, lmao

#

Football players chill most of the time

#

The games are really long and boring

#

Only half of players are moving

spiral robin
#

suiting gif

vernal moth
#

I played waterpolo semi professionally for 13 years

worn ember
#

ah yes waterpolo, where your balls get more stomps than the ball

vernal moth
topaz mortar
#

What is that? Never heard of it. Hate sports

vernal moth
#

That's literally me

#

I was a goal keeper too

#

And you use the water to cool yourself off

worn ember
#

nomba wone

olive marlin
#

I broke my streak of 260+ days without exercises yesterday. So it's going well.

#

Now I don't need to excercise till the end of year.

topaz mortar
worn ember
#

the water is hot duh

vernal moth
#

Under water heat isn't removed from your head

worn ember
#

just swim in cold water then

vernal moth
#

It's more isolating I guess

#

The water is coldish, but it's not enough to get rid of the heat

topaz mortar
#

add a zero at the end and that's my streak.

vernal moth
#

Remember, you can't really sweat in water like you would do for other sports

#

So your head is the only real place where heat transfer happens

worn ember
#

wym, water is rather conductive tho

vernal moth
#

Back to the excersice question, sex counts right?

#

Cause I don't do other kinds of excersice rn, lmao

worn ember
#

we should go sex together sometime mini

topaz mortar
#

Your hand doesn't count

vernal moth
#

Since swimming pools are closed, weighs are for brain dead idiots and jogging is for hipsters

worn ember
#

lockdown baby wen?

#

tbh my niece is due a few weeks ithink

vernal moth
#

Fuck no, lmao

worn ember
#

which means lockdown baby

#

fuck i'ma be an uncle

vernal moth
#

Baby is the least thing I want rn, especially not with her, lmao

vestal jasper
#

@static badge they fixed the junkrat ult exploit

static badge
#

the what

worn ember
#

wow

vestal jasper
#

"Fixed a bug that caused Jundrat's RIP-Tire to teleport to the floor if his ultimate is triggered on a high ledge"

worn ember
#

so just a booty call

vestal jasper
#

AKA if you ult as junkrat and your tire would be over a ledge it would instantly teleport to the ground

#

It's an annoying as fuck exploit because you can't react to a fucking tire teleporting onto you

#

positioning etc ik ik

worn ember
#

what game even

vestal jasper
vernal moth
#

Overwatch

spiral robin
#

Spottedleas

#

Leaf

#

Thats a name I haven't heard in a while

worn ember
#

hes too busy fixing lighting bugs to talk here

static badge
#

go back to reddit

#

that is quickplay my dude

#

i could tire across the entire galaxy and get a 4 man

vestal jasper
#

Doesn't change the fact that it works in comp and was heavily used there as well

#

An exploit is an exploit

waxen panther
#

@static badge

static badge
#

weeb

vestal jasper
#

furry

waxen panther
#

x

void void
#

Hm

worn ember
vestal jasper
worn ember
#

very true

vestal jasper
#

your system notifications is probably the only place

#

once they're declined they're declined

#

ok

#

I gave my answer

#

Listen I'm not very smart with social interaction the highlight made me think you were being sarcastic

#

I'd rather not be found in a ditch ty

golden gust
#

God, id love to see that

ashen cliff
coarse lily
golden gust
#

Hey, 'least am honest

worn ember
#

wtf tool is that

ashen cliff
#

Why TF did it even ask me, if in the end it solved the issue itself?

#

gmaster.

worn ember
#

so you can view the changes?

ashen cliff
#

Yeah, but since the merge tool auto resolved them, I couldn't even see what changed.

worn ember
ashen cliff
#

Now I really want to know what the change was. kekwhyper

#

I have no idea where the conflict even was. Maybe due to them changing something to void?

worn ember
#

line endings maybe?

ashen cliff
#

Nope.

#

Well. It still works. kekwhyper

worn ember
waxen panther
#

wat

vestal jasper
#

that question makes little sense without any context

#

uh

worn ember
#

idk what we are supposed to do with that lol

vestal jasper
#

your lack of remembrance of which plugins you're running is concerning

golden gust
#

how are we supposed to know

#

go look over your plugin list and search in the files for it

wraith trail
#

what do you want anyone here to do?

golden gust
#

then, on the basis that we can't see your server, you're fucked

waxen panther
#

looks like my magic ball is broken today ๐Ÿ˜ฆ

golden gust
#

if you installed anything we recommended it would be LuckPerms, but, otherwise, you're SOL

#

We're not magicians

tranquil summit
#

i am

#

i can make anyone's code disappear as i steal them

vestal jasper
#

I see little reason to run anything but LP unless you're doing inhouse stuff, but in that scenario, you'd 100% know what plugin you're using lol

worn ember
vestal jasper
wraith trail
#

wow thats a lot of screenshots

worn ember
vestal jasper
#

if you have 300 plugins, my first suggestion is to not have 300 plugins

#

my other suggestion is to not post 30 screenshots in chat and flooding it

#

post it to an imgur album or smth

#

or like use the /pl command in console and copy the text lmao

worn ember
#

posting the output of /plugins wouldve been the better choice lul

#

sniped sad

coarse lily
#

Looks like an offline mode server, too.

#

Booooo

vestal jasper
#

you literally have a luckperms folder

#

most of us do not condone piracy and will not offer support to such servers

wraith trail
#

piracy = bad

vestal jasper
#

that's not a variable we can verify, and is thus redundant
offline bad

cunning raft
#

i care

waxen panther
#

lmfao did this guy really post 7 screenshots

#

i love it

vestal jasper
#

but yeah we've already told you the answer as to which plugin it is

vestal jasper
#

so hf

waxen panther
#

amazing

coarse lily
#

As others said, a lot of people don't provide support for offline mode servers.

vestal jasper
#

also in the future a channel specific to receiving help may be better #paper-help

#

that's because that plugin does not control ranks it displays a menu for them

#

which isn't what you asked

waxen panther
#

yes

#

@void void who are you ๐Ÿ˜ก

worn ember
waxen panther
#

no they're not

vestal jasper
#

I'm not sure how your gender plays a factor into this

#

Or how it's relevant tbqh

#

please no ableist slurs

left swift
#

what the fuck happened in here i was gone for like 30 minutes

waxen panther
#

hey mana pleadinghearts

left swift
#

i can't spell help

#

sorry

wraith trail
#

yes, thats the only reasonable conclusion to draw from this

vestal jasper
#

again, I don't see how gender is relevant here

#

we don't condone piracy and you're not in the correct channel to receive help

left swift
#

what is grass

vestal jasper
#

so you can't really expect your quality of help to be that great

left swift
#

i only know the light from my parents basement

waxen panther
#

you can wait for proxi to wake up and she'll tell you exactly the same thing if you want

left swift
wraith trail
#

!ban @tropic scroll you aren't needed here

thorny flickerBOT
#

:raised_hands: Banned Branley#0116 (you aren't needed here) [1 total infraction] -- sulu#5890.

waxen panther
left swift
#

back to ded chat

#

SAD!

formal turret
#

truly

left swift
#

no it's james corden

#

very

potent fossil
#

hello

#

Do we have trolls in paper today?

left swift
#

never

potent fossil
vestal jasper
#

simple you're late

#

you would've had fun with this one

golden gust
#

I mean, you sure as heck look like one

swift root
#

๐Ÿ˜ณ cat said heck

coarse lily
#

Bad cat.

left swift
#

someone change cats litterbox

potent fossil
vestal jasper
#

yeah same

#

I gotta flip my schedule 180 lol

potent fossil
#

Literally just woke up and it's 6pm

worn ember
#

me too

potent fossil
#

Same I need 6am

vestal jasper
#

I woke up at 1pm and I gotta start waking up at 3 am

worn ember
#

oh wait its already 3am sad

#

lockdown bad

waxen panther
#

bababooyee

potent fossil
#

ok I'ma go shower now bai

vestal jasper
#

think my cat's broken

#

he just jumped on my lap, walked in a circle, jumped down, walked around my chair, and jumped back on my lap and stared at me

pearl ibex
#

Kash!

#

Hi. o/

merry talon
warm anchor
upbeat falconBOT
golden gust
#

they mean the fake cash

wraith trail
#

noun

golden gust
#

sorta like dollars

wraith trail
#

google straper messes up when google provides a definition

waxen panther
#

fix wen!!!

wraith trail
#

at some point

vestal jasper
#

just dad joke'd @potent fossil and he is very much not amused with me rn pepela

upper flicker
#

@cunning raft is the head crypto nerd around here marcel. Jroy you have any thoughts?

vestal jasper
#

He's pretty nice when he's talking about topics he's passionate about.
Crypto is one of those

waxen panther
#

head of crypto @ papermc, professional skript developer, Joshua Roy

warm anchor
#

@visual egret PepeLa Just encountered this

vestal jasper
#

you could say the body is in... stable condition

warm anchor
coarse lily
#

Why are you scared of jroy?

#

That doesn't explain "why"

warm anchor
#

yeah?? Jroy is just about the nicest person here

vestal jasper
#

nicer than @potent fossil

waxen panther
#

Joshie ๐Ÿฅบ

coarse lily
#

JRoy is pretty nice.

#

Does a bunch of dev stuff, too.

#

Good for reviewing PRs and so forth.

#

Solid lad.

vestal jasper
#

dude's in a weight class of his own just from his sheer muscle mass

golden gust
#

Yea, professional weight lifting of a bowl

vestal jasper
#

dude could pick up an immovable object with one finger

#

he could stop an unstoppable force just by looking at it

coarse lily
#

What sort of Minecraft server do you run / play on BTW?

#

I thought I saw you asking for server help the other day. Did you get it fixed?

#

Oh you don't run a server?

#

Hm must be confusing you with someone else

#

Or maybe you were asking for dev help or something? Are you a dev?

#

Oh you were asking for dev help for a friend?

#

Alright fair enough.

#

Must be a different Marce

#

I think that Marcel was asking for git help

#

Maybe it was another server, though

#

If you aren't a developer then you probably don't know what git is

#

Yeah voice channels are clickable now

#

Oh you are a dev?

#

Maybe it was you

#

Java?

#

Or crypto stuff?

potent fossil
#

i got added to a group chat on discord and i have no idea what server they came from

#

fun

#

stupid children

swift root
#

can't u just look up mutual servers?

left swift
#

Sinple too drunk for that

potent fossil
#

I did look up mutual servers and there were none

#

So they probably joined, added me, and left. Idk

waxen panther
#

james-wae

potent fossil
#

He added me too, and I declined cause idk what he wants

waxen panther
#

who are u

#

i need to know

#

my life wont be complete until i know

left swift
#

James da wae

#

I'm James Corden

waxen panther
#

no but who are you

left swift
#

Brocc takes over rustopia main once and all of a sudden gets an ego huh

wraith oracle
#

james man, how do you not know james

waxen panther
#

dont have one ^_^

waxen panther
left swift
#

Filth

waxen panther
#

official servers are unplayable now though

#

70% of the pop are using esp PepeLa

#

who are you!

left swift
#

TRUE!

waxen panther
#

Yes you are

#

dont discuss other server drama here though :p

#

paypal me $100

#

โ˜น๏ธ

potent fossil
#

lol

waxen panther
#

bababooyee

void void
#

Can someone help me? I do not configure my server and I just want to change the version

wraith trail
#

please don't ask in multiple places, and don't ask to ask. I've already answered you in #paper-help

waxen panther
void void
#

I'm sorry I'm new here and I don't even speak English

waxen panther
#

dont tell anyone lol ?

#

how would we know

#

ok!

#

cool

#

it's not a servers job to moderate wrong client usage

#

report it to discord if you care

wraith trail
#

client mods are against tos, we can't encourage you to use them

#

no?

#

james how old are you?

#

you are either a troll or very young

potent fossil
#

19 talking like a 12 year old

#

hi mari pepelove

minor badge
#

?ban @void void Cheap troll

thorny flickerBOT
#

:raised_hands: Banned James-Wae#5713 (Cheap troll) [1 total infraction] -- Proximyst#6900.

minor badge
#

@potent fossil hewwo

potent fossil
#

ur cute KEKFlushed

minor badge
#

woa

wraith oracle
waxen panther
#

you tell us

#

๐Ÿ˜

spiral robin
#

hi

potent fossil
#

well, the thing is...young people say stupid shit, spam because they don't know or care to read the rules, and general act as nuisances

trolls do that too, but not because they're young but because they are assholes

so, there's really no distinguishing. behavior like that should simply be quashed regardless of the reason for be it age or being a troll shrug_animated

but then again there's a reason I'm not a mod

shell vine
#

Squash the kids

potent fossil
#

not squash, quash

shell vine
#

O

waxen panther
#

me when mari is typing

minor badge
#

they claimed they were 19, so either lying or troll :)

#

they were also trolling in other MC communities prior to paper fwiw

potent fossil
#

they're probably the one that added me to that spam gc earlier

#

oh well

left swift
#

me when brocc is poggers OMEGAPOGGERS

waxen panther
#

woah

#

me when manas new avatar is poggers

left swift
vestal jasper
#

so it's a bit redundant to ponder if they're either

potent fossil
#

yeah that's essentially what i was saying in more words

vestal jasper
#

yes

potent fossil
#

ok qt

potent fossil
#

lmao

#

that's p funny kash

#

lmao the swimming out to the boats jesus

cosmic raft
untold copper
#

oskar is 20 years old drunk male confirmed??????

magic river
#

Dunno the specifics of the laws around whatever BlockFi claims to be but if a bank accidentally gives you a bunch of money it's illegal for you to take it, apparently at least one person tried to take the BTC and run

cosmic raft
magic river
cosmic raft
#

lmao

nova plume
merry talon
#

701 btc is a fucking stupid amount of money

#

how does their infrastructure exist in a way that you can send someone 28 million dollars by accident

vernal moth
#

Sorry to break it to you, but for them money is just some field in some database

#

It's entirely virtual

#

Until it gets "real" for Bitcoin stuff, but am not sure those are transactions on the chain?

merry talon
#

I mean i don't see how that could happen without the coins really existing

unkempt drift
#

Hangar + blockchain wen?

magic river
#

They don't exist on the chain until you withdraw them from BlockFi

vernal moth
#

The way I understand this, there was no real transaction

merry talon
#

ah I see

magic river
#

Some people did so, up to the 100 BTC limit

vernal moth
#

They just incremented a number on your account

#

And they only become real when you actually withdraw

#

As real as a dum crypto can get

worn ember
#

I hope they all go bankrupt and cry themself to sleep. So tired of all this crypto shit

merry talon
#

crypto is alright but btc is dumb

vernal moth
#

Crypto is a global ddos on international supply chains

#

First gpus and cpus, now fucking flash?

#

Its not like we just went thru a flash shortage and slowly were recovering

merry talon
#

I amend my statement

#

POW/proof of storage/whatever crypto is dumb

vernal moth
#

What else is there?

merry talon
#

proof of stake

vernal moth
#

Oh stake

#

I thought that's what you meant with POS

merry talon
#

dunno if proof of storage is what it's called but

#

any crypto where we're just wasting hardware is stupid lol

vernal moth
#

Maybe chia is started by Samsung so they can have a bit of the crypto bullshit market too

#

Altho most of the miners are chinease iirc

potent fossil
#

Ok semester finished. I procrastinated but just finally finished all the discussion boards for history.

#

I'm free now.

#

And I failed physics, but then he passed me anyway so everything went better than expected (TM)

vernal moth
#

Wooo

#

So now free time for a few months?

golden gust
#

The thought of simple being happy

#

idk why but it really pisses me off

ancient bolt
merry talon
#

No one would ever earn anything then

#

why would you keep a steak around

ancient bolt
#

That's the beauty of it

#

Gotta sacrifice something in order to gain something else

potent fossil
ancient bolt
#

I'm going to start a new crypto, proof of memory, to make sure there's a ram shortage too

merry talon
#

proof of ownership of factory sealed GPU

ancient bolt
#

Or how about proof of power, speedrun killing the earth as fast as possible. Thought Bitcoin was bad? Wait till the biggest miners are the coal power plants outputting gigawatts

merry talon
merry talon
#

I mean, how different is mining bitcoin from a machine specifically designed to use as much energy as possible?

ancient bolt
#

There's losses in the process that make sucking up that power harder. You could more easily dump way more power by heating metal rods in running water like a river

#

For GPUs they can only draw so much power before they fail, so you gotta have tons of them

#

But ovens or furnaces or air conditioners can take a ton more

lilac heath
#

Hi

vernal moth
#

Proof of temperature, sub zero cool your server room ๐Ÿ˜‚

golden gust
#

You're not making dough if you're not rolling coal

ancient bolt
#

So if your load was just to heat up some metal you could have an additional load specifically built to cool the metal, doubling your power consumption

merry talon
#

You have to remember that specialized hardware has the benefit of depleting earth's natural resources like silicon and gold as well

lilac heath
#

Hii

ancient bolt
#

@lilac heath hi

lilac heath
#

Hi!

ancient bolt
#

Oh, another good one would be proof of energy storage, so we can use up all our lithium

vernal moth
#

Could turn it into good and do proof of co2 storage, lol

ancient bolt
#

People would just start producing tons of CO2 for the purpose of storing it

merry talon
#

That's why you have proof of emissions as well

#

That must just be the most straightforward way

#

where was that story about some gov putting a bounty on snakes and then people just ended up breeding them and then releasing them into the environment after the bounty was canceled

olive marlin
woven otter
magic river
novel horizon
#

Funny how anything is not working or is somehow not expected and most people are "PAPERS FAULT RIGHT ๐Ÿ˜  "

magic river
#

The whole point is to take enough RAM to be bandwidth limited, I think

#

So an ASIC gets you next to no speed up

ashen cliff
#

HBM2. kekwhyper

topaz mortar
#

Just let the girl dye instead PERIOD

worn ember
#

People are weird

potent fossil
#

I'm quite sure that's a meme

untold meadow
potent fossil
#

Yup

#

I mean the cuts in between the clips which indicate each clip was filmed multiple times are a pretty fair giveaway that it's a meme without even needing snopes to "fact check" it for me

golden gust
#

Yea, that's documented satire

#

But

worn ember
potent fossil
#

dear god

worn ember
#

microchips arent even magnetic OMEGALUL

waxen panther
#

bruh

worn ember
#

at least not enough for a magnet to hang to your arm

untold meadow
#

that video is from one of those reality tv legal shows

potent fossil
#

Yup all of those are civil arbitration

#

Judge Judy/Rinder/WhoeverSheIs

vestal jasper
#

per player chat component rendering is big pog

worn ember
#

Josh is big pog

vestal jasper
#

no u

worn ember
#

true

untold meadow
#

it's very big pog

quasi valley
#

you know what's also pog

#

make sure "bu ma legaceeee" people don't miss that kappa

timber sentinel
#

oh no.

worn ember
#

they'll just reimplement text components in 1.8 kek

mossy vessel
#

Nothing of value is lost

vestal jasper
#

good riddance

waxen panther
#

I want slicedlime to adopt me

twin lagoon
#

i want mori to adopt me

mental meadow
#

Understandable

mental meadow
#

This is the first message i read in general today and i approve

waxen panther
#

I want to marry haachama

golden gust
#

tries to find somebody who wouldn't

mental meadow
#

@waxen panther @twin lagoon

golden gust
#

I mean for mori, not seen haachama

waxen panther
#

Is discord censoring my gif

#

WTF!

golden gust
#

Gura :3

mental meadow
#

@golden gust

twin lagoon
#

fucking weebs

waxen panther
#

Gura too small

golden gust
#

ofc broc would go for the tsundere

waxen panther
#

๐Ÿ’ž

#

you get it

twin lagoon
#

weeb

golden gust
#

I mean, I'd prefer non-hyrdodynamic peeps but she seems adorabubble

mental meadow
#

Cat gets it as a tsundere himself

ashen cliff
twin lagoon
#

BRO!

ashen cliff
#

Good bro.

mental meadow
#

who tf started it

twin lagoon
#

@meager tusk Bro!

ashen cliff
#

No snitching bro!

mental meadow
#

Michael: starts talking about vtubers
Also Michael: fucking weebs

twin lagoon
#

weebs

#

@quasi valley i am being ATTACKED for no reason and need emotional support from a fellow weeb hater

ashen cliff
#

Bro. Sounds like a personal problem.

#

We should nuke the whole country.

#

Again.

golden gust
#

Memorably, one viewer declared that "Gura has a heart of gold and a head of bone"

icy bramble
#

where do people find plugin dev gigs now