#general
3141 messages ยท Page 1185 of 4
Just the Slovenian community being kinda epic with spamming invites daily to everyone.
Its a gmail screenshot @limpid comet
ohw tf u know
ok mr gigantically huge brain
3 reports
i open gmail once a month
Correct.
To switch to my college student gmail
/i/ gang.
thats a good point actually
Can't be content-type racist
I'm using i for input. 
I hear GCE's a better bet but I'm not moving
Implying i have the money for an amazon s3 bucket
Hold on
If your bill isn't over .25 they don't charge your card
They'd lose the difference
So you get a funny "Waived"
haha pog wtf
i think im still gonna write my own thing cuz ive got nothing better to do
probably open source it and get internet points
Last month I did a lot of file IO
To delete somestuff
so my bill was $3
:<
bandwidth
owned
i assume ur just using a sharex config
Yeah, ShareX has it natively
cool
Well, you have like 0 traffic in that case.
Cloudflare handles the traffic
Abusing the magic of a caching service
cf workers?
Not even workers
exceedingly based
freeloader lifestyle is the best
Don't the CF cache only allow caching of html?
At least according to the ToS. 
:>
alright name some languages
they don't gotta know what doesn't hurt them
im gonna make a wheel to spin to decide what i should write my file thing in
bluely needs programming languages to do the sharex server in
based jovan
dafuq
I've changed mob caps to lower and damn it's so easily spottable, lol
can somesone decide for me:
- java
- js
- ts
- go
ts
js
go more like no
go is pog
its just JAVAscript

Using JavaScript without wanting to die.
"Get this emoji from...
Rust Community"
okay
I know enough rust to know that fans go brr when you run cargo build
i was considering putting rust on my list
Sometimes I do it just to hear my computer purr
but i dont know it and it scares me incredibly
^ This
my fans always go brr
its the only sound that doesnt echo in my apartment
Anyone knows if the plugin CustomCrates CSGO still exists?
proxi 
michale !
give me an original name

filebox is taken right

Bluebox
blueball ?
Filely
i hate both of you
idk
Update on the pnap adventure
I had a pnap server
And never paid for it?
So I can't use my main email
Either he lifts it like the chad Jovan is

Or I just slap a 2 on my email
don't
gm
brocc
you want to make sure you're not banned or have something sent to collections
ur the only reasonalbe person here
yea
i am making a file hosting program pls give me name
bwoccowi
@twin lagoon It gets better
Okay. But, are you familiar with The-Sock-Drawer account?
ok 2 pl said blue box il do it

just pay for it dejay
i ran npx express-generator-typescript --help and it started a project named --help
ffs
LOL
Gg
LMAO
RM -RF --HELP JUST OPENS UP THE HELP
gg
do
Quotes?
cd --help/
quotes didn't but ./--help did
--help/
yeah probably
this is 100% ur fault
Man page
u really think something called express-generator-typescript is gonna have a man page
not our fault its stupid ?
The flag would be after npx then
Me to PNAP:
"It's 8AM local time, would it be easier for me to call in and ask about [X]s bill as the account contact?"
u guys r just being mean
PNAP:
"Actually, you're correct, let me call you real quick. Can you type in your number so I could call you? "
good morning dejay x
bro what is it with that guy not being able to pay invoices on time
spam him on discord already

Helo prรถxรฏ
proxi ๐
Lol did u really expect Swedes to have the mental capacity to put on a mask?
Sweden has a collective IQ of 5
its sunday ?
itโs Sunday
gm Proxy 
Yes
one of these days youll spell my name correctly
ok fuck dis proxi do u think rust is good
yes bluely
guess im learnin rust
Blue u donโt know rust
have u seen how much rust i write? lol
no adn no
blue out here acting like he got the time to learn rust smh smh
i dont have a job or any real responsibilities yet
rust isnt the lang u learn in an evening fy
perfect time to learn rust
fyi*
Spigot plugins !!
took me some 1-2yrs
hasnt rust only been around for like 3 months wtf
Rust is very very different from everything youโve ever used
no?
I can almost guarantee
Blue do you know c
rust 1.0 was 2014 or smth
a bit
i learnt it not long thereafter
Proximyst learnt it when she was like like 12 years old bruh
admittedly there were little resources, and those around were bad, but meh
But ye donโt expect to be able to use it in ages lmao
idc
it sounds cool i wanna learn it
that was a very suspenseful series of edits
bluely is never gunna make a tags pr now

clion has rust support ya or is that something else
Good luck. Youโll have to make good use out of those 3 brain cells of urs :))
you said like twice
like elenelelkeme eiaks Kant W a
ill rewrite tags in rust just gimme a day to learn it

Brocc is just a native speaker
brocc 
Native speakers are the worst at their language
Also we should all learn crystal
@limpid comet so basically, to learn rust, you first forget everything you know
Awesome language. I hate it
then you learn lifetimes & ownership
and relearn it again and again becuase you dont understand it
Proxi makes it sound as if blue is becoming dr strange ๐
ok thanks proxi
u guys fucked up
u made it seem like i cant learn it
so now all im gonna do is write rust code
debugging network stuff is such aids lmao
u can but it takes time
I mean you probably can. We can check in on you in 18 months or so
Then you can show us your hello world !!
rust is like vulcan
Red Hat continues to dig CentOSโs grave. https://www.phoronix.com/scan.php?page=news_item&px=Red-Hat-CentOS-Pleading-Cont
wat ide doe
no, dejay
thats a macro
what is this microsfot word
name!() = macro_rules! name { () => { }; }
Herre min skapare
and macro_rules is a builtin
Vรคlsigna bluely
its a macro yes
its not like crystal doe
cause errors dont suck after using them :)
theyre only very bad
how would it look like without the macro?
u h hh
much worse
fn main() {
let out = std::io::stdout();
let mut out = out.lock();
out.write_all(b"Hello, World!\n").expect("no stdout"); // may panic!, which yes, is another macro
// lock is soon out of scope, so released here
}```
#[macro_export]
#[stable(feature = "rust1", since = "1.0.0")]
#[allow_internal_unstable(print_internals, format_args_nl)]
macro_rules! println {
() => ($crate::print!("\n"));
($($arg:tt)*) => ({
$crate::io::_print($crate::format_args_nl!($($arg)*));
})
}
holy
wtf
I can understand () =>$crate::print!("\n")
that makes sense
$($arg:tt)* is var arg?
When your macro calls other macros
$(...)* is for every ..., if any
$arg:tt is an arg called arg which is a token tree
My favorite Rust guide https://rust-unofficial.github.io/too-many-lists/
Learning Rust With Entirely Too Many Linked Lists
Because yes wooo
println handles flushing for you
also nothing that stops you from making a macro that flushes print as well
use std::io::{self, Write};
fn main() -> io::Result<()> {
let stdout = io::stdout();
let mut handle = stdout.lock();
handle.write_all(b"hello world")?;
Ok(())
}
Hello world, the hard way.
Ok just gave me my prompt back
question
does anything actually use rust
or is it just used to make urself look cool
Yes and yes
There's a uh
yee
what is the b infront of the "hello world" doing?
Minecraft region file shrinker
byte
bello world
ah
yeah but who uses servo
:โโ)
haha servo
i t hough tit died
even mozilla doesnt care about servo
the team behind it is dead
It is cool stop bully
Bit more than CMI
this is a cool rust project
This is rust
The deno language is in Rust
ive always been curious about that
maybe ill try learning it for blue ball
i mean its just ts
but, like, weird
hahah wtf u can import from the web
Does anyone know how I can appeal a decision made on dev.bukkit.org regarding approval of an update? My plugin update was denied because it used "obfuscation not supported by their decompiler tools", but I don't use an obfuscator. They link a website to support.curseforge.com, but that seems to be dead.
How can I make players not able to flow magma near the spawn area?
I meant lava not magma, sorry
worldguard, I'd guess, that's the common one
so my dad added a network switch to our current switch and the entire network shat itself

Post the update again. 
ddos their server with update requests
I don't think I even can, afaik it rejects files that are the same to previous files.
https://i.imgur.com/wuLpVCx.png
Resubmitting is encouraged.
^ I've had to resubmit EssentialsX in the past
Not even sure why it was rejected in the first place, I didn't make any changes for the resubmission
Literally the same thing happens with the app store I hear
a wasm impl of... what?
dev.bukkit.org is currently in a strange position
Thankyou DarkEyeDragon
hm?
banned
try it, its fun
ahhh I remember when we used to bait people into tagging wiz
okay so for worldguard, how can I prevent the spawn area from players doing pvp
it says "it overlaps spawn protected area"
what says that
you have a global region and regions you make yourself
in which you can set flags
@wide chasm happened to fawe too
๐ค
where
Ah nvm nmf already replied
USA.

(DiscordBot) Kansas City metropolitan area A bi-state metropolitan area anchored by Kansas City, Missouri. (https://duckduckgo.com/Kansas_City_metropolitan_area?v=i&kp=1)
yeah lol
Just order it, give me access so I can overclock it.

do they just rehost nocix
5 IPv4 included lol
pretty sure that's nocix
looks kinda nice for that price
In world region, this is what I did:
- I did //warp
- I defined my first and second positions
- I typed //expand vert
//wand* I mean
Looks the same, price is the same... 
they offer no debian ๐ฆ

I require Zen3.
awesome
Our latest product, "Guardian" is now available for Windows and Linux servers. Full UDP/TCP support, pay-as-use billing, utilizing @cosmicglobal premium global network.
Quick and easy, deploy live in minutes.
https://t.co/9nYQZO0jSD
tf
argo tunnel alternative 
What's a kansas and why is it pronounced funny
Does stackexchange really not let you change your password/email? I can't find any options on this damn page.
Looks like to change email, I need to create new account, add it to logins on my old account and delete the old account 
Looks fun.
lol
questions even there
Very fun.
bloodstone 
@twin lagoon What if we buy this instead of another dedicated box?
https://www.aviatorsmarket.com/detail/aircraft-for-sale/1980-f-16-ab-block-20-mlu-palm-beach-fl-us/4137
Kinda weak bro.
oh it's cheap as fuck apparently
It better be.
In March 2019, Daher introduced the $4.13 million TBM 940 with autothrottle and automatic deicing
That's like the F-16/2.
Hello, best prison mine plugin?
.g best prison mine plugin spigotmc
Whats that
It's syscraft
Ok ty
Does anynody here use MMOItems and can help me with a bug?
ask the devs
We don't support premium plugins
lol
Michale 
hi brocc
I'm tired
I've tested like 4 different pain killers and the only ones that work basically give me a fever
so that's neat
hello oskar!
im not smart enough
hey citi
but zml is my zml, you know?
can't have them be both kash and z D:
Hi awuwuwuwuwua !!!!!!


sorry boss ๐
ok a big can of sugarfree redbull offset the tired
i am not extremely hyped
i am gonna run around the block naked while singing dangerous woman
brb
have fun
no you shouldn't be having fun doing that
no he should be crying
no u


kenny 

brocc no ๐
guys
no WHAT
ok i had fun
why did mojang add online/offline mode
also kenny absolutely sucks
that's something i can agree on
yes
wtf city
bet he smells like shit
okay at least city isn't as bad as michale
wtf
i am way worse
sorry city but you're wrong
mihclea
you can't be the worst at everything
wtf i simp for mama michael
simp kyori
cloud = good
exactly we r simpable
cloud is so hot
very hot
i just wish brocc wasn't a part of it
๐
but we're stuck with him now
๐
@quasi valley hangar wen
jk brocc we desperately need a clown in there
u add a nice balance to the high iq stuff in there
it's neat



thank you aurora 
today I ate brocolli
why
+x checkstyleMain ๐
I've removed a bunch of stupid checks from the cloud checkstyle because some of them are so bloody stupid
how do you get themes for intillij?
don't, just use the white theme
my eyes
although I currently use a material white theme instead
I think I just have the no protected visibility modifier rule removed
and the javadoc one for this project cuz fuck that lol i dont care enough
1.4.0 pog
this is the best vscode theme, prove me wrong
i use horizon
horizon white: ouch
horizon comes with like 8 themes lol
most vscode themes come with light and dark ones
6 themes*
oh wow sorry
horizion dark is beautiful
the text kinda blends in with the background on some panels
4weird
for example here it would be good if the text was brighter
Atom One Dark ๐ฅบ
that ones nice ^
is it me or are mac screens much better than other ones
oh wait i customised horizon
Typescript 
ts 
Tsc 
mac screens
Well, you have the retina displays and in general their displays are generally higher DPI than your cheapo LCD
yeah they are nice
their text rendering thing is pogu too
also bright
I much prefer it, usually not difficult to just angle away from a window
what's the best antivirus?
common sense
second to that
common sense & windows defender usually
windows defender
dark themes make my eyes go oof after a couple of hours lel
eww
light themes make me more focused
it's good as long as your windows is up to date
but i am l azy
uninstall everything except defender
also don't code in the dark if you care about your eyes
but does it stop like bad downloads?
norton are too busy making viruses to improve their defence 
turn on a fucking light you degenerates
papermc discord when someone mentions an AV
yes hallowhead
fucking basement dwelling neckbeards
common sense does
jroy want me to buy u a lamp for christmas?
common sense + windows defender = best AV
uh oh
and ur telling me i don't go outside

broc

brocc oops
jroy you go outside? wtf

lockdown
- adblocker
ur not supposed to be outside smh
It's a crime
not in london 
it is after yesterday
i don't go near people
i dont think you could

imagine having discord nitro
imagine not
i can imagine it

stfu
otherwise u cannot incendogay it up


yuck
rainbow
we were doing a practical in science and the fire was in rainbow
now "gay fire" is kinda a meme among half my class
Ok
ok
4weird
how old are you oskar
13
TOS TOS TOS
guys
his "dad" owned it
Do it.
listen
i already did this
my dad made the account for me

ive told you a million times
r u even allowed to share accounts
it was my """""""""dads"""""""" account
i wanted to talk to a friend
isn't that even more tos

and he made the account for me

smh
weewooweewoo
wheres that discord mod that's in this server
_INB4 bully warnings. _
the admins are the biggest bullies smh
WIZ 
have u ever interacted with cat
no a actual discord staff member
mfw
And I thought city was dum
wdym
that is so core team of u
next he's gonna start telling us about his people being opressed
why are you not redirecting!!!
huh?
quotes
anyway why would i break tos if i literally had a 30min argument with someone on spigotmc discord about it
quotes where?
Quote your key.
Oh no Oskar, you're not breaking tos, you've already broken tos
sorry, but what key

"opteco:pay":
ur dad owning the account is literally the most 2brain excuse in existence
same
IM SO PISSED
i owned it too
Your dad created an account that you used - breaking the rules - that he then shared with you, most likely breaking more rules
I say we send them out on a raft into the Atlantic
Or you know, just report them and let Discord actually do their job? 
under COPPA discord needs written permission for any minor creating data on their platform
doesn't matter who created the account
Or you know, just report them and let Discord actually do their job?
no
that's no fun
discord vigilantes need something to do
oi, someone getting banned
ignores my message
Can we stop ganging up on them, and move on?
(Just evade it via IRC - although I got no idea how the paper team would handle that)
hmm
evasion results in a ban, why even suggest that?
no <13 year old knows or will willingly use irc
i mean he ain't banned from paper
that's because no 13 year old has developed a brain
and only people with massive brains would go on irc
mean
humans don't develop brains until they turn 18
until then their head is just filled with pus
Using IRC is super easy, however it's a bit like using Linux
how do i use it then
well im 21 and have a very big high iq brain
im one of the smartest people around tbh
Download an IRC client, connect and done!
No need to create an account or something like that
why did you talk about this trick smh my head
smh stand for shaking my head
could've just got oskar banned and called it a day
I'm using Hexchat, but there are lots of others here. Weechat, andQuassel are others, just to name a few
:^)
yes, smh my head
bitchX too, as ocelot preaches about 
bitchx ๐ฉ
proxix ๐ฅบ
used to use it
for whatever reason https://i.imgur.com/bJLZ6zt.png isn't canceling command
it removes ""
if i add them
You don't even need an IRC client. Espernet has a nice webchat.
That's true
irccloud is the way to go
allows you to get annoying push notifs for ur phone
I mean, it's probs just recognising it as a string properly without it
broccloud
that's a fart cloud
toxic
irc is harder to use than discord
All you can do is go write/find a plugin to unregister that command or, once again, scream at the plugin author, or, find a better plugin
no
it's also UGLY
how do i join papermc discord via irc
no
good god that's disgusting
wtf
what does this even mean
join #paper at espernet
#paper-dev and #paper-help are the two others that I know of
voiced is basically sorta elevated
#incendo is the most important channel on espernet
too complicated ๐
that's just how it is
Doesn't really offer them much outside of not being muted when you enable channel moderation
๐
i legitimately was not able to figure out how to join paper's IRC last time
and this man manages to do so
no IRC is dum
micheal dum dum
Good thing espernet doesn't have the stupid five tier system other networks do
o
michael that is actually embarrassing for u, i hate to say it

micheal im 13 and joined irc how old are you
you should be ashamed
- download a client
oskar you shouldn't be on discord in first place shut up
then join esperent #paper
You don't need to download a client, oskar.
im not on discord micheal
you spelled #incendo wrong
(note that discord's minimum age is 16 in many countries)
but ok
Norton's has been removed - that's a good savings per year
fr fuck the UK
Well, the age of digital consent is what matters
paper
#paper
oh
hi micheal
Agreed, fuck the UK
easy as shit
Hi!
oh it looks like fucking ass though that's enough cya
wait this leaks my ip
Those damned people in the office tryna ban our pron
No shit
Mmh, I must say, my dad just got a quest 2, and man, lenses have come a long way since my vive, you can actually read text now ๐ ๐
Well, basically, yea
That's why you should use an bouncer and use it as an advert
Imagine how cool Oculus be if they wouldn't be facebook
^
IRC came out before people where concerned about IP addresses being public
Many networks support host masking for that reason
some don't
IRC is fun
IRC is love
well ive leaked my ip on the papermc discord like 15 times already
doesent matter anymore tbh
too many ugly messages in chat
irc is basically skype but worse then
i am running away
Nothing is worse than skype.
It just scares me thinking that at some point, maybe enough IRC servers will disappear that we finally have all IRC networks agreeing on IRC standards
irc is basically skype but worse then
wtf
well
time to make an irc client in c#
haha
wait how can i just not impersonate someone else
have fun :')
Make one in java with mbaxter's Kitteh IRC Client Lib
is that in c#?
There are several C# IRC clients
The following tables compare general and technical information between a number of IRC client programs which have been discussed in independent published literature.
brain moment
impersonate people and we'll just +b you anyways
Making your own could be a fun project though
cats!
cat vibin
doggo too 
dog!!
if you try a taken name, e.g. Proximyst, it'll tell you off
if you use a nonregistered name, idk broccolai probably, we're just gonna ban you
๐ณ
UNLESS it's mrivanplays
then you're allowed to impersonate
banned
banned
lemme find ur ip

chargin muh lazer
most of us run bouncers or masks, oskar
smart people moment
michael get ur botnet ready
cant block irc messages ๐
im gONE
broc? dead?
finally
Now that's the dream
i can rest
omfg
i dont have visual studio installed
hi
i got ur ip now
jk
no. U have my bouncers ip
oskar i think it's bed time
yes
its the holidays
goodnight oskar
its christmas break you stoopid people
i dont. care
It's the holidays when the teacher says so.
And life said that there are no holidays
what
bruh my irc client just crashed
epic









