#general
3141 messages Β· Page 1101 of 4
oh
also you will have to execute the operators, right?
sorry i suck at english lol
is what I have rn
but its no worky
its just one queue, not two, right?
and I only have one loop?
Just one Queue yeah. I mean, you load the String into one Queue. But after that I think you can do whatever you want. I tried loading the String into a Queue and then iterated the Queue and filled two different Queues, one for operators and one for numbers, but that didn't work out
The only requirement is to use a Queue, and it's implied that you only use the value of the Queue to get the final number -- no magic numbers
I also tried using a Deque and reading ints until I hit an operator, doing whatever the operator was, and then continuing to read but I fucked up again
It's the nested operators that are confusing me
Reading it back to front is the wrong idea I believe, though
Should be read FIFO
I agree, it's a really dumb question
But at least I'm not just stupid
I'ma just have him email his prof
this works
import java.util.ArrayDeque;
import java.util.Arrays;
import java.util.Queue;
public class Main {
public static void main(String[] args) {
String problem = "* + * + 16 4 + * + 16 4 + 3 1 1 * + 16 4 + 3 1 + 3 * + 16 4 + 3 1 ";
Queue<String> queue = new ArrayDeque<>(Arrays.asList(problem.split("\\s+")));
System.out.println(calculate(queue));
}
private static int calculate(Queue<String> queue) {
String data = queue.remove();
try {
return Integer.parseInt(data);
} catch (NumberFormatException e) {
char command = data.charAt(0);
int a = calculate(queue);
int b = calculate(queue);
if (command == '*') {
return a * b;
} else if (command == '+') {
return a + b;
} else {
throw new IllegalArgumentException();
}
}
}
}```
Is this reverse polish notation?
RPN is super simple to solve
* + * + 16 4 + * + 16 4 + 3 1 1 * + 16 4 + 3 1 + 3 * + 16 4 + 3 1
first step: 1 3 + -> 1 + 3
your hint with no spaces threw me off, lmao
Oh this would be just polish notation
yeah
Prefix notation instead of postfix
polish or prefix notation
I thought the spaces were just to fuck the students up. I guess I am just stupid
What purpose do the spaces serve?
Nothing?
Mini just said they're important
Other than separation of tokens
I think they are just hints
But idk maybe not
Yeah could parse that whole thing without allocating any objects @vernal moth just sayin
But yeah the deque makes it much more natural to read lol
I get a different result, lmao
@potent fossil if you look at mini's code he's collapsing numners
That's what he meant when he said he was confused about the whitespace
His code turns 1 3 into 13
Oh
But since it's not infix notation the spaces between the numbers does matter
Ah yeah, okay. My bad
If I wasn't on my phone I'd write somethin real quick for fun but it's 3am and I'm pretending to try to fall asleep right now
maybe I do need recursion
Oh lord
but i wanted to solve this without recursion
probably better to read it backwards though
My favorite is to use the shunting yard algorithm to convert infix notation with parentheses into postfix notation
Yes, postfix can be solved without any grouping or allocation needed
oh right shit
Just read the string from right to left, but parse the numbers normally
Actually you could parse the numbers right to left as well 1 character at a time
Well I have no other explanation for why I couldn't figure that shit out other than I'm really stupid
So you'd never backtrack
So thanks y'all π
So never allocate and never backtrack
49200 was right?
no 141100
kek
Oh you have to have an array for this and can't do that without allocating in Java, damn nevermind
At least it would just be 1 allocation
What'd you get w/o recursion?
lemme optimize
Write it in bytecode for maximum optimization
import java.util.ArrayDeque;
import java.util.Deque;
class Scratch {
public static void main(String[] args) {
new Scratch().doShit("* + * + 16 4 + * + 16 4 + 3 1 1 * + 16 4 + 3 1 + 3 * + 16 4 + 3 1");
}
public void doShit(String input) {
Deque<Integer> numbers = new ArrayDeque<>();
String[] strings = input.split("\\s+");
for (int i = strings.length - 1; i >= 0; i--) {
String s = strings[i];
numbers.add(switch (s) {
case "+" -> numbers.removeLast() + numbers.removeLast();
case "*" -> numbers.removeLast() * numbers.removeLast();
default -> Integer.valueOf(s);
});
}
System.out.println(numbers.remove());
System.out.println(numbers.size());
}
}
141100
0
deque implements queue so don't @ me
how can I use /timings?
ideally you would also get rid of the split and read by chars
lemme try
this needs streams
import java.util.ArrayDeque;
import java.util.Deque;
class Scratch {
public static void main(String[] args) {
new Scratch().doShit("* + * + 16 4 + * + 16 4 + 3 1 1 * + 16 4 + 3 1 + 3 * + 16 4 + 3 1");
}
public void doShit(String input) {
Deque<Integer> numbers = new ArrayDeque<>();
for (int i = input.length() - 1; i >= 0; i--) {
char c = input.charAt(i);
if (c == ' ') continue;
if (i > 1) {
char c2 = input.charAt(i - 1);
if (c2 != ' ') {
c += (c2 - '0') * 10;
i--;
}
}
numbers.add(switch (c) {
case '+' -> numbers.removeLast() + numbers.removeLast();
case '*' -> numbers.removeLast() * numbers.removeLast();
default -> c - '0';
});
}
System.out.println(numbers.remove());
System.out.println(numbers.size());
}
}
couldn't figure out streams, but there, O(n)
Nice. One slight problem though, the input String is meant to be loaded into a Queue. But I think I can figure it out. Thanks, I'm an idiot
whats the point? I still use a queue here
loading it into a queue is just wasting memory, smh
Idk, it's what it wants lol
It's dumb af
I'm gonna go to bed tho
thanks fellas
what the hell was that
Yes
Does anyone know if is possible to disable worldguard storing anything in profile.sqlite i mean why even that is needed?
- Why do you want to disable it?
- Did you ask in the EngineHub server?
I want to disable it because im trying to stop anything i dont use.
That's not how anything works but sure
Yes i know but specifically i guess worldguard stores user zones
hm actually it just stores uuid and user name
lol
I'd recommend finding out what your problems are before you try and fix them
yeah, ig π
via is buggy
whats the permission node for timings?
As it should be.
if there is one, luckperms verbose will tell you ;)
it doesent though :(
and it doesend show the one for tps either
what are you doing
Kek
Twitter is dum
They just promoted a tweet to me, that container a vid, that had a pre roll ad
Oh I see, adidas took a vice tweet, promoted it and but their ad infront of the vid
Basically highjacking vice tweet as a vehicle for their ad
Would this work with a trump tweet? π π π
Imagine a trump tweet with a vid, where somebody would make it into a promoted tweets by putting a funny vid ad infront if the actual vid
Can you promote someone elseβs tweet w/o their OK?
No clue how the promoting tweets thing works
The person has to give ok
But I think there was case of people changing their twit after company promote them lol
you can't edit tweets
Oh so it was just a meme then
you could change your twitter handle I guess
Let me see if I can find the origin
@quasi valley π₯Ί
hello coumm
hello kneny
Oh, ffs. So I've just written a script to periodically check my network connectivity, because it's becoming more and more spotty recently and need more data to report it.
So I've decided to add a feature, that if it'll fail, I'll get a Discord notification. But I won't be able to run the webhook if I don't have internet access, so I just wasted my time...
heh
just run a darkfiber backup to your computer
reminds me of the status page that was hosted on the same server as the api its supposed to report status on
oh so you mean my status page?
I guess what I could do is add all error logs to separate file. And always at the end of my script check if that file exists, then send first / last 2000 chars from it and delete it, if webhook was sent successfully.
are you using a database?
or text files (ewww)
why would you use a database for a simple script like that
just write it into a csv
aka text file database format
lol, only recently did I figure out that csv stood for comma-separated values. I'd known the phrase, and the file format. but for some reason, it took me a long time to connect those π
I just log statuses, split the output into stdout, cron.log and sterr. Then I capture stdout into a variable, so that I can send a webhook with it, while stderr gets propagated out to reach me, if I run it manually.
I do like csv, it's one of my favorite file formats
Hiiiiiiiiiiiiiiii
So my cron script is like:
WEBHOOK_URL='My Discord Webhook URL'
payload_base='
{
"username": "NETWORK ERROR"
}
'
output="$(./check_network.sh | tee -a cron.log >(cat >&2))" || {
payload="$(<<<"${payload_base}" jq --compact-output --arg output "${output}" '.content=$output')"
curl "${WEBHOOK_URL}" -H 'Content-Type: application/json' --data "${payload}"
}
And my script logs like:
log "Command ${command[*]@Q} returned ${result} in ${delta} seconds"
I'll merge those 2 scripts, so that they won't be separate :)
I don't need them to be easily machine-parseable, just need to be able to grep everything I need.
@twin lagoon π₯Ί
π₯Ί
Gn
@olive marlin canβt you just hook it up to a spare cellar network?
But that'd defeat the purpose of this script, as then it'd test cellular network. I'll just have it attempt to send that data when it gets back online.
[TW: Old MC versions] Talking with someone about a problem they're having on 1.12 in which opening a chest full of player heads locks their server down because the main thread is busy pulling skin data from the Mojang servers.
If enough player's info isn't in the user cache (I see a paper patch for using user cache for this), could this still happen on latest paper?
i have citizens, how can i create a quest master (with all the quests, not only one) with Quests (spigot plugin)
ask in the plugin support for one or both @elfin pumice
Hey the reply feature is here now nice
yes
What is Minecraft's default language? Is it English (US)? I have tried something and now I want to reset it to default ..
Pretty sure it is, ye
Thanks.
yes
it will however be less laggy ig
@pastel pivot yes, en_us
i dont believe we have any kind of patch to async (i.e. fetch off thread, apply as results come in) fetch skins
I didn't see one, but didn't go diving too deep into how the fetching steps actually happen. Thanks proxi! If I get super bored in the coming months I might end up trying to patch that (but dont' wait on me doing it if someone else wants to).
I'm actually kinda intrigued myself now. Might have to give that a shot

this you?
spam bots
is this a bad sugarcane farm design?
@mossy vessel 
reeeeeee
i dont like doing the flying machines bc the chunks get unloaded
and the carts get stuck
A hero to us all
π
Now I can secretly ping you.
How are the sugarcane gonna be harvested? I don't see any pistons or anything?

oh yeah it's pistons and observers
with teh minecarts picking it up and funneling it through hoppers
the ole piston+observer bag
I think that's pretty optimal, ignoring 0-tick designs
kk i've noticed most of the hermits use flying machines
would be way cheaper
i just don't understand how they span chunks with it
i always forget to turn it off and come back and the carts are frozen underneath
Only advantage I can think of would be that you don't waste blocks that could be sugarcane on redstone, but other than that don't know if it produces more.
You're kinda at the mercy of random tick growth anyway
yah
i just think this is 1000x more expensive to do it this way
its fine thoo
thanks for your thoughts!
ill keep with it
Sure no problem
anyone else playing yakuza like a dragon, I want to rant about it



πͺ

Why did you post a guillotine


pls no decapitate me

Mixin for Paper when
people have done that lol
but when
no public Mixin support = bad
but the real question is configurate 4 when
we have no plans to support it officially
Giving plugins full byte code access to the server seems like a massive PITA
Ppl already do horrible things now
reflection is worse
But more controlled
u can select classes for a Minecraft versions on runtime with subprojects
mixins aren't even really a viable/usable thing until we have some form of stable mappings
Reflection doesn't make compilation error
who needs mixins when you can use instrumentation 
that's why it's bad
and even then, we have 0 interest providing support for them, so it's likely that we'll add them, tbqh
as if mixins do
if Mixin loader could choose which classes to load
on runtime
depending on version
anyway even if i impl Mixin rn, Mixin classes won't load if version was not compatible becuz of package name
I have doubts that we're going to stick with the version relocations in the future
wanna know why
the primary reason for having them is already dead and all they do is complicate crap like debugging
just when you said it, in FAWE support https://haste.athion.net/elabegefim.makefile
oh
btw i think api version should not be introduced cuz without apiversion any plugin could support every version of spigot
you mean spigots api-version thing?
yes
FAWE could potentially support all versions in 1 jar if there was no api-version thing
Yea, that's just because of the dumb legacy version compat BS, no idea what the plan is there, but π€·ββοΈ
why can't they?
we already can do that
set the API version to 1.13, gets you past the legacy BS
ew FAWE
excuse me, i feel personally attacked
legacy support is not full, and cause unexpected behaviors
We could also support older versions, but its a pita that no one wants to maintain
but if its an old version you dont need to maintain it, its quite amazing really
aurora y u not working
on what
:C
awawa
that is hot
me: trying to make version validation
worldguard: WorldGuard version 7.0.3;5407315
oh please DED, let me help you cry
Here is a real version number from a real plugin
1.6.9.5-U0.2.1-RC-1.6.2-RC-2.5-RC-9
bruh
semver;commit seems lit
mavens ComparableVersion doesnt know how to deal with it tho
fuuid is the first part. Starting at the first RC is all one fork's doing. They forked fuuid at 0.2.1 and...yeah
Why would you rely on the version String anyway
ded just likes to overengineer
yes
i want my addons to have some form of "version control"
like min required version to run
there nmf did something
last week :p
where are the yaml comments π
sponge 1.16 wen
poor z
poor taco man

upside down emotes β

π‘οΈ

you know bstats is missing version vs playercount graph
or chart or whatever you call it
time to plug https://kennytv.eu/secretgraph/ again
one day I will make it so you can select a timeframe
one dayβ’οΈ
where is data coming from
WAT that's illegal
spoogot
is it just me or the Paper Line look very excited 
is that from via
Secretly kenny is faking the stats
fakeee
yeah can you really trust upsidedown people
yes 1.8 is clearly the most popular version 
im probably doing something wrong if my server discord has 1k members but i only avg like 20 players online hey
you know someone used that same argument just now
wut
wow paper purposely not tracking 1.8 /s
Idk, I use PaperSpigot
Hypixel runs 1.8
this one
will you run the server on 1.8?
yes people don't play latest versions that much
shows bstats graph
hypixel still runs 1.8
this really triggers me
why
cuz java 8 suk

he means it's ancient
yes
i cant use j9 features cuz then people be reeeing and crying for j8 support
there are also maintained 1.8 forks, so I wouldn't really use that as an argument... π
1.8 runs on 1.8. coincidence? I think not
just spam click 
smh
i don't like mc 1.16 cause sneaking is bad and performance bad even with r9 3900x xd prob. cause I have java 8
eh, no
Probably not
the height of sneak can be changed using a mod
Can install Java 11 or higher though and tell Minecraft to use that if you want to see the difference
yup yup
Doesn't Minecraft use its own jre anyway per default?
i only find java 8 for pc
adopt your own jdk
what's the different between java and adoptopenjdk
AdoptOpenJDK supplies Java builds, they're different things
You are running SE
whuttt
basically Oracle changed their license, afaik you need an account and stuff to download a new jdk now
hence everyone using (Adopt)OpenJDK now
that mean it's better if I remove java 8 and install adoptopenjdk 15 or like that, what is better after the change
well for one you are no longer outdated and will continue receive updates
Java 15 comes with a lot more features
And it probably is a bit faster as well
faster with what
You most likely don't want to use 15 in regards of mc
you can't use oracles java 8 in a production environment without paying for a license
Just, many are breaking that licensing agreement without caring, ofc, oracle could show up demanding big bucks from them
(or, any oracle java these days)
I think I get updates until mid 2021 a week ago I recieve 271
oracle in 2020 
Only security updates, no new features or bugfixes tho
Basically, if you're using oracle java, you're supposed to be paying for it
those are only "free" to use for personal/development uses
can i has death
but features doesnt matter cause I don't code or like that. I think I only use it for MC
Other programs you use might want to use those features tho
wee reply chain
hi
I will kick people if you wanna be arses about it.

why do you hate replies π
what a boomer, doesnt like change
I have bad eyes, the stupid highlighting makes it harder to read
wait no
reply sucks it's long
kick brocc
yeah but what I feel more.
get glasses
I do have glasses, I just mixture of forget to put them on and they don't help too well
get better glasses that stick to your head
just hotglue them to your face
use lightmode
how do you forget your glasses tho
easy
if i dont put them on in the morning i dont see shit
my trip to opticians generally flips between "you need glasses" and, "you don't need glasses"
Do you have diabetes?
no
get contacts then
Just, no
tbh i hate contacts
I have tremors sometimes, that, just, fuck that
Because I get that as well, and it's usually because of diabetes
you know whats the worst? Losing your glasses and then trying to find them with your blind ass
I switched to contacts a couple of years ago. I don't regret it tbh
i couldnt get used to them
I think part of it's just that my eyes are meh and I'm using to working on electronics and crap so often so you kinda just get used to it to a degree
directly from java 8 to adoptjdk 15?
yeah why not
Like, even if shits blury you can generally kinda make out what it's tryna say
I take it you'd appreciate if I did the good ol' quote without ping on you, Cat?
Yes, because then it's not a dumb ass background color which conflicts
will do 
I opted for dark mode because it's easier to read for me
Should I pay attention to anything
The fact that they'd opt to combine that with a lightish highlight is moronic
Maybe they should add a option for better visibility
and the fact that you can't configure any of this shite demands a brick their their HQs window
ahh sympathy for cat
uwu
@worn crest wanna change height of sneak in 1.16 using a mod?
nah I use 1.8.9 further
oh ok
dumcord at its finest
pings and readability
vanilla generator sux wow, I'm doing just fine with a 15 second sleep with my generator only instead of 10 minute sleep with amplified vanilla generation
dum irc user

bah adopeopenjdk logo is disgusting, how can I change it
best logo
change the logo of adoptjdk's java.exe file using external programs
i think you can use this one
and isn't blinding
wow rude
kicked
if only discord... actually had theme support
too bad discord is rubbish
if only discord would support anything fun
wym? its css kappa
yeah but there's no distribution mechanism in the vanilla client, or on mobile
Facecord
let's accept zucc our lord and saviour
#nighttime #daytime #welding #comedy #blacksmith
mmmm data
what is that thing kashike just posted
Hmm I use Griefprev on my survival, I like it, is easy and nice, but I miss a lot of gameplay dynamics. Would you use Towny instead, it has all I want but looks really overloaded. I just don'T know 
never seen one on discord
also i probably wouldnt recommend towny if you are only getting it for protections
Is this normal that intellij uses 8gb if a project is big?
theres tonnes of region protection plugins out there you can use, can't name them offhand because i dont use them
Yeah protection but I also want some way people could do war or have to use economy
maybe guilds or lands i think they're called
so they are actually builing up some alliance
towny alternatives without some of the bloat iirc
me too and I slowly run out of time, I have to get the server public π
still not happy with it
i get a lot of requests to support Lands but idk if its any good and its a premium plugin
Thonk Yeah but first release was may 2020, I do not use new plugins until the devs run freq. updates for at least some years
Already had like 3 premium things, where devs just lost interest after a few months and I do not want that struggle again
oh its premium
rip
well guilds is also i think
i completely forgot
yeah but i dont think theres really any free towny alternatives
unless someone knows something i dont
there really aren't lol
Maybe I just test towny for the begining
Last update 2018
For a server I used to manage, where we managed all the PvP stuff manually we used to flip between factions and towny
towny was nicer as it was a biiit better in terms of admin commands, etc, but, factions was generally more maintained, which back in my days of not being familiar with java, is, ya know
Well so it will be Factions or Towny, gonna test it. Thx for all recommendations
towny was nicer as it was a biiit better in terms of admin commands, etc, but, factions was generally more maintained, which back in my days of not being familiar with java, is, ya know
when was that
Canadian only feature 
Discord has some of the weirdest beta testing requirement
._.
To use Discord Stickers, the requirement is " be Canadian" lol
rly
what bothers me is you cant get a link to the actual sticker
4-5 years ago?
of course i want to know this so i can copy paste it lol
what happens if you reply to a sticker
the fun with factions was the bastardized development environment
e.g. the over-engineered massivecore, massives cancerous attitude towards developers, etc
welp time to throw myself off a bridge
i procrastinated and we only have 2 days left
this is worth 80% of the class grade
ouch
@void void IntelliJ will eat up memory for many reasons, I recommend 32GB of system memory or higher for a work station
with 2 days left that really hurts
yeah
i have 10 papers lined up already but each paper is ~10 pages long
and they all llook like this
are you doing chemistry?
yes
well not chemistry per se
i'm doing molecular engineering
using chemistry to engineer custom compounds that do stuff
also lol ofunny thanks
Time to get shit done instead of on Discord 
oh well i'm doing chemistry so hello there hehe
aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
my subject rn is on the usage of photon upconversion to boost solar cell efficiency
so u take 2 photons of low frequency and then smash them into 1 which doubles the frequency and now that photon is able to generate electricity
is this stuff interesting to you at all or is it just like why'd I pick this field 
is that related to non-linear optics
not really
is there a name for that effect
oh. sounds interesting nevertheless
yea it is a v interesting subject
basically 2 low energy photons hit a molecule at once which promotes electrons into a high and unstable orbital
then that electron jumps back down to the ground state and emits a photon of higher frequency than the 2 photons that hit it
π
oh yeah wiki says that it should be distinguished from second-harmonic generation that was probably the thing I was thinking of
^ exactly
second harmonic generation is non-linear optics
this is more like using a molecule as an intermediate
I see that is interesting. like the practical applications of it for solar cells

it's a really cool thing

also rip i confused triplet-triplet annihilation with two-photon absorption in my earlier explanation
yea thank
Got the girlfriend into playing sims on Xbox with me π
I can't play sims with other ppl
They would see what kind of twisted mind I am π€£
I once had a save game where my plot was a grave yard π
that makes me scared of existence of some sort of intelligent creator because what if it's just evil
Have you looked at the world?
If there is a intelligent creator, of course he is evil, lmao
well world is interesting. people live in misery yet create more misery for each other
Todays news article "Quantum computer: "If we wait too long, it will be too late"
First thought, finally 300+ players with 20 tps on a single server
yeah with $5000 a week overhead.
easy
ayy pop numbers any reason why you chose 50 permits for the semaphore or is it just an arbitrary number?
@twin lagoon why is that tweet chain so fucking long?
And why did I read that?
DMs exist, smh, get real

no simping
time to watch the new Mandalorian
it's good!
Can someone gift me some disney acc so I can watch it as well? kthx
my cell plan gave me a year of disney but I'm too lazy to activate it
@potent fossil you have any clue why sonarr doesnt want to download episodes? it finds them and says "downloading" but then it just nopes out and doesnt actually download them
Usually because it can't find good enough quality for your settings
Who tf invented ".litematic" instead of using .schem
did it get added to transmission at least?
whomsn't?
transmission is the downloader o.O
idk, i just check activity
oh kek sonarr's activity lies sometimes
ip:9091 and enter the credentials and see what's in there
where can i find the login?
ded is far too dumb for this
shut up boomer
you set it while configuring mediabox in step 4
it's in config/transmission/env with PASS=
username is transmission
ah cool
i usually check there to see what is/isn't downloading, i don't trust sonarr's GUI
it only works sometimes
yeah it doesnt seem to update properly
riddle me this: does a paperMC marketplace exist?
You mean plugin repository?
who me
Yes.
Buy minecraft accounts?
sounds like a scam
true
Nope. And doubt paper would ever do that.
thank you foir the info have a great day you two
also buying accounts is against MC ToS
Yea, literally all of that is against mojangs ToS
lol
Given that we speak to mojang often...
i know about your pyramid scheme cat
hello, i would like to place an order for die
I meant a π²
why are you bullying cat
ducker
by default it pings but you can turn pinging off
I just noticed that
Because it does the exact same BS highlight as pinging which I really cannot be assed dealing with reading all the time as it's harder because 10/10 eyes as already explained
Just use irc
Runs
Someone reply to me with pings on so I can see what kind of bullshit it is
ewww
disgusting
Do me next
hi
Seems fine to me
you can reply to yourself iirc

but I dont see a highlight there
I don't like that the ping turns itself back on
pinging self is off by default i believe machine
click reply and in the top right of the reply box is an on/off btn
test
highlight works
oh I see. but it doesn't remember your choice you say?
guess not
that is indeed annoying
So when the ping is off it doesn't highlight the message?
yeah it doesnt ping the person
no
it just adds message context
Like right here I am replying to you but you won't be pinged for it
well discord should really add turning off the ability to get pinged in certain channels
so no matter how hard someone tried, they couldnt ping you
true
or in servers
but being that they say it's "absolutely impossible" to hide "blocked message" I doubt they'll do it lmao
can't even display: none that for us
I literally have my name as an irc notifications thingy so I don't miss stuff I don't want people to not ping me lol
did they really say its impossible to hide that?
yes
don't really see how its "impossible"
they gave some bullshit reason about how you can't ACK a message as seen if you don't show the blocked message popup
and I was like ?????
yeah, thats stupid
need a discord competitor to rise up
cause to my knowledge, there really isnt one
The reply function looks funny for blocked people tho
No
what?
literally just don't render the message lmao
have the client auto respond with "yeah ok, read it"
impossible
whats the ssh command (obunto) to copy a map into an zip
yeah I know, it was a really stupid reason and felt like they were using technical language to more or less tell end users to fuck off
A zip specifically?
zip -r filename.zip folder/
where <filename> is the name of the zip file you want to make and folder/ is the folder name
thanks
and it's ubuntu
π
not obonto
why the fuck does towny post giant ass patch notes when you update it
who thought this was a good idea
it's not even specific important changes that they show, it's literally every single fucking change
the man likes his changelogs
Hey i've seen some plugin that allows exchanging keys with ranks
anyone knows what plugin is? 
hey it's all or nothing
jk
that does seem a bit excessive but you know, props for being thorough at least i guess
For context, this is the library that Geyser uses for Java protocol stuff. So it's really awesome to see Adventure being used here!
https://www.youtube.com/watch?v=A_KW0D-n5wM the internet humor is bac
ways to trick your friends and prank them to say funny things and bad words
https://twitch.tv/cark_irl
https://twitter.com/cark_irl
#cark #funny
uwu
Replies look so much better than quotes
So nice
Now if they can make it so you cant be specifically pinged by users discord would be perfect
ooo this is cool
apples password management is pretty nice in general
if only it could be used in other browsers
there were rumours of them allowing it on other browsers but it didn't get announced this year
i can pray
big sur modals are a lot nicer
si
oooh
is epic, wish it were dark though
@twin lagoon π₯Ί
Hia camm :D
hey camm :0
@untold copper what are you trying to do
Get the server info
Probably one of those embeds that show the member count, creation date, etc
Yo paper people, need a tip... there's a patched TNT dupe that is fixed, yet I got two people screaming like crazy they want it enabled... should I?
how long leaf has been muted for, and how long until he is unmuted π₯Ί
π¦
Sad times
& yeah, Aeyesi, it's your call?
Depends on yours server type and if you want people to have an advantage through exploits Β―_(γ)_/Β―

does ur bot have to do music
So I can sit in a voice channel and listen to taylor swift all does π₯Ί
Fuck no brocc
thank god
Tried that originally, it's terrible to do lmao
So many cases you have to account for
very heavy too
Groovy is more than sufficient lol
let da nerds do it

i wish i had applied for verification for my bots earlier lol
they dont do the badge anymore

they're all extremely fine
Ruthm
bitrate bad
now i have epic expensive headphones im legally allowed to complain about music quality
384kbps we ned more boostetd
Fek
ohhhh okaaayyyyy
Oh kk
guess you're now writing a music module :^)
ez
LoL
Actually, I think someone on my server donated for Groovy
I wonder if that gives better streaming
not sure how it works tbh
i haven't touched audio since we did the one for r/jailbreak
well I just thought the bot would stream at whatever the servers is set to
I wonder how much the groovy peeps get per year actually https://i.imgur.com/0Nbj08K.gif
lots 
BuT iT's DiscoRd StylE
the features section is SO MUCH smaller
camm

good morning
omg its michael


brocccccc
do you want to buy me a house in norway
Don't tell people where you're going to live brocc π₯Ί
that's dangerous for someone as british and handsome as you
someone might explore all of norway π³
yes i will be the only british soul in all of norway
damn saying the s-word has got my hades itch itching
cant tho
gotta finish my coursework
that's not all you gotta finish
u

π³

reeeeee
I think I just noticed #food-science be renamed to #nutrition-science 
tryna get member count lol
14.101
just paste https://discord.gg/papermc somewhere
also, I hate that different parts of the world use . and others , to separate decimal places vs. just visual separation
that's even worse than any of the other different metrics, since at least you know which is which with meters vs. inferior other units for example
the best part is @quasi valley
where I live we use ,
but to confuse people I use .
lmao hahaha
Germany uses . for decimals
no wait
we use , for decimals, . for separation, can't even remember our own π
We use , but since almost every programming language uses . I usually use that, and get confused when programs and online forms don't work.
We should use _ as visual separation, like Python does :p
million_float = 1_000_000.0
Why python? You can do this in Java aswell
Didn't know that, I guess I never needed to use that in Java.
Like Python does
instant no
Brocc you meanie :(
sorry 
python is epic
no
no
yes
? just wrote a rendering engine on paper with binary
@minor badge π
Minecraft datapacks, best language.
Datapacks are useful
Lets hope my mum lets me get this keyboard xD
https://www.amazon.in/HyperX-HX-KB5ME2-US-Membrane-Gaming-Keyboard/dp/B07HRNKTCM/ref=as_li_ss_tl?crid=2P4P5R9Z3FAFT&dchild=1&keywords=gaming+keyboards&qid=1592112959&refinements=p_n_is_cod_eligible:4931671031,p_72:1318476031,p_36:1318504031&rnid=1318502031&s=computers&sprefix=Gaming+keyb,aps,289&sr=1-10&linkCode=sl1&tag=thanalysisind-21&linkId=3d4656ec626cdb654b9b0f238268a8c5&language=en_IN

I hope you consulted r/mk first
;)
No budget for mechanical π¦
membrane 
membrane 
Mechanical doesn't need to be expensive
you save on the doctors cost lol
it doesn't no
send me a mechanical under inr 3k
aka $40.45
oh right there's one really cheap cherry brand in india sec
srsly guys i do want a mechanical
Monitor and manage your PC in real-time with Pulseway! Create your free account today at https://www.pulseway.com/?rfid=linustech
Sign up for Private Internet Access VPN at https://www.privateinternetaccess.com/pages/linus-tech-tips/linus1
It may not be a Model M, and it may not be designed for gaming, but the TVS Bharat Gold keyboard is one o...
cheapest mech keyboard that amazon has in germany is 40β¬ lol
granted it looks like shit
no num pad
yes, it's awesome!
very cheap mechanical is better than any membrane though 
fuck numpads
it iS?
no numpad is handy kek
also
















