#general
3141 messages Β· Page 1272 of 4
steak wrapped in steak with 5 hour energy sauce
i dont do 5hr anymore
10hr
what changed
improving health lol
are you even alive if you're not dying a little
ffffff
I've gone many days w/o caffeine, but im getting a little from shakes i drink, and occasional sips of a monster. a can of monster can last me 3 days lol
i eat pepsi
so ive broken the dependence fully
why were you on 5 hour energy anyways
i am heavily addicted to sugar lol
i need at least 3 cans of coke a day or i'll start insulting random plebs on the internet
i imagine getting crashes from 5 hours
crashes come from sugar, 5hr doesnt have sugar
so you dont crash on them
sugar versions of red bull and monster, sure
yes, a "crash", is from a massive blood sugar spike, when that blood sugar "crashes" back down, it can go lower than your baseline
same thing with "sugar coma"
ie eating a lot of sweets then crashing later
Life is a drug
aikar rap, aikar rap
eat food, its cool dude
having to get a new laptop battery, i had noticed my frame was coming apart months ago, but i thought it was just wear from usage in lap most of last year, then fans got really high over weekend so went to dust it out and noticed it was due to the damn battery cells swelling pushing the case apart
I smack energy drinks because sometimes I can't stand the taste of coffee
but fan was super dusty and pet hair got ain their a good bit
bad batteries on laptops suck
If they expand, you need to let the gas out by poking a hole in it /s
oh yeah
i forgot
just be sure to avaoid the 5 foot long jet of fire that comes out of it
If jet fire is coming out of ur battery it's not a battery
TIL: dollar is also a unit.
Murricans and their weird units smh
Wdym
A dollar is a unit of reactivity for a nuclear reactor, calibrated to the interval between the conditions of delayed criticality and prompt criticality. One dollar is defined to be the threshold of slow criticality, which means a steady reaction rate. Two dollars is defined to be the threshold of prompt criticality, which means a nuclear excursi...
did wikipedia do a redesign?
it looks so much more simple now
oh nvm thats a mobile link
Lol
Weird
I have a script to redirect mobile wikipedia because people keep linking that -.-
Windows wtf
turns out
fifjdjrifjrjthrjrhrgrhfhdjdhdhdhdn hfjdjfjdjrjfufjrjfjrjrjrhjfjfjfjcjhhfhfhb brthbrhgrg um nur b yfhh b cdfdvgot fyidhguyshrvfhd bfnfhcjrjtj du fjneshfjjrjhuri
if you navigate to \\.\globalroot\device\condrv\kernelconnect in a web browser
it crashes windows
the more you know
try it
i did try it @woven otter
lol
anyone know why?
Yeah, there's 1 path that makes windows show you have corrupted your file system.
And forces disk skan on boot.
And other one causes this crash.
Because windows doesn't handle some missing parameter somewhere.
damn im gonna make an epic .bat file to get out of situations
run ransom ware.executable
Making PR to Paper be like:
lol
jk <3
execute
???
/execute is best
whatβs that
did the guy got home then
I can't look but i think we still sub 100 ^^
Wanted to do stuff today but crashed at a friend's
Summon MachineMaker
imagine dealing with paper prs tho
I would argue the experience, even with the sad delays, is still nicer than dealing with md5
And we will get rid of the backlog eventually
my favorite minecraft command is /ban-ip
Mine is /stop
ew
Not for long. 
90+ to go.
still waiting for some answers
drugs are bad mmmkey?
Hello, How can I generify my method ?
Add the generic param to your method
public static <T> Something<T> name(Other<T> varname) { ... }
Ye
show approach. pls no screenshot
( I come back 5 minutes )
half way done.
Remove the wildcard from.the return type
replace ? wit T
if you don't provide a Class param the type will be determined from the required type ("left side")
which might not be ideal, but might make it easier to use the method depending on your use case
but I guess Object is the only restriction here
so whatever
nvm
I'm talking nonsense
I would like to know how to apply the type when calling the method
but it's weird that you catch reflection related exceptions
MyMethod<Type>(args)
E
What does that emote even exist?
May represent digital certificates in public-key technology.
Epic.
why is this static
for getting from cache as static level ^^
Class.<T>method()
and the second one has two generics


Aber omg hi
my professor gave the most confusing assignment. my whole group is laughing and meming. send help
I was close enough
gelp
you were correct if it had been kotlin, mini
Join the laughing?
Ha! I blame kotlin

confuse your teacher back
classic aber!
@minor badge ur so eloquent
occasionally I post this around because it's helped me a lot (and it's a really funny/entertaining read) but this is an excellent book about the GoF design patterns: http://gameprogrammingpatterns.com/contents.html
just reminded of it a couple days ago
lol
But, said nicely
@peak ginkgo i dunno abt that
they created OOP as we know it
Aborigines didn't build shit
ive just learnt that an almost but not decidedly friendly face is best when talking publicly about something
hello
O gotta find that sketch again, think it was Steve hughes

Design Patterns wasn't inventing things, it was documenting existing in the wild things they thought were worth formalizing
right, it's just that those four authors were, if memory serves, some of the founding fathers of modern OOP
design patterns is slightly unrelated
but only slightly
The three that have wikipedia pages have their most notable contributions being writing the book
You're thinking of Alan Kay
hm, interesting. Wonder where the accreditation comes from
Alan Kay got his PhD in 1969 with a paper describing a language called FLEX which then evolved in to Smalltalk which is what all the other languages copied OOP from
nice lol
ah, Design Patterns was actually modeled after A Pattern Language
fair enough, TIL!
either way, Game Programming Patterns is a fantastic read
and also free
and also short, and also funny
Alan Kay is the one who came up with the term "object-oriented programming" even π
the reason I mention it is because the double buffer pattern saved my arse less than a week ago
I had async threads shoving packets into a buffer which I occasionally used yet another async thread to empty out/process
solution was to fill the back buffer with packets, swap buffers, and empty the front (was previously back) buffer
brilliant design
solves all sorts of sync problems without needing specific collections or synchronized
Or just use a ring buffer π
Or, if you want to get really fancy https://lmax-exchange.github.io/disruptor/
there's a bnch of different solutions, yeah. Double buffer is super easy to implement, though
and ring buffer may fail
Ring buffer can only "fail" if it fills up but even then you can choose what to do, either overwrite the oldest entries or block
plus it isn't quite designed for a that kind of application
it's close
that would be the problem, yeah π
double buffer uses more memory, which is a potential downside
I think ring buffer is literally one of the textbook solutions for a non-blocking queue
though Java's GC helps a lot
there's a few instances in which a ring buffer wouldn't be ideal, or a double buffer is more ideal than a ring buffer
btw you don't want a solution that doesn't have backpressure, generally
it's not about what's not ideal, it's about which pattern is more useful than another in the given situation
backpressure being it blocks when full, in this case
I'm aware, yes
there are a few cases
the example the book gives for a double buffer is excellent, I think
fill a back-buffer with pixels, swap buffers, empty the (previously back)front buffer onto the screen
obviously Java doesn't quite work like that, but you can translate concepts easily enough
double buffer is better if you have state that you build up incrementally and depend on or even mutate other parts of the state while generating a new part
which is something the book touches on in the "Design Decisions" portion of that page π
double buffering is a good fit for an ECS too
though I don't believe mutability is explicitly mentioned
Although I guess it's not quite the same pattern there come to think of it
It's an easy solution to thread safety when trying to run systems in parallel that need the same components
many ways to skin a cat, ultimately
Speaking about skinning cats
tradeoffs to any solution
.kill electroniccat
snacks on electroniccat's dismembered body.
I will shit on your rug
lol
cat will ghost if pinged
that is what his nick says, yes
yes but does that mean he will not respond or does that mean he will become a ghost and fly away
how i download paper 1.15.2
does that mean if we ping him he will go away?
thx
by downloading 1.16.5 and updating
ffs mojang just had to update again didnt they, just as .4 is ingrained
ur welcome
I asked them to drop a fix for those issues, knowing you'd suffer from it
cat β€οΈ
yes
but can it run crisis?
you're a crisis
That was not very cash money
fix boosting service
are there any alternatives to rewardpro does anyone know?
wat is a rewardpro
rewards for pros
heh
since proxi called my code "the worst she has seen in a long time" the only logical thing to do is make it worse
π
proxi is the worst ded
very rood
looks like an intellij logo
md you should work for jetbrains as a splash screen designer
hmm yes I didn't hear that joke yesterday nope
I think it looks cool md
md you should work for jetbrains as a splash screen designer
(incase you mist it the first time)
Yea, do a few like that
and then totally flip the design around and blind people for a release, either with the colors or the sheer disgust as you look at it
only for a pretty one next release
looks like threejs
code2fart
How to get the class of a generic type (in order to instantiate this), with reflection ?
eeermm...
you dont but you do and don't
that data is not persistented

iirc, there was a hack to try and pull it off which gson uses, but, it's unsupported, expect massive issues, etc, etc
there is AnnotatedType and shit but its... not always possible to infer at runtime
typetoken works tho ig
Hi proxi
Hello, sleepy claus!
no!
weebs
What
Uh okay.
no
hello aber!!!
smh it's still morning
isn't bluely underage?
I might be misunderstanding that emoji
Oops all my organs failed
well it's either now or later
*now or never @woven otter
no
People have gotten their discord accounts terminated for joking they were 12 btw
Js
It was a typo
that's why you say you are 11


Ded back at it again being dum
It's very personal.
Ok mr dumrtp
Ok Mr I only made api cuz idk how to implement
Ok mr never used quantum
Quantum deez π₯
huh which one the good one or the bad one
Quantum nuts π
Oskar, no
Yes oskar
Bluely, yes
Steam is just a black screen for me
is that a sign that I should do taxes instead of playing games?
its tuesday
pay your internet bill
always maintenance on tuesday
wow you must play a lot if you know that
I think it might be time to release quantum v1.4.3. I added a crazy optimization
my Steam account is like 8 years old and I didn't know that
its instinct to ded
oh fun rn im stuck with a memory leak
where the hell did tuesday come from as the game day
https://steamstat.us/ doesnt seem to be down now tho
everyone does maint on tues, so you prob cant even switch games when your game is down lol
game releases are on tues, console release for xbox iirc was a tues too
and why every damn week
it was just a steam client bug
ik dota services are usually down late at night on a tuesday tho
as is other parts of valve/steam
easier for scheduling work. get customers use to a set time. devs are prob operating on 1 or 2 week sprints, deploying updates every week or 2, and on non code deploy, it can give operations time to do maint tasks too such as updating servers
do you really need to update code every week
you've been going without updates for months /s
not talking about mc lol, bout larger games π
ik im just messing with you
but yes most code places ship bi-weekly or monthly
much easier to keep incremental releases
back when i started my job it was quarterly deploys, and it was everyone go into the office at 4am with mission control like prepping of a launch
very scary when so much is changing all at once, harder to track down what caused a regression
wat
no wonder you have issues if you deploy at 4 am
how are you supposed to sleep lol
okay, that was mostly a joke, but still
big brain
thats where his addiction from 5hour came from
o_Q
DOUBT
DOUBT
i watched all the starwars movies in the last few weeks and you know whats funny?
still you
the story degrades as the visuals go up
I really liked 1-2-3
nice visuals, OK story
or it might just be the nostalgia, idk
the visuals were tresh in those, well good for the time
I still haven't watched a single starwars movie
7 and onwards though... thanks god Mandalorian exists to restore hope
1-2-3 were released after 4-5-6
ur old
you can clearly tell the difference between them tho
that was 10 years ago lol
*had issues
I just hit the 10 year club at work
you don't even have a job
existing is pretty exhausting in its own
fair enough
lol that reminds me of that dude that grades restaurants and he said "today was very exhausting cuz i had to visit 3 restaurants"
imagine having 3 meals at a restaurant a day and still complaining smh smh
and getting paid for it
What's everyone's feeling on geyser
I was just about to install that today actually
well you don't wanna ask geyser's discord if it's good or not...
It's just to link bedrock to java no?
they are not exclusive drek...
wym not exclusive
Last time I tried it - good, but still lacking.
geyser can run on top of paper
Yes it is
it's a plugin
well it has to convert the packets from bedrock to java and visa-versa, and the bedrock protocol isn't even fully documented, so there are obviously gonna be problems
Nah it launches on paper
@visual egret almost as if bad karma i now too have to record myself for 5 minutes saying some random shit and send it to my english teacher every sunday
I thought it was a proxy like dragonproxy
It's a proxy
I think it can run by itself too so anyone can make their own whether they own the target server or not, but yeah it's a plugin too
gg nub have fun

nah
windows movie maker
not that I'm complaining or anything, but any reason there were no builds for two days? I'm just used to being told I'm 1,000 versions behind every time I check lol
don't pirate the entire cc suite

yeah nobodys paying 50$ a month anyways so worth pirating
@ mods

piracy bad
fixed it
π΄ββ οΈ
no software is worth pirating if you have to execute a random binary
i remember there was a guide on how to run photoshop on linux
and you had to pirate photoshop for it to work 
well yeah cuz you cant install it otherwise
cuz the installer doesnt run on linux iirc
ik
well the creative cloud or whatever that trash program is called
when linux > windows for normal people will we get LSW linux subsystem for windows
it's called "adobe virus trash"
try quitting it completely. then tell me it's not a virus
its just really invasive
task manager?
(at least on a mac)
well good luck on a mac
it has about fifty processes running that will keep spawning each other
i disabled it from starting up and it still somehow manages to start up
like cmon bruh fuck off
it. doesn't. die.
yay! stable worldedit for 1.16.5!
well yeah, and i was running the beta before, but still
also, yes, that was the only change TO MAKE IT RUN ON 1.16.5. But that change was made to the previous beta build, so there were other changes from last stable->that beta
what about it
what is that
go ahead, try and find one .
am not helping the competition
sounds like ur scared
That is a computer trying to draw anime girls and coming up with a GAN monster that looks like it's from a horror anime
That's some madoka magica shit right there
She has a friend https://www.thiswaifudoesnotexist.net/example-95632.jpg
i went on that website
and uh
there's a lot of amputated anime characters on there

computers like amputees 
Weebs
It doesn't really understand what part of the image is a person
Well, none of it is
correct
artists are about to lose their jobs thanks to ai lol
I know some of you think that anime girls are real people, but they are not
Finally found a texture pack that doesn't require an RTX card to run. Can't wait to run it on my intel HD 520 graphics.
https://www.planetminecraft.com/texture-pack/rtx-ray-tracing-pack-for-java-1-15-foundational-and-decorative-rtx-pack/
umm
thats not how... texture packs work
you can run texture packs on a raspi
will it matter? no
i mean your fps will die
Rtx texture pack? π€
Obsessed with raspi
Just use the path tracing shaders from sonic ether
^
adfly links
Ik, I just wanted to try it for fun
might as well be a virus, no thx
party you unblocked me after i joined your discord 
what does this mean
he wants 2 monitor u obvi
I got tired of seeing blocked messages on my discord
What about ultimate immersion texturepack? Have u guys tried it?
I like my texture pack tbh
No I use vanilla textures and my resource pack
ok
is there one of these for paper/spigot/bukkit? I wouldn't be surprised if mini has one somewhere forgotten lol -- https://geysermc.org/config_editor.html
lol imagine enforcing a 1024x server resource pack
Chorus
not quite the same, but that's even cooler lol
do you really need a editor for yml files
lmao
inb4 through an ingame gui
that's also an editor
just use vim ?
That's also an editor Proxi
conclusion: brocc dum dum
just use sed duh
brocc dumdum!!!! How will he ever recover
No but itβs kinda cool
what
chorus
dont you all just love it when your media keys die
no
so
ive slept for like 30 minutes in the past 24 hours
I think it might be time for a coffee
Did the minecraft discord go down for anyone
The server vanished and when I try to rejoin says 650,000 already in
Social Media / Important Links--
Discord: https://discord.gg/GrDwaNr - Stay in touch with the community discord, vote on polls, and apply for moderation!
Twitter: https://twitter.com/noobelli - Get personal updates from me and the occasional meme!
Twitch: https://twitch.tv/maxillatv - Make sure to follow with notifications for live, epic content...
enjoy
Github is shitting itself again. Executing my requests, but redirecting to 404...
no more drama in #paper-github
THE INTERNET IS FALLING APART!
trig, I will set you on fire
No, just, people are dumb and like
no matter what I do, people ignor eit, so, I don't care, am just gonna refrain from helping people
jumps on kash
Also, GH keeps showing me big red banner that my academic discount expired, but gives me 404 when I try to downgrade...
.rekt
I just signed out and signed back in and it says maximum number of guild members has reached 650,000
Interesting
you can follow the releases feed
You need level 10 to be able to join that channel
Hello!
how tf do people even get to level 10 lol
Itβs a less spammy and somehow able to hold a topic βfrom time to timeβ
spamming?
Hello?
Or you can go go channel like technical Java
Or realms and provide support for 12 year old
Counts for talking credit too
Can i find devs here?
Do you have a question? To ask in help channel
If you are trying to find dev for work, this is not the place
where shall i go?
Idk π€·ββοΈ
hmm
Spigot has hiring section.
lol, they banned me for no reason
What's the right way to unstage "deleted: path/file"? Usually I unstage modified files with git reset path/file.

reset should still work afaik
git restore?
hmm it doesn't seem to work ..
unless your intent is to restore the file from the depths ^
will try
@warm anchor Shall i try wit anoter account??
lol if you got banned from spigot there's almost certainly a reason
git reset -- filename
yeah ban evading is even worse
I donβt know spigot enough on their policy π€·ββοΈ
@olive garden bruh the last star wars movie contradicts itself so may times lol
I just don't want to commit the deletion yet, so just unstage ..
Nerd
Weeb
The -- is key

git reset filename does fuck all

git reset -- filename works
If they in some reason track my ip and accounts:
- its illegal
2, the tos is gettin em
which one is that?
git status; echo "#### Restoring ####"; git restore file; git status
On branch master
Changes not staged for commit:
(use "git add/rm <file>..." to update what will be committed)
(use "git restore <file>..." to discard changes in working directory)
deleted: file
no changes added to commit (use "git add" and/or "git commit -a")
#### Restoring ####
On branch master
nothing to commit, working tree clean
i mean every company tracks ip's these days
it isnt that much of a big deal
Rise of skywalker
FYI you're an idiot
have fun
how is tracking someones ip illegal again?
Doesn't work for me :/
git status; echo "#### Restoring ####"; git reset -- file; git status
On branch master
Changes not staged for commit:
(use "git add/rm <file>..." to update what will be committed)
(use "git restore <file>..." to discard changes in working directory)
deleted: file
no changes added to commit (use "git add" and/or "git commit -a")
#### Restoring ####
Unstaged changes after reset:
D file
On branch master
Changes not staged for commit:
(use "git add/rm <file>..." to update what will be committed)
(use "git restore <file>..." to discard changes in working directory)
deleted: file
no changes added to commit (use "git add" and/or "git commit -a")
as I said, I like 1-3 the most (and the Mandalorian series, ofc.)
I have seen the other movies as well, but they are meh
Their stories are meh yeah
lol, i live in the trust worthy country (Sweden)
det Γ€r helt lagligt lol
lite
worked thanks.
inte mycket'
Woot!
GDPR gΓΆr det lagligt att lagra IP-adresser fΓΆr tillfΓ€ller som ditt, nΓ€mlig nΓ€r du Γ€r bannad lol
Lycka till, du Γ€r inte vΓ€lkommen pΓ₯ Spigot tydligen 
hΓ‘t nem szeretjΓΌk ha elkezdΓΌnk mindenfΓ©le random nyelven beszΓ©lni?
men inte pΓ₯ dc tho
Smth smth english pls guys
tanulj meg magyarul boomer
sorry mini πππ
dΓ€r Γ€r det emot de3ras tos
how are they gonna track your ip over disc
let's go back to english yes
did you inform them of it?
well iddk
ok i will create another account for it
not only does discord not share your ip because that would actually be illegal, but it takes a lot to be banned from spigot
cc @muted storm lol
Like?
The only way you'd be able to have your IP leaked is if you were sent a URL and you clicked on it.
death threats are usually about as far as youve gotta go
true
.kill proxi
gags and ties proxi then throws them off a bridge.
Pls no ban
π³
Wha
Kinky
I am sure thatβs someoneβs fetish
Man what's the point of gagging someone if you're gonna throw them off a bridge?
lad is planning to evade spigot ban, choco
Lmao
is your problem now 
Fucks given: 0

Imagine asking in a place where spigot mod may present
Hello there fellow Hungarian. π

hello simon !
ππ
is there any deeper meaning of -- in git reset -- filename or is it just for the case to unstage deleted files?
Hello proxy! π
hey Z750 are you about?
-- is stop processing arguments.
How are you?
flags etc.
In git also usually means limit to files only - don't interpret it as argument or reference (branch, tag etc).
Jamie, not online in discord
ah, pity.
Okay thanks. I didn't know that. π
TIL! Thanks for daily enlightenment, Bloodstone :-)
anyone knows what tf this means?
- this is the paper discord, not the velocity one
me when it says the error
this is a maven issue
It tells you what's wrong
- It literally says what it thinks is the issue in plain english
Lol
whats wrong doe
No, this is a "your plugin name sucks" issue
That's literally nothing to do with maven
Dude it says the thing.
please learn to use your eyes
Read it.
I want to make moves on https://github.com/zachbr/Dis4IRC/issues/52
if it's a bug with anything related to maven, it's a bug with the velocity annotation thing, nooothing to do with maven itself
use them, oskar
wow proxy you just gave me nightmares
i still dont see what i did wrong
Which, if there is an issue with their thing, speak to the velocity peope
it tells you what you did wrong
But, as we can see from the info you've provided, the name you're using is invalid
Does the discord bot even have persistence rn?
"IDs must start alphabetically . . ."
don't know mini, but removing the existing functionality is a good start regardless.
I know Z stores bot statistics Mini.
yeah thats what its telling me but how is not valid
But not sure how much more persistence there is.
its starting alphabetically right
How the fuck can we tell you
We don't know. We don't know what your ID is.
Since you don't need it for a bridge.
You've not even shown us what name it's reading
A cut-off screencap of two lines of an error.
your persistent "lets flood the channel with spammy screenshots of stuff I don't understand and provide literally 0 relevant information" is honestly tiring
I tend to agree bloodstone, the proposal is more to preserve existing functionality to some degree
That's a good PR.
@visual egret if you don't paste WHOLE error and show us your plugin id (from velocity.yml or whatever), not much we can do.
Being able to set your avatar from IRC would be good.
It's not a PR (yet)
Whatβs oskars new project now?
oh i see
Oh it's just an issue.
what should the default avatar be tho?
a potato
i didnt know it was referring to the plugin id
Guild logo?
i thought it was something i messed up somewhere else
Hm probably the Discord default.
Maybe a grey one?
This is why we said it was the plugin ID and to read the error.
oh okay, from a quick google search -> https://discordapp.com/assets/322c936a8c8be1b803cd94861bdfa868.png
Folks are fine with helping but you gotta help yourself a little bit or it makes everyone frustrated.
Yeah that's a solid one, jamie, IMO.
Java on Truffle, also known as Espresso, was just released:
Checkout the fully meta-circular Java bytecode interpreter for GraalVM. https://t.co/j8dub4HBow
Wooo
I'd just use the guild logo tbh. So Paper logo or smth.
sorry i just want able to figure it out
People get confused about the "bot" and if it's a Paper icon they'll think it's a real bot.
Also, I think it is already a thing in the bot.
You can now use the JIT for AOT compiled stuff on graal
Since different channels here have different default logos lol
i thought it meant id as in something in mavens pom.xml
Obviously GC makes that dream really meh
Sometimes you gotta slow down, step away from the computer, get back, and carefully read the error to figure it out.
well I'll make it configurable, but it doesn't make much difference to me what discord shows lol
If you're just skimming/not reading the error then you're gonna have a bad time.
Sometimes banging your head on the wall while you step away.
Haha it will when 900 people are like ARE YOU A BOT?! all the time :)
people do that anyways
Dude people are dumb
Would be cool if we could modify the bot tag
Yeah but they'll do it even MORE if there's a Paper logo in front of it
:/
Yeah that would be nice.
(DiscordBot) https://xkcd.com/1782/
Most folks/younger kids don't know what IRC is. And if every other "bot" on Discord is being an actual bot, then I can see how it's confusing.
what about having the default logo say "IRC"
Cat - add to the name (NOT A BOT)
jamie (NOT A BOT) bot
God, I wish somebody could modify that to fit
ocelotpotpie I'll just call them morons and continue with my day :)
I get frustrated with people saying the same thing over and over but you gotta think about it from the perspective of the user sometimes.
yea, well, ur ginger
it's k
Man ocelot is super frustrated in help chat then coz itβs mostly same question over and over lmao
I just say the education must begin
Haha you have no idea, EterNity :)
rm -rf discord.com
People donβt have the ability to search chat history
sexism, racism, etc
would be fantastic
But, gingers are fair game
people being unable to read is a universal constant
PEBKAC
like why do we even teach reading in school when nobody's even going to use the skill
is jamie a bot!!!!?!?!??
We should replace reading in school with catapult construction.
Hey Google, where can I dump big, dumb cats?
reading has been deprecated and will be removed in a future major release of humanity
ya, let's cancel md!
'I got this error. This thing is broken'
"Okay, what was the error?"
'I don't know I closed it'
-98% of tech support cases
would fanfics survive?
I hope not.
I mean, I really wouldn't be angry if they didn't, but...
?
They would
fanfic is the third lowest form of entertainment.
They most certainly would
what are the first two
I'd end #1 after 1.8
Can we just deprecate people instead
That works too
aren't programmes like x factor, britains got talent, the voice, wtc considered reality tv?
s/wtc/etc
Correction, <jamie> aren't programmes like x factor, britains got talent, the voice, etc considered reality tv?
Caution: this library is deprecated. You should consider using com.google:great-robot-overlord instead
the lower the form of entertainment, the better
Sounds good
good night friends 
Yeah it's a broad fucking genre.
good night :3
night proxi
They actually don't call most "reality TV" that anymore. They call it "unscripted".
Because Reality TV isn't reality.
And 90% of the time it isn't even unscripted.
Night proxi Schlaf gut
so you considered curb reality tv?
No.
vielen dank aurora
:p
I was under the impression people just watch it to pass time
as in not to be taken seriously
I liked jersey shore
IS THAT A CHICKEN?!
It was hilarious
I tend to avoid idle TV, tbqh
are you a chicken?
Like, I'll watch a movie or a tv show for chilling out once in a while, but, like, I couldn't do it all my off time, I'd just get bored
I can't watch reality tv if my life depended on it
Fun when the whole server rig decides to take its own life and wipe everything. even the backups ;D
ITV2 late night - Family Guy, America Dad once in a while
they're not really backups if they're stored on the same machine
ded watch jersey shore
tv boring
yes π’
We'd be able to feed a family for a week... or two...
it's only rude if it's a lie
That ain't true.
truth can be rude
^
psh
maybe that's why some truth is banned
I'm just waiting for the day we all manage to meet up and DED turns out to be some huge ass body builder who pulverises us all
unlikely
Why would he pulverize everyone?
he actually looks like a homeless guy
Oh I see.
ocelot you havent got back to me about picking up my vape juice for me
No can do, good buddy.
what's up with Z? is he taking a break or something?
wut u mean
I haven't seen him for a long time
I've seen Z a week ago when Cat quoted something they said.
But since then, nothing.
well yeah... but had it stored on a diffrent harddrive, but yeah..... should have had it on a driffrent system
Cat is seeing things again?
@Vicarious#0001 was typing, and, their nick, so, erm...
hi
ik
HELLO
ew, real broc
hurls
A BUNCH OF IDIOTS WITH TOO MUCH TIME ON THEIR HANDS.
"YOU ARE ALL UNFUNNY." - EERY
"GO FUCK YOURSELVES." - OWSLA
"BEST MUSICIANS EVER. 11/10." - SPINNIN' RECORDS
"THIS MAKES ME MOIST." - MYCUTIEM
@spiral robin π₯Ί
6 hours of class done, now doing work 
gonna go out this evening and get the pencil before i change mind 
Are role colors broken somewhat on mobile for anyone?
I canβt seem to get some peoples names in chat to show up as their correct color
Looks to be discord cashing issue
It will update once forced aka click on name or profile
Eternity 
aber did you become pink recently-ish?
Or were you something else until recently?
Or do I just forget?
i just wish we could test an ejection chair with aber
Must just be the multiple discords thing then.
I literally just woke up.
Having people across multiple servers with different colors is still jarring for me.
an ejection chair, you know, like, the chair in militiary aircraft which have like a GTFO switch
Right, of course
typical blue le sigh
β€οΈ
March 16, 2013: 20K views!
~ Lyrics are below! ~
Song: Eject, Eject, Eject! + Breaking and Entering
Artist: Tonight Alive
Album: What Are You So Scared Of?
Lyrics:
There was a time when the sky
Held the answers for the things I couldn't find
But what happens when you're blind?
A shooting star once said to me
That nothing's really what it seem...
weeb









