@worn ember can u finish this https://github.com/DarkEyeDragon/ServerLauncher
#general
3141 messages · Page 28 of 4
sure at some point
its not that good tho
you cant even copy stack traces from the console lmao
then do it so you can copy o.o
its open source, feel free to do it yourself
@leaden cave this is the 'off topic' channel 😛 discord gives verify to open source communities. its just not really documented that well
and you gotta spam them
Aikar lemme borrow your internet speed for a bit
@slim nymph how do you parse that xml tags inside language files in acf ?
data caps
I can't, I live in europe, that shit doesn't fly over here
my internet is shite, but at least its not capped
On a side note, Tacosaurus socks!
🤔
@worldly condor what XML?
@MrIvanPlays: he just uses regex
and <c2>
der
could have just looked at the code yourself
i haven't find it
You know what happens when trying to parse XML with regex: https://stackoverflow.com/a/1732454
except its not XML 😛
its not xml tho
there is no possibility for self recursion unless you are dumb
i need something like: This is a <highlight color="blue">highlighted message</highlight>
XHTmL is
"unless you are dumb" -> so it is possible 😃
ACF's stuff isn't
how do i parse these tho
HTML is XML
reminds me that I still want to do this
yes you do
that you would parse via a XML parser @worldly condor
how ?
google some shit bruh
that format is cancer tho
i found about full xml string, but my string isn't full xml
🥄
yes feed me please :lappa:
I made my own parser with regex for stuff like that. It's like bb code^^
i found about full xml string, but my string isn't full xml
speech: 100
<yellow><test> random <bold>stranger</bold><click:run_command:test command><underlined><red>click here</click><blue> to <bold>FEEL</underlined> it
thats my format
parsed via regex
~/MrIvanPlays/languages.class has stopped working
how do i parse xml ?
because xml doesn't have normal strings
&5[suggest=/command suggestion][hover=Click here to get a suggestion]Click here[/suggest][/hover]?
and for me, closing of tags is optional
whut? 🤔
test<tag>test2</tag> is not valid xml
why wouldnt xml have regular string? <someName>some text</someName> this is completely valid xml?
sure it is
no as you have no root tag
This is a <highlight color="blue">highlighted message</highlight>
how do i <highlight color="blue">highlighted message</highlight> get this
I would just do This is a <blue>highlighted messages</blue> and parse via regex 🤷♂️
hmm well i guess, but you don't need a root tag. It'd just be a more comprehensive way of writing it imo
https://gist.github.com/JOO200/6e08dcd1e945496cb47aef393528fc56 - it's not perfect atm, but I guess you can change the regex pattern to the xml-syntax
am i the only one that liked the old auto complete better?
where you just press tab a few times
Pattern.compile("<(?<operation>(hilight|open|click|whatever))\s*(?<options>)?>(?<msg>.*?)</\\1>", Pattern.CASE_INSENSITIVE);
i dont understand these patterns
add to that hilight|open|click|whatever to add more 'operations'
then https://github.com/aikar/commands/blob/master/core/src/main/java/co/aikar/commands/MessageFormatter.java#L86 use .group("operation") instead of .group(color)
then also use .group("options") to get the color=black etc
oh oops i forgot pattern in options
How the heck do I prevent this dumb computer from putting a usb device to sleep?
Pattern.compile("<(?<operation>(hilight|open|click|whatever))\s*(?<options>[^>]*)>(?<msg>.*?)</\\1>", Pattern.CASE_INSENSITIVE);
is this was for me ?
yes
ty
have fun your now in the realm of regular expressions
thats on you
ehm, ?
i dunno, i dont have the capacity to figure it out atm
this is how you learn 😃
find whats wrong
that pattern is 99% there for you
fix the 1%
@wind mauve bios settings i'm pretty sure
i got data's to convert
my USB's are always active even in sleepmode
yall love some data conversion right
hmm ill have to mess with that on next reboot
im not rebooting midway thru an install lol
I waited 1h for 1.12.2->1.13.2 conversion. I love it
aikar i will pay you 2$ if you fix it
🤦
i am pay2win player
@worldly condor you have to escape backslashs in your Strings
That's insulting

500iq
you can pay me 2$ instead
you was able to get banitsa with yoghurt drink for these money
I'll triple it and donate it to Aikar for the mob spawn fix 😄
i just ate 4 eggs
dont need more
gotta eat them quick 😦 past expiration date, but aint floating yet!
no bacon?
i have turkey also needing to eat, so mixed turkey with it
and cheeese
ill be going back keto here soon
so ill get all the bacon and eggs then
have you eaten kebab
meat on sticks? of course
tatar meatballs ?
ive eaten steak off a sword too
It's like shashlik
tripe soup ?
prob not on those
come in bulgaria, go in a bulgarian restaurant, and say these magical two words: shkembe chorba
aikar have u seen my PR about bulgarian language ?
git broke the core translation, and i dont know how to fix it :/
I don't think it was git 😛
Íÿìàòå íóæíèòå ïðàâà, çà äà èçïúëíèòå êîìàíäàòà - This is bulgarian?
git broke it
lol
aikar gimme sec
Google translate sucks
@olive garden is that how you say it?
For anything that's long or not common
fuck you
make sure you save the file in utf8
all the other languages havent had the issue
because they don't use the cyrillic alphabet, do they ?
UTF has all chars known to humankind
and go change your IDEA default to use UTf8
you should always be using UTF8 these days
.g intellij how to change default file encoding
(DiscordBot) https://www.jetbrains.com/help/idea/configuring-individual-file-encoding.html -- Configuring Individual File Encoding - Help | IntelliJ IDEA: "Using the File Encodings page of the Settings dialog, for directories and for the files that ... The Default Encoding column shows encoding for..."
see down below
Change default for property files to utf 8
default for properties
maybe if you copy them before switching then paste after? i dunno
or just retype them now
fixed
will this work ?
Matcher matcher = operationPattern.matcher(inputString);
while (matcher.find()) {
String tag = matcher.group(searchedTag);
String msg = matcher.group("msg");
return new String[] { tag, msg };
}
return new String[0];
}
}```
so liek that
Matcher matcher = operationPattern.matcher(inputString);
while (matcher.find()) {
String tag = matcher.group("operation");
if (!tag.equalsIgnoreCase(searchedTag))
{
continue;
}
String msg = matcher.group("msg");
return new String[] { tag, msg };
}
return new String[0];
}```
matcher.group("options")
liek that ?
Matcher matcher = operationPattern.matcher(inputString);
while (matcher.find()) {
String tag = matcher.group("operation");
if (!tag.equalsIgnoreCase(searchedTag))
{
continue;
}
String msg = matcher.group("msg");
String options = matcher.group("options");
return new String[] { tag, msg, options };
}
return new String[0];
}```

but that will give me color=blue or ?color or blue ?
former, do String options[] = result[2].split("=", 2);
errr
wait
you need to split on spaces, then iterate, split on = then
welcome to parsers
shit gets complicated
interesting
Map<String, String>
thats how we gonna store my shit
@slim nymph that should do it
Map<String, String> tags = new HashMap<>();
Matcher matcher = operationPattern.matcher(inputString);
while (matcher.find()) {
String tag = matcher.group("operation");
if (!tag.equalsIgnoreCase(searchedTag))
{
continue;
}
String msg = matcher.group("msg");
String optionsBuffer = matcher.group("options");
String[] options = optionsBuffer.split(" ");
for (String optionBuffer : options) {
String[] option = optionBuffer.split("=");
tags.put(option[0], option[1]);
}
tags.put("msg", msg);
}
return tags;
}```
note that if any of your options has a space in them, itll break
ok, now will u merge da PR ? https://github.com/aikar/commands/pull/204
or u wanna check the messages via google translate
maybe do a matcher for (?<name>[a-zA-Z]+)="(?<value>[^"]+)"
that would be more accurate
err
(?<name>[a-zA-Z]+)="(?<value>[^"]+?)"
so a matcher fior the options ?
yes
thatll work for spaces
@worldly condor i like to let language PR's sit for a while for someone else who knows the language to review it too
i dont think any bulgarians use ACF
so if you can find anyone else who knows bulgarian to review it
the bulgarian dev community is small
well tel lthem to fix that
dev = solid career
i cant ever understand people who are good at programming not doing programming for a career 😛
ok i typed to one of the devs i know
if he doesn't say anything what ?
oh, and also
Map<String, String> tags = new HashMap<>();
Matcher matcher = operationPattern.matcher(inputString);
while (matcher.find()) {
String tag = matcher.group("operation");
if (!tag.equalsIgnoreCase(searchedTag)) {
continue;
}
String msg = matcher.group("msg");
String optionsBuffer = matcher.group("options");
Matcher options = optionsPattern.matcher(optionsBuffer);
while (options.find()) {
// wat should i do here
}
tags.put("msg", msg);
}
return tags;
}```
will this do it
public static Map<String, String> findOptions(String inputString, String searchedTag) {
Map<String, String> tags = new HashMap<>();
Matcher matcher = operationPattern.matcher(inputString);
while (matcher.find()) {
String tag = matcher.group("operation");
if (!tag.equalsIgnoreCase(searchedTag)) {
continue;
}
String msg = matcher.group("msg");
String optionsBuffer = matcher.group("options");
Matcher options = optionsPattern.matcher(optionsBuffer);
while (options.find()) {
String buffer = options.group();
String[] optionsArrayBuffer = buffer.split(" ");
for (String optionBuffer : optionsArrayBuffer) {
String[] buf = optionBuffer.split("=");
tags.put(buf[0], buf[1]);
}
}
tags.put("msg", msg);
}
return tags;
}
please use paper-dev for dev stuff
ok, but is it fine tho ?
where can i do my furry rp aikar?
no
@slim nymph is there a way to rollback a query when using try with resources?
in the exception that is
conn.rollback()
my connection is in the try with resources tho
and/
i cant access it in the exception?
Congrats at getting this server verified
Connection conn; try (connection = obtainconnection()) { }
So I have been trying to sign up for the forums but it hasn't sent me an activation email. I tried several days ago and still nothing
@dapper nacelle you're like 1-2 months late but thanks
oki
Lol
we've been verified for a while
Well, I've been buzy with learning HTML and CSS for 2 months
And creating a huge site
doesnt seem to like that much either
02/12/2019
https://justdylan.me it was for a school assignment
Uw nummer een site voor uw sport artikelen.
We had to create a web shop
No JavaScript
I sneaked a little bit in tho
@dapper nacelle koekoek jonge
Why no JS?
😂
maybe do connection conn = getconnection(); try (Connection conn2 = conn) {
Because that was part 2 of the project
jeez that title gave me aids
We're now learning JS and after that we'll be extending our site
Aikar doesn't that defeat the purpose of it? xD
setting the connection outside of the try with resources
might aswel not use it then?
if you fail to open it.... it doesnt need to be closed
the key is to close it once you are DONE with it
so i'll have to manually close it now?
no, putting it in the TWR will close it
but you could just manaully close it for clean to readness
or do try (Connection ignored = conn = DataSource.getConnection()) {
then in your Exception, if conn != null, rollback
these methods are getting ugly real fast haha
easy for you to say
my Dbstatement is a wrapper around Connection, thats the close method
well wrapper around conn+statement
seems like i'll have to look into callbacks aswel
whistles IDB
cold
DeadLock 😢
On Haskell (especially profunctor optics): "You should see the type checking errors. It's like an abstract math random poem generator."
what strategy does everyone use to have multiple people working in one tmux window at once?
@slim nymph why? I don't need people working on one pane at once just in the same session
dont do it
and the way I currently have everything organized involves a bunch of panes in one window
tmux doesn't support what you want afaik
tmux/screen should be used on a personal basis for that kind of stuff, or to allow 1 person to re-attach to a detached terminal
I've Googled and it seems like some people have had success, but I haven't :/
unfortunantly @golden gust that is for windows, not panes
But still, you'd often be better off just using a control panel for multiple users, as much as I distaste many of the solutions out there, they're able to handle things like multiple users that tmux/screen can't
well we are using tmux for things which are developer-related
i.e., my setup
server A | server A dir
server B | server B dir
process C | process D
sometimes it is nice if I work on server A, and the other dev works on server B, perhaps
but at the same time it is nice to have everything in one window
so maybe just sacrifice how nice panels are and have multiple sessions?
That's seemingly your only real option here

:/
are there any methods in Bukkit/Spigot for taking a damage value to a player and running it through all resistance calculations? (armor + enchantments, etc) I tried looking and didn't find anything, I know .damage() does this to deal damage but that causes knockback which is annoying, I'm wondering if I need to calculate the damage resistance values myself and just use sethealth
EventHandler priority HIGHEST, cancel event and set event.getResultingDamage()? (there should be a method like that)
do not cancel events in MONITOR
yeah please fuck off with modifying events in monitor
who said monitor? 😛
:>
https://i.imgur.com/mUb3uBB.png
is this normal? 🤔
https://i.valaria.pw/190324194546.png is that, normal? o.O
mojang text2speach what?!
oh, desert land, i guess 🤷
Is it possible to trigger mojang t2s with bukkit api? 😄
no
It's chat based, basically
client has to turn it on, and it just does tts on whatever is in chat
would be cool for some minigames
okay weirdest part is you can't really disable it either
i mean
you kinda can
it's sleeping if not in use
rip it out from the game using mods
¯_(ツ)_/¯
They likely just open the thread at some point, vs creating/closing the threads everytime it changes between on/off
but yeah thread is sleeping when it's not use
Ensure that it starts up fine, beyond that, a sleeping thread ain't going to do much to performance
:>
oh so it's basically just because of how profiling works and so it isn't really affecting performance really. I mean yeah it shows "big" cpu time but it really isn't doing anything and slowing down anything really
More than likely you're actually sampling vs profling, as profiling is pretty much too expensive for MC
sampling takes a look at the thread every so often to check what it's doing at that point in time
not sure. I'm using CPU tracing in YourKit
oh, so you are sampling, but the general gist is that if you spend time sleeping, it's going to show up as sleeping
The thread ain't doing anything at that point, so isn't a concern
Thanks for enlightenment 😄
the UX there looks a bit off
what was the total sampling time?
is it adding together times for each thread it was sampling?
even if they overlap?
???
like it says
all threads - 2000 seconds
thread.run - 1000 seconds
so 1000 seconds were spent uh....not running threads...?
it's not tbh
The jukebox in my living room just short circuited a power group
i can only assume from a sense of reasonability that you were only running for 16 minutes and not 5 hours
but nothing about the UX makes that clear
i assume by "time" it means "cpu time" then?
but sleep doesn't take cpu time
electrical power unit
it takes wall time
so uhhh who the fuck knows i guess
(i mean, assume it's just context switched off in the underlying hardware. technically that's just an assumption)
(and even if it's not that just makes for useless reporting statistics)

(DiscordBot) @it_meirl_bot (me irl): me irl https://t.co/LBg6zutGaF https://t.co/olbaFCB4XW (7 hours and 36 minutes ago)
spanish, portuguese and italian speakers being able to communicate without speaking each other’s language
https://t.co/qEc9TgB0I6
Retweets
1700
Likes
4420
(DiscordBot) @filmsofcoIor (b): spanish, portuguese and italian speakers being able to communicate without speaking each other’s language https://t.co/qEc9TgB0I6 (3 hours and 3 minutes ago)
“25) genuinely the boppiest bop out there https://t.co/ttJhkWLf89”
That's annoying but I approve and will live with it. I typically make under 1.12.2 anyways
I don't care how annoying it is
bUt I wAnT 1.8 1.7 sUpPoRt :(
So do you only support the creation of things that are actual server jars or are you open to expanding to other big apis?
Hello!
Oh, I didn't see they repurposed this channel... merp. I guess Discord or /join #paper-help for your question Star
Oh bleh. xD
Where might the Discord link be?
You're a blessing. Thank you
y did u do dat dumauthority
blushes
:c am sry RoboMWM
also he can ask here
since it is general anyways
oh, i didnt know m8. but this channel in discord == irc channel
I see that now! I needed the discord anyway
u megadum
don't do irc kids
its a good drug
pr0feshunal
they're good chat protocols, bront
IRC is a gateway drug
also only nerds use irc(!!)
ill claim the title
ew, gross.
im still trying to figure out how to have my disc bot rename itself on message
i did it once but completely forgot and JDA is a pile of crap
webhook 😃
slack can go eat a green potato
and then u at-everyone in it
im linking plug.dj and discord, so needed to sync the names
but i got dis naio
also only dumdums use IRC<->Discord bridges
that's one thing dumcord is good for, plug.dj replacement
that's it
ya, delete the dumcord and get over here
Or, just drop IRC and be happy :D<3
my PC cries in RAM
yea i set up https://socket.vale.gg/plugdj (i think that's the endpoint) anyway all it does is stream the events from pdj so I can do watever i want with it. such as play music on a distributed discord bot system
when i run it
I've reduced the amount of IRC in my life by 100% and I'm way happier
IRC btter t han dumcord
no
yes
no
s/no/yes
Correction, <DiscordBot> <11Citymonstret> yes
.rekt
☑ 12 Years a Rekt
IntellectualSites is thriving ever since we kicked irc to the curb 😄
s/cool/dum
Correction, <DiscordBot> <11Citymonstret> you're not dum enoguh
i looked it up and i went to the website and it forces me to scroll while most of it is whitespace
oh no most of it is just a big logo
nice
GitHub
Blazingly fast world manipulation for artists, builders and everyone else: https://www.spigotmc.org/resources/13932/ - IntellectualSites/FastAsyncWorldEdit-1.13
should a mysql client be using 2gb of ram...?
depends what it's running?
cuz 300MB of ram is soo much on systems with at least 8gb lmao
hold up
lagging behind again
ye, he bad 2
Waiting for EOL for paper 1.12.2
Nah
yeah man let me change my 10 tps to 20
|| ||
Tps if is changed may affect perfomance
waiting for EOL of 1.12
about to push a 1.12 update
(DiscordBot) https://www.equalityhumanrights.com/en/human-rights-act/article-3-freedom-torture-and-inhuman-or-degrading-treatment -- Article 3: Freedom from torture and inhuman or degrading...: "Nov 15, 2018 ... This basic human right that no one should be subject to torture or ... will face torture or inhuman or degrading treatment or..."
This basic human right that no one should be subject to torture or inhuman or degrading treatment. Public authorities should also protect people from this treatment.
(DiscordBot) https://www.lib.sfu.ca/about/branches-depts/slc/writing/style/polishing-your-style -- Make sentences clear and readable | SFU Library: "If your sentences need to be clearer, start by making sure your subjects and verbs ... Our language's capacity to transform parts of speech makes it..."
There you go mah man @quasi valley
it wasnt that hard to understand... maybe the problem was the reader 😉
Ouch
.g how 2 googul sirtch
(DiscordBot) https://support.google.com/websearch/answer/134479?hl=en -- How to search on Google - Google Search Help: "Tip 2: Search using your voice. Tired of typing? To search with your voice, say "Ok Google" or select the Microphone . Learn more about how to search..."
Learn a few tips and tricks to help you easily find information on Google.
Tip 1: Start with the basics
No matter what you're looking for, start with a simple search like where's the closest airport
found a friend
its dead
it is alive now
how did you revive it
put it in a closed box, then kept checking until it was alive
seems legit
box trick works
@unreal quarry I don’t think thats how it eorks
how 2 physics ?
"An ideal spring is hung vertically from the ceiling. When a 2.0 kg mass hangs at rest from it, the spring is extended 6.0 cm from its relaxed length. A downward external force is now applied to the mass to extend the spring an additional 10 cm. While the spring is being extended by the force, what is the approximate work, in J, done by the spring?"
no idea
F = kx
hytale
o
what's the spring constant?
no idea
whats a spring constant
in the first part
my professor teaches nothing he just gives practice sheets for the exam 😭
worst professor in the school
reeee
why is Mozilla releasing the updates for Windows (let's say this latest one, 66.0.1) but then when I go to the Play Store to update it on Android it's still in 65.0.1? ._.
even though it's compatible with my android version
I mean I got APKMirror for this but still
mozilla can u pls
(talking about Firefox, forgot to mention)
ew android
ew? surely you aren't implying iOS is actually decent?
ios is the best os
im joking
i want to try one of those android linux alternatives
librem looks cool
jesus that price
lol
its funny though because an iphone is the same price
librem is not for you to get a price competitive system
but at least you get a monitor with this 
They’re tiny, make their own software, develop their own conglomeration of hardware, etc
You buy them because you want privacy/freedom but don’t want to do it yourself
they make 700$ 24" monitors? what kind of hardware is in that monitor? Anti nsa?
it doesnt include the nsa module that records your screen
had to pay the nsa to remove
That’s probably covering their overhead
wasnt really commenting on phone price, 650 is 'comparable' to todays prices
but how does a monitor/kb/mouse cost more than the device
It’s like buying one of those low production cars from those tiny English companies
id just buy the phone and my own monitor
$1,699.00 for the 30"
It’s not really price competitive, but that’s not their niche
the keyboard is made out of granite
where is this phone 
regardless of the phone though you're still on the grid
so i dont see a major point in these security/privacy phones
The only interesting thing is the hardware switches
Everything else seems like stuff you could do easily enough elsewhere
yeah
(DiscordBot) https://en.wikipedia.org/wiki/KWallet -- KWallet - Wikipedia: "KWallet (KDE Wallet Manager) is a credentials management application for the KDE Software Compilation desktop environment. It provides a centralized..."
nothing really interesting
except that kashike is hosting a botnet for paper dotnet-host-2.2.3+105-1
amd gpu?
(DiscordBot) https://www.archlinux.org/packages/community/x86_64/dotnet-host/ -- Arch Linux - dotnet-host 2.2.3+105-1 (x86_64): "Mar 17, 2019 ... dotnet-host 2.2.3+105-1 ... Base Package: dotnet-core. Description: A generic driver for the .NET Core Command Line Interface...."
no, nvidia
Mesa, also called Mesa3D and The Mesa 3D Graphics Library, is an open source software implementation of OpenGL, Vulkan, and other graphics API specifications. Mesa translates these specifications to vendor-specific graphics hardware drivers.
Its most important users are two g...
o
lol
Total Download Size: 1360.95 MiB
Total Installed Size: 4777.67 MiB
Net Upgrade Size: 79.77 MiB
forgot to include that
my ubuntu machine has been waiting over 4 months for parts so i wonder how much ill have
i wish but im missing a watercooling bracket for the ryzen chipset so I had to wait until it was back in stock
they're getting a Intul e8-1337Q
1337
.g Intel e8-1337Q
(DiscordBot) https://ark.intel.com/content/www/us/en/ark/products/33910/intel-core-2-duo-processor-e8400-6m-cache-3-00-ghz-1333-mhz-fsb.html -- Intel® Core™2 Duo Processor E8400 (6M Cache, 3.00 GHz, 1333...: "Intel® Core™2 Duo Processor E8400 (6M Cache, 3.00 GHz, 1333 MHz FSB) quick reference guide including specifications, features, pricing,..."
Intel® Core™2 Duo Processor E8400 (6M Cache, 3.00 GHz, 1333 MHz FSB) quick reference guide including specifications, features, pricing, compatibility, design documentation, ordering codes, spec codes and more.
thought so
made it up leaf
mfw he googles it
2 ur retarded
thats ban worthy
1337 is the hacker number
@upper flicker dis is 4 u
lol
good lord
those should be in your mouth not on your feet
I see mountain dew
look at all that fucking bartle skeet
taco with extra foot
hell yeah brother
gross warning
wow now i want a slice of pizza
dansgames
did they really eat the foot
my drive with my home partition no longer exists
seasoned it
it's not in fdisk or blkid
On the one hand it couldve been a hoax for reddit karma
but on the other people do some fucked up shit
your drive got thanos'd
on the other that foot looks real
I'm not sure what to do from here
would not put it past them
(DiscordBot) Hi all, I am a man who ate a portion of his own amputated leg. Ask me... : IAmA - 4,706 comments, 20,017 points - IncrediblyShinyShart, 9mo ago NSFW
recycling at its finest
Anyone here ever play Jackbox Party?
only spotted would eat his own amputated foot
I'm streaming it now if you wanna stop by
.typing
i played quiplash one time
i'm streaming
no link
CLICK HIS PROFILE
oof, sorry
Going live playing some Jackbox Party! https://www.twitch.tv/sevenfingergaming/
NO LINK
top kek
where are the other 3 fingers
wtf is this game
gone and always forgotten
oh you legit lost some fingers
i'd watch but my internet doesn't support twitch
i thought it was just a username
🤘
at least you got a 2080ti and 9900k
2080ti and 9900k in return for 3 fingers
sweet another watercooler enthusiast
isnt it loud with all those fans?
nope
you can turn the fans to like 800rpm
they rarely kick in
amazing
the 3 360mm rads do just fine when fans low rpm
OK DRIVE
i unplugged it and plugged it back in
and it's recognised
even my single 360rad with a 5960x and two 1070s is super quiet
quick someone tell him the dd command to nuke his drive
at least you didn't witness my mistake this morning
I broke my raid setup
my setup
Had to redownload 300Gb of games today
ouch
such a cute setup kashike
Yeah RIP
thanks TCC :3
Luckily the drive itself is fine
ur on irc i c
otherwise, it's the same
kashike having bad dreams at night needed a little dream catcher?
yes @static badge
weebs :dansgames:
ansgames
@gloomy sphinx https://i.imgur.com/nQe49uq.jpg is the new table between desk and tv
all the networking stuffs
and what is that?
can you give me the jar in pm?
@static badge its a false pos
i wanna see
i like mini switches
they're not very smart then
prpl ratz
java rat! it will infect ur mac
Ok everything is fixed now I guess
I need to fix it randomly hanging while shutting down though
ductape will fix it
nice
yeah looks fine
-rw-r--r-- 1 minecraft minecraft 4517888 Dec 15 2013 r.-3.46.mca
think this is a good test of world conversion code lol?
oh yes :>
post results
Is pubgs rate of fire dependent on fps lol?

normalize ur db they said https://puu.sh/D4V5N/0854cf010c.png
those ALL point to tables elsewhere
:D
i dont get it
sux 4 u
not as bad as being an irc user
am better den u bby
imagine being a bot
lol silly bot
CafeBabe, kill snoᴉɹɐɔᴉΛ
rams a grenade launcher up snoᴉɹɐɔᴉΛ's ass and lets off a few rounds.
I like it when you kill me dad
come fight me simpleauthority. this time in the discord realm

tfw you tell someone to fite you and they actually show up

Nah nah
irc only?
CafeBabe, lart DiscordBot
dragon punches DiscordBot.
CafeBabe, kill TCC
rips off TCC's arms and leaves them to die.
: (
you win this time
hands Z750 a perfect hard-shell taco filled with refried beans and topped with salsa, capsicum and guacamole!
gives Z750 a spicy taco
.lart z750
resizes z750's console to 40x24.
RIP
.kill TCC
stabs TCC in the heart a few times with a corkscrew.
.kill spottedleaf
beheads spottedleaf with a sharpened katana and uses their head to play tennis.
.rekt
☑ REKTacia
would you buy a Huawei phone
this is the part where you tell us what you did simple
oh, i introduced cafebabe to the users of discordia
knocks two of cafebebe's teeth out with a 2x4.
they don't even know the reason she's called CafeBabe 😠 I'll make you CafeDead, @upper flicker
do you even know why she's called cafebabe
.lart Korbi
replaces Korbi's KY with elmer's clear wood glue.
because it was used for a java community and they wanted something "lol look at us, its jerber" for a name
or did you mean the direct reason they picked that one
🤣
I once witnessed two people in HS schedule a fight at a basketball game, when they both showed up they just said mean words to each other and then went separate ways
who schedules a fight for a basketball game
thats the reason they picked that name
jerber bes lang
lol
(DiscordBot) https://www.imdb.com/name/nm3074159/ -- Jer Ber Jones - IMDb: "Jer Ber Jones, Composer: Buckback Mountain. Jer Ber Jones was born as Robbie Daniels. He is a composer."
lmao
.lart jerber
tattoos the Windows symbol on jerber's ass.
I randomly touched my computer and the PSU started sounding like a diesel and when I opened it a lot of hot air came out
I had to turn the PSU off to make the sound stop
blow it up
Remember when @wind mauve was using stolen accounts?
what do I do???
oh heck
wat
z750 had to uninstall all the jerbers
I just tipped it over to see the PSU fan
something could be stuck in the PSU fan, I guess.
lol...
oh boy that is some DUST
it is stuffed with feathers
that psu is overheating
from birds
your problem right there
wait no
"it's stuffed with feathers, why is it overheating and making noise"
also just avoided a dead psu and a fire
clean it out LOL
is the dust at your house usually pure white
no
that looks like someone shoved flour or shit in there
it's asbestos
did someone pay for you to be killed by a computer?
I don't know
nice fucking picture
take a better picture
it looks like garlic
this has got to be b8 tho
huh?
lmao jesus
fucking disgusting
that's like some carpet in there or something
do you ever clean your house
did you destroy a fucking pillow
unscrew your PSU, take it out, and clean that vent
.lart miclebrick's psu
signs miclebrick's psu up for getting hit on the head lessons.
no I have a ton of parakeets and yes I clean it but I never think to clean under the desktop ._.
I had one
then my dad got another one who was a female
then a few years later they had kids
Why don't you get some of that shit that people use for screen doors
and cover the PSU vent
plus my siblings got a few
you do know that parakeets are the leading cause of
preferring lambda without knowing why
what inventory does the InventoryHolder#getInventory return?
The inventory it's holding
no
right...so you create your own InventoryHolder, and in getInventory() you return the inv you have created.
idk a hand held vacuum
but dont you use Bukkit.createInventory(InventoryHolder, slots)?
it wont hurt anything, just make sure you unplug
you need to unscrew it
the psu has a mode where it spins the fan up to 100% when it overheats and you never want to reach that mode
probably the noise you heard
unless if you want a fire, dead psu, and dead components
@orchid pelican yes, use this
public static Inventory createInventory(InventoryHolder owner, int size) throws IllegalArgumentException {
return server.createInventory(owner, size);
}
inside of the InventoryHolder
this is the owner
public static Inventory createInventory(int size) throws IllegalArgumentException {
return server.createInventory(this, size);
}
however that would inside your inventoryholder
@carmine hinge psu should not be more than 4 screws
ok so i need to create the inventory inside the InventoryHolder
should just be 4 at the rear
yes chasewhip
@void void it's screwed into the case as well
but then what happens if i use public static Inventory createInventory(InventoryHolder owner, int size) throws IllegalArgumentException { return server.createInventory(owner, size); }
wityh the custom inventoryHolder
@carmine hinge yes you only unscrew the PSU from the case
don't unscrew anything ON the psu
never do that
only loosen it from the case
i did that one time to install an alternate fan my case came with
dont drop any screws in the psu lol
probably was a bad idea
lmao god i hope not
o_o
.kill miclebrick
grabs a automatic pistol and riddles miclebrick's body with bullets.
nothing chase that will work
a filter is not a fan!
if you pass an external inventoryholder
I installed that