#general
3141 messages ยท Page 1465 of 4
You could test it locally.
Personally, I would use a VPS rented by the hour from DigitalOcean so I can do whatever I want with the server
that's just me though; I don't like being restricted by hosts
lemme check my last invoice...
https://www.hetzner.com/cloud
0.005euro per hour - is it really too expensive?
0.071 cents an hour? don't remember the exact specs but would prob get it
@woven glen there's always free Google VM, or use 300USD they give you for sign-up, or the same with AWS /DO...
8GB not enough for a local server?
@woven glen what are your dependencies
or shit
do you use maven?
do you use maven?
in your shade-plugin
add this to configuration
<minimizeJar>true</minimizeJar>
tell me how much it helps

in theory you don't have the spigot api in your jar
only papi's library, barely even if that
You can use just 500MB of ram for a simple test server.
time to update the potato
wsl will release if its needed
use Linux
don't have to
you can keep both on your computer
(Windows and Linux I mean)
how much do you have?
if he has integrated graphics i dont think he be having much storage
I have a laptop with integrated graphics and four OSs and I've never had a problem with space
ok but im sure 4 arnt your main drive now are they
i can fit 8 on 50gb if i wanted, doesnt make it useful
Ig I just don't use files lol
if you have bad specs best you can do is limit your background tasks and not run unneeded programs, other than that you deal with what you have
Never run out of space on any computer or phone in my life
i have 16gb on my phone ant also havent ran out in the 6 years i use it lol
i only have pictures and a few apps tho
50 of that could be Linux
but yeah minimize is useful if you have big libs that you dont use large chunks of
I don't think losing 50 GB is gonna make much of a difference to you, is it?
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> isn't it utf-8 by default?
guess it doesnt matter
no
what is the default then?
not in a plugin
not for a plugin
It's platform dependent
sadness
it contains meta info
if you're not relying on that info, then removing it will have 0 effect
you only really need it in a runnable jar
So, clearly you don't need any of the info in that jar
metadata
things like signature files, information for java to be able to register things like any service drivers you have bundled in there, etc, etc
On windows it picks the weird old school encoding
and breaks usage of utf chars
like ยง in old school plugins
it uses the platforms default file encoding
most people have windows configured to not use unicode
so funny bro XD
sometimes it'll drop in the name of the person who compiled it
hence why its okay to drop it
time to save 8 bytes ๐
if you were doing something else, like making a standalone runnable jar, deleting it would make it fail to run
wow!
\n\r on the end for windows
if it was used, it wouldnt work
you deleted it, and it kept working
I wonder why


ok!
Eclipse is dropping it in there for you
Are you using the hammer icon in eclipse to build?
Or are you right clicking and using that context menu
๐
it's been many years since i've used eclipse
Do you export as "Runnable Jar Project" or "Jar Project"
Should be using "Jar Project" to skip adding the manifest
@waxen panther
good to see eclipse looks the exact same
lol

broccs are hot
when you pull them out of oven
manifest files are part of the jar spec...
Jars without manifest ๐ฎ
Why do you need to?
then tell viaversion
you don't, @woven glen
That 25 bytes is absolutely not worth the effort to save
then change what you want
You're not saving stuff to 160KB floppy disks
then change what you want
are you reading anything?
like, if you're going to ignore everyone here just leave
this is annoying ๐
is this conversation based on deleted messages? i don't understand it
just like you, gstudios!
like what does he not do
I'm not gonna help you waste your time.
Spend this time and effort into bettering your skills and improving as a dev not fighting the compiler over 25 bytes of space.
remove the manifest
there's nothing to understand, this guy is trying to save 20 bytes for god knows what reason and keeps going on about it
nmf 
Why is this channel so cancerous
ok!
Why is it that NMF shows up when there is total cancer in play?
Coincidence, I think not!
Morning
why are you in eclipse, anyway?
Jroy how did I know that was you lol
meh an ide is an ide
@ Jroy that's a lot of very similar emojis
Them using eclipse is the least significant part of the conversation imo
the real question is why you're using an ide and not a real build tool
there seem to be a lot of things you don't know
Then use this time to learn how to properly build plugins. @woven glen
wat
zml didn't suggest that you code in a build tool....
ngl y'all just confusing him with this IDE vs build tool talk lmao
ZMLs comment was for the people getting flustered over what IDE you're using
Learn to not be lazy. Take pride in your work and strive to improve.
yeah no need to argue about IDEs everyone knows that IJ is superior anyways
runs
nah I've probably written worse
meh i've seen a lot of things and for some reason i'm still alive
sure
not really
sure
take your time
learn how to make your project into a Maven project, while you're at it
that's what people meant by using a build tool
oh ok
omfl
yeah i can't really see any code in there
for all i know those names could actually be meaningful
that's nice
lol ๐ ๐คฃ
private repo?
Inb4 private
yeah you gotta make it public
๐
I have a repo with two "Initial commit"s
I've written worse
like down to the bytes
anyways you got this line here https://www.github.com/LolBoiDev2/KMEnchants/tree/master/src/me/gstudiosx/kmenchants/KMEnchants.java#L43
you might want to put a return; after the disablePlugin() call
paper discord code review
it already happened to me that it'd keep running even after i disable my own plugin
like the next few lines of code before it actually decided to disable itself
you know for all that drama
and then stuff goes dumb
this isnt even close to the worst thing thats ever been posted in here
not even remotely on the same level
[WARNING] JAR will be empty - no content was marked for inclusion!
just send yatopia's link
Yeah you're not even using maven
@tropic flame hey that's not fair.. to the people who wrote the patches
idc about the code i care about the obsession to skim kilobytes
I've seen much much worse (even written by teams of people) and haven't been here long
true
So you're building with Ant
Which is why your jars are so big
It's keeping your dependencies' jar files in there probably
See that warning?
When maven is properly used an empty jar is produced
I don't know how to use Eclipse, my best bet would be finding a video for you
I could also recommend,, ,installing intellij and the minecraft developers plugin
I did for a while too
Now I see the light
That error generally means that you shoved your files in the wrong place for maven
intellij eats up ram tho, which he doesnt have
clearly not
@golden gust There's no plugin actually doing the work though
it can probably deal with a tiny heap size though
never tried
There's a way to make maven just put files into a jar
it's not in src/main/java/
and this pom.xml is that way
just src/
^
the class files are in the wrong place for mavens default directories
You can tell maven to look elsewhere, but, that's generally stupid
eclipse should've taken care of that for you 
Proof Eclipse is bad :(
yeaaahh but the actual source code has to be in the src/main/java/ directory
I've used it and never had this problem lmao
nowadays I just use vscode though
for java?
and copy paste from other projects 
i know
at least it looks ok
it's not exclusively just eclipse though
it's just where it's setup @woven glen
because maven will not look at it

bc you also put resources into that dir
maven will not look at any of your source code unless it's in that directory
You can right click in your project
new -> folder
name it main
move it into source
Oh the build target
._.
uh
apparently the whole world is too "annoying" for GStudiosX
you're not supposed to change it really
i think not having my code compile is worse than it being ugly lul
the entire Maven world is built assuming you use those directories
Something like it
? what
I used to do customer service then I quit for mineman
your question mark tells us absolutely nothing
dejay you have way too much patience for this shit
my veins would pop if this was to happen daily to me xD
i dont anger easily but people being dum is one way to get me triggered, i'm supposed to be the only dumbass around
Maven will figure it out I think
it wont but
You need a build plugin to tell it to look there
And without specifying the plugin it won't look anywhere but default
not on windows i dont have the effort to figure that out
it was a joke
my internet taking its time
i think discord is dying
discord is dying rip
hmm, just thought of an interesting question.
First long-duration stay of humans on mars... do they bring a gun with them?
Discord is dying
@zealous wedge we might be good?
It's broke
can you shoot a gun on mars
yeah, should be able to. pretty sure they work in space just fine
hooray
test

dont you need oxygen to ignite them?
@vestal jasper uwu
oh, bot is coming back
I've been uwu'd and idk where
does it need air or does air just "help"
@vestal jasper uwu
uwu
@worn ember no, no atmospheric oxygen required. modern ammo has its own oxidizer
bruh is discord working again
it do be like that
my thinking is, that someone could go crazy
the ol reboot
i didn't search for a dozen different IRC clients for nothing
what did you end up using
i just use a web client :p
for android* i mean
ah
even still kekw
CoreIRC Lite
weechat-android life
I use TheLounge
iirc it's even on FDroid
k
oh it's on F-Droid? should've checked that first
i went straight to the play store lmfao
bye logics
test
nice
wait does my client say bye automatically when i disconnect
i should probably change that
oh just that? okay then
i thought my client actually did something lmfao
nice it didn't
@twin lagoon uwu

i like this Windows 3.1 installation style terminal
that terminal looks like ass
No sources to compile
micheal omg oxoxoxo

<build>
<sourceDirectory>/src</sourceDirectory>
<plugins>
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
<version>2.0.2</version>
<configuration>
<includes><include>**/src/**</include></includes>
</configuration>
</plugin>
</plugins>
</build>

*discord
discord come on don't die again wtf
it's only for the past 2 days or so
.g 1 + 1
(DiscordBot) 1 (number) A number and a numerical digit used to represent that number in numerals. (https://duckduckgo.com/1?v=i&kp=1)
I did that to see if it would send but... why did it just define 1...
I noticed that
and it's like
"oh you're logged in :) hold pls"
no but for me it just logs me out completely
i have to login like normal, 2fa and all
stop asking
no you don't
stop asking, if someone wants to help, they will
this is the only warning you're getting
that is literally fine
no one cares about src/main/java
i would focus more on getting maven & your code to work properly
isntead of caring about something as useless as src/main/java
it does
use gradle
@waxen panther use gradle
I've told them numerous times to stop focusing on trivial things that make 0 impact and to focus on things like code improvement etc
But they're not interested in that

dont you love it when plugins dont work
lol i wonder why you've been banned

hello there
at this rate you'll soon have another to add to the collection
because you're annoying/obnoxious
no one needs to know that you've been banned from various servers because you've pirated a $3 game and pinging someone for no reason
and for the rest, the last two hours of #general
that's where it goes wrong
you're not entitled to support
nor does everyone want to handhold you through basic stuff like getting maven set up
you're not entitled to support
3 hours is nothing
you're falling in the same trap over and over
don't expect that you will get support / good support
that's great, it doesn't matter
no one cares
unless you're a paying customer of a product where it specifically states that you're getting support, you're not entitled to support
your "need" does not imply that people have to provide you support
Please read the license of the software you're using.
People have jobs. People do things. They have lives. They're not going to sit there catering to your every whim.
They're not your mother, they don't care to stop everything they're doing to help you.
Which is your issue, your "need" for support does not entitle you to it
i don't think you understand that everyone in here is a volunteer contributor
same thing with skunity
that still doesn't make you entitled to support
Because being frank, you act like an entitled ass
man i don't understand the logic going thru ur head
if no one answers you you're either acting like an asshole, you're being very vague or you have an issue that people just can't be bothered to help with
then you get an answer and you're like "I'm lazy" or "that's ugly, I don't wanna do that" in regards to laying out the project in a standard manner
Nobody owes you support, and when you set the expectation that you're gonna be an ass to deal with, people ain't gonna bother
and after the first time?
my dude
if no one is helping
it's because they don't want to, after providing you a perfectly sufficient response to your question and you completely ignoring it
you ignored the suggestion
maven is designed in a certain way, gradle is a useful alternative
instead, you keep asking the same question despite both responses
if no one wants to answer you, it's most likely because they already have
If you want some help with maven, feel free to message me in DMs
But don't keep asking here after people already told you to stop
So, you tried their answer, it didn't work, so you started throwing attitude at them
surprised you weren't booted there as well
So, after denying all of this, you admit straight up that you started acting like a complete ass because you didn't get the answer you wanted
then pay someone for support if you need it
i once again do not see how easy it is to understand
no one gives a flying fuck about your issues
you're not entitled to support
!ban @woven glen Your entitlement/attitude in general is not welcome in this community
:raised_hands: Banned GStudiosX#0422 (Your entitlement/attitude in general is not welcome in this community) [1 total infraction] -- electronicboy#8869.
i straight up offered him help
does warship has a ban save equivalent?
Don't think so
you can configure it to not remove messages
if it does it's hidden otherwise I woulda used it
but i don't think it has a ban save equivalent
I was hoping somebody else would
to be fair considering we have IRC logs anyways you might aswell just make it not remove messages
!softban
Command softban requires 2 argument(s) (<user:user|snowflake> <reason:str...>) passed 0
I told jroy to ban him like 4 hours a go
oh

think might be that
huh, TIL about softban
!help
got from dejay's speedboat docs https://dejaydev.github.io/speedboat-docs/plugins/infractions.html
Documentation for Speedboat, with all this power comes all this configuration.
don't think warship has docs
it's a rowboat fork so any form of docs work
I try to like, keep outside of mod stuff, but, generally, eeer... if you're gonna be "like that", you can just sod off
but they have the same command structure
cat is hot
That's the one thing that irks me with this community
ah its !inf reason <id> <reason>
vic 
Did they delete their own messages
Ah
very few people are willing to just yeet out the shit members of the community
@cunning raft !
?
Why you get people like the "unspoken few" who are literally around on spigot for years causing drama and harm to the community
vic 
ur boss just told you to ban everyone
Ngl, I would ban everyone
๐ณ
would make managing the discord easier
i would apply the wiz theory of moderation but look where that got him
Just be like 50% wiz
^
wiz was just too brutish in some areas, but, generally, eerrr.... my stance of moderation is that I generally prefer to leave it towards others but I'm not gonna allow bad actors or entitled douches throw their attitude around in here
we do a little modding
no u
there's only like what, 16k people in here? shouldn't take too long to ban them all
please
well brocc is the "boss", so you cannot ban brocc
yes I forgot I own the discord
hmm
Yo boys, let me know if this video is a movie or irl.
https://www.youtube.com/watch?v=RErdSr0iAcs
Hong Kong Anti-Extradition Protest
Sham Shui Po, August 5th, 2019
12:20am
Yen Chow Street
Sham Shui Po, Hong Kong.
Yes.
Looks like Hong Kong
๐
from requests import get
def check(email):
try:
r = get(f"https://mail.google.com/mail/gxlu?email={email}")
return r.headers['set-cookie'] != ''):
except KeyError:
return False
for x in range(10000):
mail = f"david{x}@gmail.com"
if check(mail):
print(f"{mail} is still free!")
else:
print(f"checked {mail}.")
```Okay so basically with this, it doesn't check google accounts that were created, then deleted, so it shows as available, how do I fix this?
is that javascript?
python
nice
I love using python
read the description
yeh how 2 fix ๐ฆ
or don't abuse google's apis :))
its not abosee tho
totally is
can this please get a pin?
๐ค
Firefox > chrome
broc spreading lies
wtf
lol
this is why he is NOT the boss of papermc
see my previous message .
he totally is
WTF
Got a question who is the real boss of papermc 
that is a blatant abuse of power!
broc
lmao
well I suppose md_5 is the co-boss until hardfork
minecraft getting political
Minecraft always political
true!
the politics of forking
works for google? ๐ฑ
goggle politics
the algorithm is the boss
no
I don't know how Minecraft, being the game with like the most laidback EULA ever, became the political nightmare it is
i do not
sure
broc is lying
where u work then big man ?
[redacted due to pending law suit]
โ
nightmare in which way?
oh no is cat typing a history lesson?!
I mean, there are many complexities, like, this entire game is backed by projects like what was bukkit and the servers having control over being able to do stuff which they couldn't of done with the like, "modern" eula enforcement
if each fork had its own eula on top of the minecraft one
ok no history lesson ๐
hey darkeyedragon
they can't, really
what is your business email?
cuz GPL
๐ณ
they disabled the ping thing
who discord?
can tell with the lack of an @ next to the name
No, Headless did
(or should I say brainless)
๐ข
thats great, now I can reply without pinging people
?
look at the artifacts
ima try yatopia, to see how bad it actually is
JDK 11, 16, 15, and 8 for everything recent
is yatopia bad because its glitchy and breaks things or becasue its unstable?
can you just not bring the yatopia shit here
me, or Z?
me
it can break your server, yes
both
that's it
nearly headless nick, how are you nearly headless?
I'm not baiting drama; I really don't want to gossip about yatopia as I've never even used it
Like yea no shit? I get you literally can't come to class, but why would he just give free points
huh
"it's not fair"
except if he gave you free points for missing it wouldnt be fair to everyone else who actually went ot class

im ranting bc if i told him this he'd get mad at me
ok bye
Yeah, a few of servers i'm in have the same issue pensive

@spiral robin uwu
iirc it's caused issues with world/data corruption, they also do unsafe patches which have a high chance of breaking shit
spend a day in their guild to have a laugh at the inexcusable bugs recently. blocks being randomly rendered, corruption, etc
Just seems like they try to do "everything", but most of the time stuff is either reverted or causes chaos
that sounds just awful
uwu gm bois
api abuse much?
the thing is you aren't meant to be able to do what he's trying to do
there is no public api that you are meant to use to do this
also don't just repost your question again like that in here
@spiral robin

hello
Hello bluely ! Good evening
my bluely?
Yeah we aren't going to help you do something blatantly malicious if you can't figure it out yourself

why does sweepy always sound pissed
Sweepy I didn't ping you you're fine
@vestal jasper woa 
but also totally outside of my control which pisses me off even more
lol
uwuwuwuwuwuuuuwwuu
hey is there any way to download 1.16.4 server
yeah, exactly 1.16.4 for the dupes or as in joinable from 1.16.4? If second one, download 1.16.5
not for the dupes but i need exactly 1.16.4
you can only get it from the API. latest 1.16.4 is here https://papermc.io/api/v2/projects/paper/versions/1.16.4/builds/416/downloads/paper-1.16.4-416.jar
you get no support if you use this.
thank you so much simple โค๏ธ
@quasi valley thirsty?
slurp
sn15 might be launching soon
spacex put out road closures and TFRs for May 4th-6th
wat
Idk haven't heard of sn15 til now
What's... Sn11
Ah ok
RandomSurvey: what does irc get right vs discord? Same for guilded, what does it get right vs discord
Yea I don't get gilded at all
I mean, yea I agree that humanity at the moment is disgusting. But call me a dreamer, I don't think that that means we should give up and die
Things won't change if people think like that
People are super comfortable riding the train directly into hell instead of wanting to change, they'll just decide "change will never happen, so I won't try or participate in any attempt"
Just imagine how much tech will need to be invented to make Mars habitable. To be able to make food there etc. Which, after price drops, might be used back on earth too.
And that's a really bad feedback loop lol. "I want change, but change won't happen. So I'll just sit and watch."
And then they observe as change never happens

So I am very done with that conversation
Idk simple seems like you have a lot of strange friends
Apparently so
I'm very much on board with technological advancement not to any end other than "well, if we had that what else could we make?" purely in the name of innovation and exploration. My jam is creating in the name of creation, and exploring in the name of seeing what's out there. But he's very deadset on "the capitalists will destroy whatever advancements are made, so why try"
And that pessimism is not my cup of tea
Negative feedback loops can get wildly out of control really fast
"it would be cool to explore, but exploration would need change. change would be nice but nobody wants to change. since nobody wants to change, activism to change is a waste of time. since it's a waste of time, nobody should be an activist for change. since nobody will be activists for change, nothing will ever change. since nothing will ever change, nobody should ever try. and if nobody ever tries, then humanity as a whole should just die"
that's his line of thinking, and it's all based on negative feedback from the prior idea
is he ok lol
i mean, he's got some mental health issues but that kind of thinking can only come out of persistent negativity to new ideas. the mental health problems might exacerbate that, but that extent of negativity is pretty yikes
rip
So I just dipped out of that conversation
yeah i feel you can expect that kind of conversation then
i mean, he and a few other people I know have been on a consistent downward trend throughout this last year and I can't really blame them. there's a negative feedback loop present in education right now for people who don't grasp a topic. the online modality makes it so difficult to reach out for proper help from professors and nobody slows down for people who need extra understanding. so that is probably playing a role too. "i don't get it, i need help with this content. but nobody can or will help me, the office hours are too full on zoom and my question is never fully answered. in that case, i will never understand. if i never understand, i will fail. if i fail, i won't get into uni. if i don't get into uni, i will end up on the street" etc etc. he's deep in that feedback loop as well, and I've tried to pull his ass out but I haven't succeeded yet lol
but yeah, oh well. it's a pretty sad viewpoint to be stuck in. i hope he can pull himself out of it because i can't imagine being that faithless to the point that you think humanity is pointless
simple? the intellectual?
Yeah I got an injection of braincells
we've got so many problems at home and making a colony on Mars literally solves exactly zero of these problems
it's a waste of money funded by billionaires who would rather kill their own mother than give money to actually help those in need
I recommend watching: https://youtube.com/watch?v=lARpY0nIQx0
Relatively not much money goes to NASA, and the innovation help people around the world.
not really. I mean yes it might seem wasteful because how much money is needed and how little progress is made but I think things like that drive innovation and innovation is good because it can improve existing things
yeah that's a good video but public funded organisations aren't really what im talking about
like look at something like CERN. why bother looking for new elementary particles right? and dark matter etc etc
but there are things that have been improved in medicine because of cern
i mean just look at the combined space budget vs the defence budget
Private companies bring less innovation, but still help. For example Musk trying to make rockets reusable etc.
ะััั ััััะบะธะต?
no only english here
They'll try to make money, they'll have to innovate to make Mars habitable.
ok
tbh, things like colonizing mars give me something to be optimistic about in a world that's just hell
that's worth something
but i have promlem with ping on my server
I mean yea, we do have a lot of problems on earth but I don't see why that means nobody can work on going off earth
They will get cash from the rich wanting to go to the space for a few hours/days, spend it on further innovation.
Starship is already partly funded that way
space tourism is pretty fucking bonkers, but those people can do what they want
I'm not in it for that
you don't want to go on a trip to the moon?
Same as starlink
I understand that, but $250K for a ride to the moon and back is bonkers
Those who can afford it, more power to em
Not my jam tho. Like I said, I'm in it for the advancement of technology and human knowledge
That is to say, solely, that I won't buy something like that even if I could afford it. I'd rather spend my money elsewhere
Prices will go down. I'd probably go on it at some point just out of curiosity.
If the prices become reasonable for a "normal" person to purchase and go on a trip like that, count me in
But I won't spend > 5k
When the price is relatively affordable, most of the time I'll have better things to spend cash on.
5k is still quite a lot of money for some ^^ so
I know, it's a lot for me too
Of course it'll be expensive.
You're talking to a guy who goes on super economy flights across the world for $300
I don't splurge on those 
There's no way it goes to a few hundred dollars.
Yea, space tourism going from $250k to $5k is already a huge stretch. I have no idea how low those tickets will ever go
But probably max 10k would be what I'd be willing to pay for the experience.
I wouldn't probably spend even 1k$ unless i really am great with everything else
Oh, yeah. That's a given.
I feel like that's a once in a lifetime experience that could change my outlook on life permanently
I would spend a lot
You spend your extra cash on having fun, never drain your account.
I wouldn't break my bank for it, is what I'm trying to say
Yeah.
I'd need to be able to buy it twice and still have enough money for a few months emergency fund before I'd consider it
I was never in an plane too ๐คทโโ๏ธ
That statement doesn't really make sense if you consider it something to save for like a house or car though?
I (used to) fly a lot, but I never spend a lot on my tickets. I will travel hack those tickets into fucking oblivion
Would you apply the same logic to a house?
??
A house you get a long term mortgage loan for
That's completely different though
Tickets for a ride are a one time immediate cost
well let's say you put aside X amount per week for your space trip in 20 years
how much would you pay then
You'd have to know what the total cost for that will be though
I would need to live quite a lot of years to save hundreds of K ๐
250K is a hefty amount
Even if it drops to something like 30K, I mean, that's doable but I'd still not pay that regardless of how "once in a lifetime" it is
Now, and hear me out
I would apply for a space job.
Then I get the experience and I'll work there and make money for it.
But you won't catch me shelling out hard cash for a ride into space and back.
Screw the house! Going to space oh yeah
Also I'm likely not going to live in the US, and I project my house in the future will cost be $50K USD equivalent
Yeah, probably
So, you also won't catch me with a 400K 30-year mortgage
For me, this but unironically lol
would rather live in an apartment for the rest of my life and have the chance to go to the moon
well that's not the thing tho it might not even be that
but still
I feel like that's overestimation
like
living GREAT in good conditions in a nice flat?
or go see earth from orbit etc once? no thanks lol
im good with nice house or flat or something with things i can use for years and be happy ๐
If it becomes economical enough to take a trip to the moon, land, stay on the moon for a while, take off, land on earth for $5k, stay included, I'd pay it. $10k even, maybe. But no higher.
Yeah
That's just scifi still tho, so
It needs to be really good to "just travel" there like nothing
Also people are damn idiots, some people are dangerous
So psychologic tests etc are needed
so it drags out more and more, along with some medical conditions
I'll let the people who really want it now experience it for the cost it's going at. I don't oppose it at all. For those who can and want to pay it, that's awesome. Like trip and experience of a lifetime and then some. But that's not my jam
Yeah sure whatever they can do with their money what they want lol, unless it's not hurting someone whatever ^^
Now if I become a goddamn millionaire some day, I'm definitely gonna change what I just said
But I'm on a trajectory to a very middle class life and I'm ok with that
Well of course
Yeah I don't mind
If I have good food for me which i like, where to live and a nice bed to sleep in ^^ its great
Yup. My house might even be < $50k USD equivalent depending. Might buy some land and build a place, too. Could be cheaper where I plan to go :p
yeah:P
it depends on location a lot, but here you can get house for like a $100k + or so, unless it's something quite bad
Depends a lot on the land etc., but still
Yea, I plan to live in the Philippines and it depends where you go but there are some places where you could get a place for $30-$50k, but also other places where you'll pay $400k. It just depends.
If you get some house with a land for $50K here it's going to be pretty small not even house almost, more like cottage
Yeah
Life is weird ๐
I also don't really want a huge house, which makes some people scoff at me. But cleaning a huge place is annoying as hell
Yeah
You could be the cleanest person alive and you're still dusting shit in your house every 2 days just because the air
So give me a nice small abode that fits me and my family and I'm chillin lol
and it settles on things etc
a lot of dust or dead skin etc
if you dont clean it enough then eww dust on some things and such lol
if people could see the amount of shit in the air and dead skin left behind on everything they touch, they'd 1) want to wear a mask all the time even outside of a pandemic and 2) want a cleanroom with chemical shower constructed immediately
We survived for decades like this, I think we are fine
Especially once we finally banned ICEs
Especially fucking diesel
yeah i hate it
ICEs?
im not like clean everything guy but still lol i just hate it ๐
I can clean my windows, the day later it's dirty again, thanks to diesel
Internal combustion engine
Of course we're fine, the shit in the air is mostly filtered by the hairs in your nasal canal, but it's still gross and shocking to see it
oh yeah
Again last gen car engines
You get a peek at it with a sunbeam shining into a room but that's everywhere 
Current gen EVs don't have such issues
yeah lol
when you open a window on a sunny day and you clean/move around stuff
then u see it a lot
It's weird though, how life is, that everything happened the way it is and how nothing will be here anyway some time later
Sometimes it feels like it's for nothing
Gonna order probably some mcdonalds damn im bad lol
hey just for info how much costs like 10 nuggets from mcdonalds in your area?
in here there's quite low pay but i feel like it's quite pricey vs. other countries ๐ค
I only found it on Uber Eats:
14 PLN is 3.7 usd
kinda good
Nuggets
Broccolai
Depends though on how much you make there too ^^
like if "ew nuggets here cost $5 but minimum wage per hour here is $10" then that doesn't sound that bad lol
Depends if you think of minimal, average or median pay?
I earn 12 nuggets an hour
Average of middle class
If you look for "average payout czech republic" for me it says like $1k or so at least
but I like know 1 out of 10 people that make that much
Most people make like $500 or $600 and they're okay, living
According to quick Google it's 5k here.
but some people or politicans make like $4k+ and that takes it quite higher
10 people with avg pay of 500$ + 1 person of payout like 10k$ well then avg payout is few thousands $ almost lol
Yeah. That's why I feel like median pay is better.
Yeah. In general it all sucks.
"minimum" tho is like $600 mostly
which is what a lot of people make
money sucks lol
My cousin with 3 bachelor and 2 master degrees earns so little is sad.
yeah
yeah my fiancee takes $600 per month
has a bachelors, lots of experience. it's really sad
As an intern with almost no knowledge and no degree in my company you get paid better than me previously mentioned cousin.
Everything is just that fucked.

Better not be 3 bachelors of arts and 2 master degrees of linguistics.
One bachelor and master is from Physical Education Academy.
Two bachelors and one master is from Management.
I'm not sure what exactly, if it's mostly financial management or what.
Meanwhile I have a scuffed bachelor of science and earn way above median in german
Meanwhile I don't have a degree and earn too much.
Oh actually not that much as I thought
I earn a bit more than man avg pay
But way more than woman avg pay
There is a difference of 600 euro per month, lmao
do mojang have an official server status thing anywhere
I'm not sure what's the real average/median pay here. But I saw it earlier today being 5K PLN before taxes or something, so about 1300 usd.
Double that. Add some more. I earn that - and after taxes.
MFW we only have a 8% difference in pay between man and woman.
thank you

@vestal jasper 
So probably get like 3x the average pay?
Hmm?
It's getting better tho, avg in 2016 was 4k lol
Our minimum wage is at 2600 or something?
Mini, a lot of that is inflation.
Typical Slav number, the minimum is even below of what you need to live.
yes sure it is if woman make less for doing the same job for same hours
And giving away money left and right to people who refuse to work. But that's more suited for #politics
Yes
About 5% of smth for the same job
would definitely see the statistics on this and the reasoning behind the difference because many people use average for women and men and get angry without actually thinking it through
Well, that difference even exists at my company
There are enough numbers for this on all different levels
There is no denying that systematic issues exists
lets all get on swtor
you mean you don't wanna play WoW except in space?
nope
sucks, im a lvl 27 jedi knight and i will destroy you

imagine getting a 3090 to play an 18 year old game
Quick question, where should I ask a dev question related to plugins connecting to devices ?
probably #paper-dev
Cool! thx
install a rat while ur at it
Always.
bruh, why'd you ditch physical newspapers
Bro. I still get physical newspapers bro.
I hear it's good for the trees.
Since otherwise they are permanently just rooted there unemployed.
hmm which balkan country cancelled them then
krusic any ideas on how to fix this
ยฏ_(ใ)_/ยฏ
format it and partition it in a useful format
tried formatting, didn't work
try harder
thats fun
diskpart is your friend
boot into gparted live











