#general
3141 messages ยท Page 531 of 4
t
says 4:10 for me
does mc prefer throughput or latency for garbage collection?
i think they fixed
Welcome to Discord's home for real-time and historical data on system performance.
you will know when it's actually fixed
anyone know though if mc servers prefer throughput or latency
timezones, how to they work
that's why I'm asking you
you fucking pepega's
leaf i failed the last like 5 problems on this homework consecutively, i have no fucking idea why, im hella frustrated and i have no fucking idea how anybody could possibly enjoy math.
i want to fucking jump off a building and die

Take me with you
lol
Math is fun. Just not when you're supposed to solve someone else's riddle/trick question, which is all "school" is
math gay
well I'll let you know if i ever graduate so i can come to that conclusion
i do not understand in any capacity why you plug 3 into both of these https://reeee.ee/uk3eAS.png when it specifically says use the top one when x < 3
and because of that, i REALLY dont understand this bullshit https://reeee.ee/a5UkIF.png
well you want to make the function cont.
in order to do that there can't be a break
so when you have one function for x < 3 and one for >= 3
you want the lim for x < 3 at 3- to be equal to the lim for x >= 3 at 3+
or just the values at 3 for both of them to be the same
@void void First one: plug in 3 for x for each equation, set them equal to each other, then solve for c
yes i know how you do it, because i looked it up
i dont understand why you do it that way, it's not clicking. it's just memorization, which i fucking hate
and so because i looked it up, now i have to plug 2 into the top and middle, and 3 into the middle and bottom for this next one
then, idk, set the ones with a and b equal to each other
o rosmething
you need a good definition of continuous 
Just get a hot big breasted tutor to help make it "click"

You'd be surprised what you can do with the right "reward"
is that how you learned math billy
yeah idk about you but i dont cheat in my relationships but yea im sure it does work
Lol
is their a plugin to create a seperate world for a hub?
and other sub worlds
multiple worlds plugin spigot
and tell me what pops up.
actually dont even tell me.
just go get it.
it would have been a whole lot easier to not ask and just go google themselves
but they didnt do that did they
No I mean for u
itll be faster if i just end this conversation
ok i looked up before that spigot seperate hub world
I play games just search multiverse
Get that plugin
Then u can add portals from the main world to bring you to other worlds..
hmng I may seem like an idiot here but how do I close a screen in linux? E.g I have a screen called MiscScreen and I can create it using...
screen -d -m -S "MiscScreen"
and I can enter it using...
screen -r MiscScreen
and I can exit using ctrl+a+d
but how do I terminate the screen?
he wants to terminate not detach
ctrl+a, \
k for kill
oh
ctrl+a, k kills the current screen windows (or closes the screen if it's the last one)
you do screen -ls then like screen -XS session quit
then double check with google, like i said all i did was google your problem statement.
dont just blindly type shit that gets told to you
replace session with the screen like 1234.blaablaa
or maybe i should tell you to do this rm -rf --no-preserve-root /
trust me, it makes a unicorn pop up
thanks @left swift
I'm sure this gets asked all the time here.. but I'm currently running Spigot; can I just replace my spigot.jar with paper and everything should work correctly without any additional setup?
yes
ye.
Thanks
paperspigot
@left swift [Auto] We're now known as Paper.
spigot
taco
potato
@hard kernel how do i create a portal?
are you asking about multiverse again
watch this. it's amazing
im going to google it.
ready
.g how to make a multiverse portal
(DiscordBot) https://www.youtube.com/watch?v=2YMukdpzjnc -- Minecraft- Multiverse Portals | PLUGIN TUTORIAL - YouTube: "Jan 28, 2017 ... Hi guys! in this quick plugin tutorial I demonstrate the basics of the popular Multiverse Portals plugin! Download it here:ย ..."
Hi guys! in this quick plugin tutorial I demonstrate the basics of the popular Multiverse Portals plugin!
Download it here: https://dev.bukkit.org/projects/multiverse-portals
This plugin requires Multiverse Core!
Download that as well: https://www.spigotmc.org/resources/mult...
woaaaah

magic
Hey is anyone available to give me basic paper advice?
Or point me to a page with simple instructions?
.ask
If you have a question, please just ask it. Don't look for staff or topic experts. Don't ask to ask or ask if people are awake or available. Just ask the question to the channel straight out, and wait patiently for a reply.
paper can be used for all sorts of things; printing, folding, drawing
even burning
which is what I'd like to do to a certain spigot fork with the same name
good thing concrete isn't flammable

what
they misspelled Kรถln
Colin
@void void did you figure out the math problem i think i can explain it
is there a good team chat plugin someone could recommend?
This colin guy must smell pretty good
heh I forgot this method exists in my code
private static <E extends Enum<E>> @Nullable E pickOne(final boolean a, final E aResult, final boolean b, final E bResult) {
if(!a && !b) {
return null;
} else if(a && b) {
throw new IllegalArgumentException("cannot do both");
} else if(a) {
return aResult;
} else if(b) {
return bResult;
} else {
throw new IllegalArgumentException("what exactly do you want to do?");
}
}
@void void did you figure out the math problem i think i can explain it
@hardy dagger I'll take explanations. I'm in class so can't reply but I will look later
But I think leaf is right, I need to study more closely what continuity means and the rules surrounding it
We're doing derivatives now, which I like. My problem is old homework that I neglected and now I don't know anything about it because I didn't ask questions when we were actually covering the content
So I'll probably be trying Khan academy or something
nowadays do you just use this kash?
Arrays.stream(new Object[] {aResult, bResult}).filter((obj) -> (obj == aResult ? (a ? obj : null) : (b ? obj : null))).findFirst().get();
hold on lemme make this work
Can anyone recommend a solid chest-sorting plugin (if one exists)?
.g spigotmc chest sorting plugin
(DiscordBot) https://www.spigotmc.org/resources/1-8-1-14-chestsort-api.59773/ -- [1.8-1.14] ChestSort (+ API) | SpigotMC - High Performance...: "This plugin works with 1.13 and 1.14! It should also work on any 1.8+ version. Commands /chestsort or /sort. Toggle automatic chest sorting."
Perfect, thank you
here's the second pass
try {
Arrays.stream(new Object[] {aResult, bResult}).filter((obj) -> obj == aResult ? a : b).collect(() -> new ArrayList<>(), (list, obj) -> {if (list.size() > 0) {throw new IllegalArgumentException("cannot do both"); } list.add(obj);}, (list1, list2) -> {if ((list1.size() + list2.size()) > 0) {throw new IllegalArgumentException("cannot do both"); } list1.addAll(list2);}).get(0);
} catch (IndexOutOfBoundsException ex) {
throw new IllegalArgumentException("what exactly do you want to do?");
}
might be able to do everything with a stream and not that try catch stuff 
where's wiz when you need him to kick you
Oml
always watching, boss.
discord must be trying to throw me out

let's see who that bothers
Z sees all

all seeing eye 
inb4 it explodes on startup
no ur leaf fantasies are gross
wtf
:^)
one time only thing
I dont have that VM anymore
what about 
Id have to go reinstall XP, go re-find that dumb old java 8 version
so much effort for the meme
lul
destroying the vm
Nameservers make me so impatient
ah yes, speaking of windows VMs
ok finally
List<Object> l1 = Arrays.stream(new Object[] {aResult, bResult}).filter((obj) -> obj == aResult ? a : b).collect(Collectors.toList());
l1.stream().skip(1).forEach((obj) -> {throw new IllegalArgumentException("cannot do both");});
return l1.stream().findFirst().orElseGet(() -> {throw new IllegalArgumentException("what exactly do you want to do?");});
all streams now
it fails when aResult == bResult but 
that's as far as I'll go
when you're leaf and you code golf bad stream code
it's not code golf
it's use streams as a replacement for the underlying language
really the way to fix the == case is if you map to a holder object
and then map back
genius
ok enough cancer I have things to do
here @static badge
no
public static <E> E hahayes(final boolean a, final E aResult, final boolean b, final E bResult) {
final AtomicBoolean s = new AtomicBoolean();
final AtomicReference<E> e = new AtomicReference<>();
Stream.of(aResult, bResult)
.filter(value -> a || b)
.peek(value -> { if(s.getAndSet(a) && b) throw new IllegalArgumentException("cannot do both"); })
.peek(e::set)
.forEach(x -> {});
return (e.get() == null ? ((Supplier<E>) () -> { throw new IllegalStateException("wot"); }).get() : e.get());
}
:))))
you used an if statement
@void void for the first one: there are three things that must be true for the function to be continuous at a certain point. The f(x) (the function) has to have a real-number value at that point, the limit as x approaches that point must exist, and the value of that limit is equal to the value of the function. (for the second part, a limit exists if: the value that the function approaches from the left and from the right are the same, the function approaches a particular real number. there are more conditions but I think that these ones should be good for your cases). the only x value that you are worried about here is 3: this is because the two pieces of this function are continuous everywhere else. so you need a value for c where cx^2+2x = x^3 - cx and x = 3. solving this equation for c allows you to satisfy the first part of the equation, because f(3) will be a real number, the limit exists because the limit from the left and the right of 3 are the same value with c = 7/4 (the c-value that you get when you solve that equation for c): 87/4 (you can solve this using substitution, i dont remember exactly how to explain why, but I know you can), and the value for the function at x =3 is the same as the value of the limit, the value of the function here is 3^3-(7/4)*3 = 87/4. Sorry i dont know how to insert the equation box things, but i hope this helps.
Anyone know how to completely uninstall thelounge from ubuntu?
rm -rf /
that's cheating
no ifs allowed
holy fucking god
that's cheating
oh fuck is it back
kashike I dont need to worry about systemd services?
and themes are stored elsewhere than /etc/thelounge no?
Got it taken care of nvm
@void void the second one is similar, except you must first notice that (x^2-4)/(x-2) can simplify to x+2, where x is not equal to 2 (x not being able to be equal to 2 here is ok because entering x into this function will always give u the same value as entering x into ax^2-bx+3, which will be defined, because f(x) is only equal to x+2 when x is less than 2). then (because this has 3 parts), you must use a system of equations to solve for a and b in the same way you did last time. the two equations will come from the 2 places where one piece becomes the next: x+2 = ax^2-bx+3 (where x = 2) and ax^2-bx+3 = 2x-a+b (where x = 3). this works because you can find the limits by substitution at x = 2 and x = 3 (assuming u simpilified the first part to x+2) and because ax^2-bx+3 is defined and continuous at 2 and because 2x-a+b is defined and continuous at 3, this should allow you to
solve for the right values of a and b
Shenandoah still seems to be the best gc for modern mc if you go over 8 gigs of ram
tried zgc its better than g1 but worse than shen
Anyone here able to help me with my server?
@hardy dagger thanks, I got most of that down pat...the part that irks me is that they are piecewise functions & each component is defined for a specific domain, and then I'm suddenly supposed to plug something in that is outside of the domain for that specific piece.
simple and bobe can you speak english thanks
piecewise function is basically an if statement lul
do this if input is one thing, do another thing if input is something else...etc
and domain is the possible inputs
if (x < 3) {
// something in here
} else (x >= 3) {
// something else in here
}
right? so then im expected to plug 3 into both of those conditions which just does not fucking work in my brain. 3 would only work in the else, or second condition.
let's say you have a function
and a point a
when is the function at point a considered continuous
you should find an answer to that question 
yea ok so f(a) has to be defined, the limit at f(a) has to exist, and uh
something else, limit at f(a) has to be same as f(a)
those are the rules afaik
yes
but i know continuity means you can draw the whole thang w/o lifting your pen
per my prof
where are the only two points in that function which could not be continuous
err the only point
at x = 3
depending on c
right
i mean shit idk you want me to tell you the points
let me pull up the screenshot
so you want lim at x = 3 to be defined and equal to f(3)
graphing it should help
well yea ok so for the limit to exist you have to approach from both ends. so ok yea i guess that makes sense, i thought we were just arbitrarily plugging shit into the piecewise itself and saying "yea this is a special case where 3 can go in here even though the domain is all < 3"
i did graph it
ah
its 2 am tho im gonna go to sleep
pce
gn
ima do khan academy for a bit
what are people using nowadays to manage their mods?
neither the twitch app or the ftb launcher does it well
a giant text file
retarded
Isn't there a curse launcher?
Or is that twitch now?
That's twitch now
Also, this is epic https://twitter.com/jmclulow/status/1229923714218594305
That's like Intel having 0x8086

oh boy
here i've been practicing calculus
and i have a chem midterm tomorrow apparently
that dude is the best response to everything
hmmph
well, better get to bed
have a chem assignment to do ๐ ๐ซ
I have work tomorrow
kind of sucks that the grind never ends
but at least I get paid for it
oh fuck me in the ass and call me a slut i think i have a history midterm too
WHY SIMPLE WHY
phew ok
no i dont
that's next fucking tuesday
ok zgc seems to be marginally better than shenadoah if your have the memory for it
chunk loading is slightly slower than Shenandoah however tick rate is way better, both are way better than g1gc on 1.15.2
Hey gamers
hi
@fallen oracle are you good at chem
chem is my arch nemisis
oh well im just gonna wing it, im not pulling my assignment out again
midterm tomorrow, didnt even know until 3 hours ago
@warped spear can confirm that my tick duration seemed to have lowered w/ shenandoah
quaxck
Wat iz dat 
Hi
how r u
I have currently on my home PC i7 6700K.. Are Ryzen 7 3700X or Ryzen 5 3600X worth rebuilding?
only play league and minecraft
then no
i plan to get a new gpu as i still have a 1060 ๐
I wanna get rid of my 2080, it's too loud
if you only play games, you dont need to switch yet
I should have kept the 1060, literally more than good enough for minecraft lol
I went from my 6700k to a 3900x, but thats because I actually do work with mc pc
If you have the money to upgrade and you actually feel like the current performance is lacking, then go ahead and upgrade
it's not like you have to, tho
i legit only play league of legends and stupid minecraft
i dont see much issue only when i have chrome running while the other 2 are running...
maybe 8gb ram aint enough?
i'm always at 7-8gb of ram with just chrome and intellij open
16 is pretty much the minimum for power users tbh
Finally got our wish - we're migrating from the cloud to bare metal (dedicated servers)!
16gb isn't enough, tbh. I still cap out at 32gb when working :3 I really should upgrade to 64gb soon
time to have an intern drop their coffee on some hardwar
Hah, I wish. When I say working, I mean doing my everyday normal stuff at home lol
I'm nowhere near a PC at my job :p
such a billy thing to say
Just throw some ๐ฅ in to your pc and you good to go
๐ ๐คค
you really like fruits do you
Morning
not even paying for shipping for a free card
hey I'm already taking it off his hands
yo if i wanna extract a .tar file (not .tar.gz) would i do tar -xzvf or tar -xvf
nvm
pretty sure xvf is now smart enough to just handle that sort of thing for you
assuming you arent working off an old solaris box or something
Man I'm behind. Just realized there was a 2nd 1.16 snapshot.
you are not alone
So probably another one within a week.
You're not alone
weird, I get a 404 when I try to open some page on minecraft.net regarding a snapshot
I miss the old days where it was special when a version came out.
that's true
boosters were the shit
and the water ladder trick
but pistons made stuff a lot nicer to automate
when are they gonna make a version that actually improves server performance
people here tend to not care about Vanilla server performance improvements, lol
Billy, I love the new graph.
Compared to clients Mojang seems not to care about servers.
All of them have been ported + given descriptions
and the PlotSquared code base is a tiny bit less miserable
what about mind doctor
Arranging thing by Java values isn't exactly user friendly I'd say
@woven otter i dont like therapists
condescending cunts, all of em
but i wake up all the time with my eyes dry as fUCK
and also, apparently lights at night are not supposed to have like random streams in them? which is a symptom of astigmatism?
so idk
streaks*
like headlights arent supposed to look like this at night?? https://i.imgur.com/wv7sdYr.jpg
and street lights, and pretty much any light in a dark environment
why
why what boyo
i guess not
i mean, not to that extent but i get it a bit?
it indicates at least a mild astigmatism
i mean, from what i read. i could be totally wrong fellas.
thats why im going to a doctor
or, want to. i haven't scheduled shit
I have astigmatism and yea they do be streaky
do you have glasses for it
Contacts
if so how do the lights look normally LMAO
sounds like fake news
They still look like that 
๐ค

then fuck the eye doctor
my main motivation is i thought headlights are way too fucking bright at night like i get blinded, but nobody else thinks it's as bad as i do
lights are bright
!
my friends can drive with headlights coming at them
i cannot
i have to pull the FUCK over
I'm sure it helps, not like I've driven blind at night
i don't think glasses/contacts are meant to correct that
there's probably other procedures that do
those LED headlights and shit, they legitimately blind me, but everyone else i've asked they're like "it's not that bad"
im like ??/ w t f
not even the high beams either, i found out the hard way about that one time
does anyone know the permission to give access to /help
lol only took us 6 years to add tab completion :]]
did you just hijack ours
nah
good, cuz urs sucks

wtf
This does too, but it's a lot better than nothing
are you listing all possible combinations?
It only completes the last argument, and then just adds the previous arguments as a prefix to the suggestions :p
^
I thought you could only change the suggestion on spaces?
it's a list, so each element will take your current input and append the next possible element
nope, on every input
also every time you click the chat bar
interesting
but not when you hit <tab>
annoyingly
(i mean, it's client side)
client can technically send a suggestion request packet whenever the fuck it wants
i was just describing default behavior
I can show you this horrible messy code in a minute if you want to puke ๐
you think that's bad?
worldedit supports property suggestions via type[prop=val,...]
leaf's worst nightmare
The thing is, our command framework is too bad to make this automatic so you kinda have to hardcode the behaviour per subcommand lol


why is there streams in there
you love streams remember?
But you love Mojang functional programming kewl 31337 CS skillz and concurrency
okay wiz go rewrite worldedit in a functional programming language

f u
we all know worldedit will be fast af if it is written in clojure
tbh i'm not terribly happy with suggestions' architecture in WE atm
the list/stream thing is pretty ugly
gets converted back and forth a few times which is bad
go rewrite worldedit in a functional programming language
You people stress me out
and then bukkit's suggestion api doesn't actually map to how suggestions are implemented in minecraft
you can do better if you use some trickery to hook into brigadier
so we have to do that
yea we know
but piston is more powerful than brig kinda
so we'd have to find some way to map down
powerful in the way that a context-sensitive grammar is more powerful than a context-free grammar
since we support things like optional args mid-command
and brig is a DAG afaik
just hasn't really been priority
Quick question for those of you with a VPS: What are you hosting on there? Trying to get more use out of mine. Currently just hosting LAMP stack with thelounge and a test mc server.
My host is OVH as well
https://pastie.io/uegsew.gradle
have fun, nerds
really depends on how powerful your VPS is, lol
rips off city's limbs and leaves them to die.
I have one of those 1 buck VPS from ovh in CA as a proxy/vpn xD
I have a smaller plan but I wouldn't mind upgrading if I need. Just really enjoying playing with it and want some more ideas.
Been scrolling through /r/selfhosted as well
jfc streams
you know tbh
streams are kinda correct for command suggestions
I should remove that sendMessage lol
no streams are correct for nothing
the issue is that we end up with "sub-suggestions" a lot
except for like io tbh
where we have to prepend the "current" suggested value with the existing stuff
stream style api works better with IO
this works really well, I'm happy
doing that in multiple stages would mean creating a new list every time
Yeah, "lists" are a pain in the ass, static values are easier
jfc this is all giving me cancer
Fuck ducks
put it in ur name otherwise i wont believe ur movement
who are u
(โฏยฐโกยฐ๏ผโฏ๏ธต โปโโป
(โฏยฐโกยฐ๏ผโฏ๏ธต โปโโป
(โฏยฐโกยฐ๏ผโฏ๏ธต โปโโป
(โฏยฐโกยฐ๏ผโฏ๏ธต โปโโป
โฌโโฌ ใ( ใ-ใใ)
(โฏยฐโกยฐ๏ผโฏ๏ธต โปโโป
(ใเฒ ็เฒ )ใๅฝกโปโโป
(โฏยฐโกยฐ๏ผโฏ๏ธต โปโโป
inb4 wiz: all banned lol
โโฌโฌ โ(`๏ฎงยด โ ) u guys wanna see my hammer
Is that the ban hammer?
ugly hammer like u
lol wiz has an ugly hammer
sounds like wiz wants to take off his pants
dw i'm not wearing pants
same tbh
now slap it into fix' face
same tbh
wait what
โฌโโฌ ใ( เฒ ็เฒ ใ)
tables should be flipped
@left swift stop this im not done assembling that table
(โฏยฐโกยฐ๏ผโฏ๏ธต โปโโป
you mean you
no
yes
maybe
no
yes
man that new eclipse update sure looks wierd
Is that live or beta?
Yes.
Looks like beta
You look like a beta
"eap"
"eap"
heap
meat
neat
how do I convert a single payer world to a papermc world? (opensuse)
you take the world
/convert
You need to convert it? What
(โฏยฐโกยฐ๏ผโฏ๏ธต โปโโป
thats it?
oh nice
make a backup to be safe, but yea, that's it
You should always make regular backups
backups are overrated
it adds extra spice to the experience
use plugins to backup and restart ur servers :^)
do I rename the folder to world?
Donโt do backups kids
what's backup
You can just change the world name in server.properties
ah
it's a back that's up @woven otter

electro regularly plays roblox

Sounds like a good time
Only issue is he also made skript
with one bugfix, so eh ๐
ikr
I mean
save the villagers
lmao
That's like asking if people have the most essential IJ plugin
You'd be stupid to not have it
coulda pushed a b but like i guess that'll be our weekly 1.16 snapshot
@still smelt I want it
Should ship by default
Lol
Get more wam
Can I fill boarder on another server with mroe ram
how do I close the server stats poopup without closing the server, or disable the popup?
add "nogui" as a server argument
server.properties or java -jar server.jar nogui?
nyan bar is one of those plugins that you forget you installed because it clearly belongs in every IntelliJ installation
ok thanks
nyan bar 
they're just vibing
I like the use of bots as personal accounts, whats the purpose? just to flex?
???
"I'm a filthy irc user"
its IRC bridge
it's a webhook, irc <-> discord
oh im dumb
self botting would prolly get myself banned
and I cant just invite my bot here or something
I thought they made like a terminal/discord bridge
I mean it is one https://i.phoenix616.dev/mcjE34jC.png
not what I meant but yeah
close enough
speaking of which, is there a way to hide your ip to irc without a vpn?
only the same way you hide your IPs to a web server, proxies and vpns
if you mean hide your IP to other users: you can mask it and most IRC networks do that automatically
ah, I was on freenode the other day and I noticed it showed my ip when I joined a channel
idc about hiding it from the channel hoster, since I go to websites all the time and that exposes my ip
afaik freenode doesn't mask by default
ah
might be wrong though, haven't been on there in ages from anywhere but my server xD
what irc client are you using? weechat?
irssi
does irssi mask by default? is not, how do I mask it? (I have irssi open now)
fun they said
force upgrading 
iirc it's the +x user mode flag, doubt a client will mask by default as that's often a server option
well it cuc the server when ppl fly with elytra at 100bps lol
into 1.13 chunk
on 1.15 chunk like no problem but when into 1.13 server just like ๐
DFU 
@dire harness unless your system has an unpatched exploit or its compromised there's little to worry about when sharing your IP tbh
true
what's your ip nossr
127.0.0.1 
nossr someone on spigot said mcmmo is broken go fix it
69.69.69.420
I only work on its always sunny in minecraft now
You need to be identified to a registered account to message this channel ?

City someone on spigot said PlotSquared has feature creep, go fix it.
I just pretend bobcat doesn't exist
thought so :>
so that one doesn't bother me :]
not a problem
.g mcmmo spigot
(DiscordBot) https://mcmmo.org/ -- mcMMO: "mcMMO was first made 8 years ago drawing inspiration from many games, in particular Morrowind. With its simple yet addictive nature, mcMMO quickly..."
if u think we have too many features just go use plotme lelelelel
(DiscordBot) https://www.spigotmc.org/resources/official-mcmmo-classic.2445/ -- [Official] mcMMO Classic | SpigotMC - High Performance...: "mcMMO Classic is the continuing long term maintenance release of the ... Despite being a prominent Bukkit plugin, very few donations andย ..."
Is PlotMe still maintained?
no lol the last maintainer works on plotsquared and fawe
lol
maintained is a strong word
.g how does .g work
.g search bing
(DiscordBot) https://en.wikipedia.org/wiki/G_protein -- G protein - Wikipedia: "G proteins, also known as guanine nucleotide-binding proteins, are a family of proteins that act ... G protein-coupled receptor and G proteins..."
(DiscordBot) http://www.bing.com/ -- Bing: "Bing helps you turn information into action, making it faster and easier to go from searching to doing."
.g search asian kids screaming and throwing chair at window
(DiscordBot) https://www.youtube.com/watch?v=THmc4uWr2S4 -- [SCREAMING] Guy throws chair at window - YouTube: "Apr 22, 2018 ... Guy throws window at chair while screaming SCREAMING on Windows XP guy screaming extremely loud guy throws chair at window."
Guy throws window at chair while screaming
SCREAMING on Windows XP
guy screaming extremely loud
guy throws chair at window
yea if we could not abuse the bot here that'd be great thanks
that windows xp though
What in the name of fuck

OH IT'S A WEBCAM INPUT
(DiscordBot) https://www.residentadvisor.net/club.aspx?id=28354 -- RA: ://about blank - Berlin nightclub: "DJ Fart in the Club, Imaginary Friend, Future Doctor, Monaco Fugees, Jasmรญn, JSKY, strictly strictly, Kikelomo, No Shade, Marlene Stark, Sameheads,..."
"://about blank is a formerly illegal, multi-room club" 
.g always sunny in minecraft
(DiscordBot) https://www.planetminecraft.com/blog/one-image-tutorial-how-to-make-your-world-always-sunny/ -- [Tutorial] How to make your world ALWAYS SUNNY Minecraft...: "May 14, 2016 ... [Tutorial] How to make your world ALWAYS SUNNY. This simple image actually explains everything you need to know! Updated on Oct..."
fail
.g spigot always sunny in minecraft
(DiscordBot) https://www.spigotmc.org/resources/always-sunny-in-minecraft.64086/ -- Always Sunny in Minecraft | SpigotMC - High Performance...: "It's Always Sunny in Minecraft. Don't let bad weather ruin your perfect skin. โ. Description Weather has been removed from the game. It was anย ..."
Could just use a gamerule
when md5 tells you that you need 3 plugins uploaded to post a premium resource
you make quality shit that everyone needs
I guess that's true
my pride and joy
That makes that emote even more valid
I'm busy working on perfecting weather cycles in always sunny
is it possible to use different IntelliJ themes for different projects? 
is that not a per-project setting?
How many donations have you gotten for that plugin nossr? /s
I love everyone trying to tell my google home to do stuff and get triggered because it doesnt respond, and then I tell it to do something and it does
nossr is super rich but doesn't give any of his riches to me
^tru ๐ฆ
I hope that isn't just for always sunny, though.
Cause if so, I'm clearly doing something wrong.
what would we do with a drunken sailor
always sunny in minecraft sounds like a shitty yt parody
its about sending a message ๐คก
bruh
@void void do you have any calculus 1 questions for us today? I miss them already
@austere ivy that's ur post thats blowing tf up on reddit, right? nice https://www.reddit.com/r/Minecraft/comments/f6dv8f/114_vs_115/
(DiscordBot) 1.14 vs 1.15 : Minecraft - 152 comments, 11,439 points - TehBrian, 4h ago

Yeah, it's nuts how popular it is. Makes me kind of sad because I put a lot more work into some posts that never really get any attention but then I put two images together and suddenly it's my most upvoted post by a long shot ._.
lots of subs are like that tbh
and r/minecraft mods are the worst
reddit as as a whole is going downhill pretty fast, imo, I'm looking for alternatives.
Bluedit?
4chan 

.g reddit alternative
(DiscordBot) https://www.reddit.com/r/RedditAlternatives/ -- Alternative websites and communities to reddit.com: "Jul 4, 2012 ... r/RedditAlternatives: A subreddit for cataloging, dispersing and sharing all reddit alternatives out there."
to an extent, that's about effort of consumption, not effort of creation
4chan was what I used before reddit, but 4chan is a cesspool (except for /vg/)
@void void [Auto] We're now known as Paper.
(DiscordBot) https://www.reddit.com/r/admincraft/comments/cvjwrc/does_paper_really_run_faster_than_spigot/ -- Does paper really run faster than spigot? : admincraft: "r/admincraft: A subreddit for Minecraft administrators and developers who are serious about ... I am also curious as to why spigot is laggier than..."
28 votes and 12 comments so far on Reddit
not that one, there is one on that subreddit, however
94 votes and 41 comments so far on Reddit
(DiscordBot) What is Paper (Spigot)? And why you should use it! : admincraft - 41 comments, 92 points - aikaradora, 1y ago
I read them but how much faster is paper a lot orr?
yes
It stuuupid fast
there are no benchmarks given the nature of mc, but, assuming you don't subscribe to the "lets just not tick entities at all", you'll get much better performance out of a properly configured paper server vs spigot
@void void do you have any calculus 1 questions for us today? I miss them already
@olive garden just finished my hist class and chem midterm, I'll be home to study calculus and I'm sure I will lmao
ohhh simple dimple
Wow, Paper updates frequently
Updated to the latest version like 2 days ago and Iโm already 7 versions behind
Not complaining tho
yes u r
The Engiepocalypse.
faster ram helps mc servers a lot
Okay. Why are you saying this?
Anyone know what this is coming from? "x was kicked due to keepalive timeout!"
.895
Thanks
๐คฆ
lookin for Big Chungus texturepack, thx
.g big chungus texturepack
(DiscordBot) https://www.planetminecraft.com/resources/texture_packs/tag/meme/ -- Best Meme Minecraft Texture Packs - Planet Minecraft: "Browse and download Minecraft Meme Texture Packs by the Planet Minecraft community."
Browse and download Minecraft Meme Texture Packs by the Planet Minecraft community.
๐ฑ
Amazing what Google can do, yeah?
yeah but the best memes are always rare
???
Funny part is that people still fall for it
so my family owns a moving company, and we were planned to receive a shipment for a military officer from another transport company
the other transport company's truck caught fire 
but the items are undamaged
but the officer is getting compensation, and doesnt want his items
so i looted 1 GTRacing chair, 1 bluetooth soundbar, 1 headphones holder, 3 phones, and like 30 books including a few uni textbooks
and a whole surround sound system

on the downside, someone cut me off today and my laptop bag flew across my car and now one side of my macbook chassis is cracked 
30 players, 4.5 tps. Yay, we're doing great lol

https://timings.aikar.co/?id=231fde6be4e04e1f9d9694d39fe3275b#timings
bruh this is like bad enough where it's funny lmao
Aikar's Timings Viewer - View Timings v2 reports from Paper and Sponge
My code is barely even showing up
wtf is citizenry doing
jesus christ
wdym not showing up boy
it's #1
package xyz.hegemony
yeah im pretty sure citizenry is just fucking WRECKING you
but also wtf is that hologram doing lol
wtf core 
This is the stress test. Iโm not responsible for any of this, I just have to clean it up lol

If I was in charge I would have done this about, idk, two years ago?
did u make citizenry 


This is the best state citizenry has been in lol
BEST
amazing work city
Itโs not my fault we have like 85 npcs running around in the same chunk

mfw
Bro like
Why can you eat the apple skin but not the orange skin?
I been wondering
And it makes no sense
I do like lemon skin though
Gross.
Lemon shavings are used for seasoning things but I've never heard of just eating it
Orange peels are used the same way
that's the zest generally though
i.e. the oily colorful outside
the dry bitter white part is the pith, which generally isn't used for seasoning
cuz...it's bitter, not really tasteful
but, some people just eat the whole thing yea, or depending on how you peel it just copious amount of pith
Eating anything like that is a good way to completely dismay someone watching you though
lol that too
Someone wonโt stop staring? eat the banana with the peel
Eat the orange through the skin
Never break eye contact

i scrolled through a whole bunch of girls suggestively playing with bananas
but this guy has the right idea
Disgusting
eating the tacobell wrapping with the taco is where it's at
leaf do you watch anime
no
im asking because i wanna know if you want the funimation sub discord gave me
furries are weebs arent they
well I'm neither 

I donโt have a kappa emote
sux 4 u


mfw retards don't about the everyone and here ping suppression
btw
they left after my message
they read it
thought for a couple seconds
then left anyway
I'll kick u
(DiscordBot) https://www.spigotmc.org/resources/official-mcmmo-original-author-returns.64348/ -- [Official] mcMMO - Original Author Returns! | SpigotMC -...: "The original creator of mcMMO is back working on mcMMO full time, pumping out constant updates. 2.1 is available now and had 300+ hoursย ..."
is that what you call it, leaf
Sup
hay baybie
Sup
r u high
hmm
I have ~65 lines of text. I need to extract data from, for example, lines 1-5, 7-12, 15, etc. what would be the best way? line numbers can vary a bit...
Sup
you read up to line whatever you want
kash, awk?
jump off a bridge

not this type of IO
imma go to bed before leaf goes ballistic on us again
leaf clearly never snuck books/games/whatever under the covers at bedtime
or he'd have learned that you're supposed to wait for the adults to leave before starting
I do have an IDEA
I'm not high tonight
I already gave you one
i mean, line numbers vary... so there's no real pattern to follow...read them all in, write a regex to match what you need to get out







users