#general
3141 messages ยท Page 1062 of 4
no
๐ always looks depressed
๐
brian u missed the bonk play testing session :o
@austere ivy
_11, zerozero, and billy
there will be many more
honestly it's probably better this way, lots of bugs and improvements i need to make
will do, the more the merrier ๐
.tryitandsee

for important stuff
and saved no typing at all
dumfuk

z is spreading propganda in private servers
thats what private servers are for
no

well i just emailed my speech prof begging for godly leniency to let me go next week instead of tmrw

This isn't a group project, but yeah
vouch
agreed
not as dead as my hopes and dreams
what's the assignment?
@sly ruin Gotta give an informative speech 5-8 minutes. I'm just not ready atm.
But good news, prof just replied and said no worries and I can go next week so ๐
yay that's good
yeah I was really stressing out but now I'm trying to chill lol
you got dis
thank you bby
we all love cat
Is static imports like a preference thing? I tend to only use static imports in unit tests
generally frowned upon in prod code outside of some specific instances
in tests its just a convenience thing
tests are tests, people do all sorts of awful shit in tests
Yeah I don't use static imports for my actual code, but one of my co-worker does. I found it a bit odd
assuming its not being ref'd all over, or the focus of the class, just reference the name as you would anything else
the places it tends to be more accepted tend to be specialized like the ASM lib
but ultimately, its your code its your choice
also using interfaces specifically for that is so frowned upon there's a name for that
Constant Interface Antipattern
pretty much the only good argument for it seems to be "its less code"
then again the one against it seems to boil down to "its wrong"
so we're back to, it's your code, it's your choice
I wouldnt send it anywhere you wanted a job though
@viral hornet interestingly, you don't even need multishot to throw 3 projectiles, guess the server does it anyways (and yes is majorly scuffed, just found out from this bug)
For hard coded string, such as a hard coded comment. someMethod(someOtherArg, "My hard coded comment"). Would you make a variable for the comment (more specifically a private constant)? I usually don't, but what I started doing was making hard coded strings into a private constant (I think it's a bit odd) since it's like that in the entire codebase I might as well be consistent with the code base.
really depends on the context
strings can themselves be magic values
magic values should be extracted out
most people just psfv that and call it good
Yeah I did that for something like hard coded IDs
so it's easy to understand what the string is
but comments on the other hand I feel like it's unnecessary
that being said, you dont extract debug messages usually
most small codebases dont extract user facing stuff or log messages until they want multilang
then they basically have to
context is good
yeah not debug messages. Just hard coded strings passed to methods. Gonna to find a concrete example
Seems like the reason hard coded strings are package-private constants is so it can be used in tests
generally exposing stuff just for tests is frowned upon
but that one is a little more opinionated
and there are certainly good times to do it, its not a hard and fast rule
Yeah I find it a bit odd, but I see why people do it
Constant Interface Antipattern is the bad design putting the constant inside an interface and then implementing the interface in your class or is it also the use of public static final constants
looks like the first but just wondering
its the first primarily
blah
most of the time you shouldnt be doing it at all
thats just gross
but so is using an interface class in general to hold constants when any other class would do
Im not really sure what that buys you over just a normal psfv in a final class
other than more ugly
I want to write beautiful code. Thought industry would be a lot different, but I find a lot of stuff done that's being done at my company weird
industry is not necessarily the place for beautiful code
"enterprise-grade" is a bit of a meme
Yeah. At my company I think builder pattern is abused
it's used literally everywhere
I think that's the due to the ease of creating a builder though since we use lombok and you can slap on @Builder
[03:01:27] <gabizou> fuck you and the lombok horse you rode in on
i just write my own builders, i don't trust lombok builders
I generally dont like stuff that tries to do "magic" between me and the compiler
eventually you will have to see how the magic is done
and thats always bad
especially now with how easy it is to generate all that stuff automatically
the only lombok features i use is getter/setter annotations
lol'd
"why is x tool spitting out garbage, let's dig into the magic and see"
no one wants to see how the sausage is made
Builders literally everywhere, even for classes with 1 field. We need to not log certain exceptions as errors because they're not really errors on our end otherwise an alarm will trigger
@upper flicker my favourite is when the lombok plugin for intellij broke, and the author had to ask jetbrains for help because of how bad the plugin hacks into things
lol
yeah see ugh
I think lombok is used pretty heavily in industry
apparently people love it. I don't really like it because it makes the code inconsistent. Some classes use lombok, some don't because it doesn't work
plenty of good places writing good code with out weird alarms tripping on stupid crap
Lombok is like marmite
but you know, plenty of bad devs at bad places doing bad things
You either love it, or you hate it
The good news is that the lombok plugin is being integrated into IJ
The bad news is, that that might be the stepping stone for some to consider lombok viable now ๐ฆ
๐ฎ
Yup, was in the last EAP post
fuck that
No idea if it's pushed out yet though or not
back to eclipse
I'm switching to DrJava
let me start cutting my wrists
that's not very paper 2.0 of you Z
๐ณ
that's not very paper 2.0 of you Z
THere's a Paper v2?
its a joke on the community guidelines
It made Paper less sketchy, usually iโd just call people spedalsk and so on in here, but as of community guidelines i have to be less of a dick
@waxen panther Youโre not a weeb anymore?
Weebs fuck cats itโs a fact
Hmm
what in tarnation
guys
i failed my science exam
...
29.5/40
time to die
uh
motion
tissues
atoms and molecules
yes
biology
tissues
9th
tho i got 38/40 in english
which is good
i guess
yea i mostly failed this time
gotta study more in term 2
hmm, for some reason my child vue component isn't able to inherit the height of it's direct parent (in a different vue component), so I can't get flexbox to vertically center... o.o. Tried unscoping the styles as I figured that would fuck it...
But...wtf
Well, Vue has nothing to do with style
I was hoping mini will reply, fix it for me mini!
Check your rendered html
I am
Tired like setting hight to 100% on the child?
https://owo.whats-th.is/6zkGrap.png
app-container is direct parent, has height 740px: https://owo.whats-th.is/2hBHLKD.png
centered-box--container is direct child, has height 100%: https://owo.whats-th.is/3SzVQLn.png
and yet: https://owo.whats-th.is/7yFXtF8.png
:'(
when I hover centered-box--container, its height is 124px
If I set an expicit height on the container, like 500px, it works
so idk. height: 100% aint workin
can you shove that into a codepen quickly?
inb4 it works in codepen
its kind of a big app but hold on ill see if i can get a minimal repro
well, the 3 screenshots look like a minimal repro to me
you mean just codepen w/o the vue stuff yea? just write the html
height with % only works if you define height on parent, you do min-height, that should be enough
yeah
We just use transform, since most browsers support it.
"java: Compilation failed: internal java compiler error"
love to see it
why am I always the idiot that runs into NPEs IN THE FUCKING COMPILER?!
Man.. I haven't done web dev stuff since css came around to replace tables for layouts. The 100% height has always been an issue with css lol
There are some tricks to make it work, tho
Just nothing that works for all browsers
didnt include navbar, but yea https://codepen.io/algorithmjunkie/full/zYBWZZj
same thing
i suppose it doesnt look so bad not centered but meh
does the container itself need a height? is it looking that far? cause that does indeed not have an explicit height... :/
wtf
yeah seems like you want an explicit defined height
you know what fuck it, this is just a school project. ill do a scrollbar if it overflows that 740px 
oh ok mini
that works i guess
nvm that just fucked the whole thing 
which container did you apply 100vh to mini cuz that didn't work in codepen for me
lemme reload
i assumed the bootstrap container
nah the direct parent
its min height tho
but in any case, height worked instead of min-height :/
that doesn't work for percentage
height works, so i can just use a styled scrollbar if it overflows that 740px. that'll just have to do
it seems like you need an explicit constant value as parent height for percentage to work
height: 100% only works when the parent element has it's height set.
html {
height: 100%;
}
body {
min-height: 100%;
}
should do the trick, then just set 100% height to any child elements
or just
body {
min-height: 100vh;
}
but that has issues on mobile
didn't seem to make a change when using min-height on the direct parent
it's like this now https://codepen.io/algorithmjunkie/pen/zYBWZZj
changing my project jdk to 15 fixed the compiler NPE, thats nice
:o
well yeah the html and body rules don't help because nuxt applies multiply outer elements, so codepen isn't an exact repro
however didn't work in codepen as well
I'll just work with an explicit container height and make a nice scrollbar, that'll do just fine
thanks guys
wot
lol that'll send a message...
gh doesnt care
they wanna bring ytdl back too
they are not to blame for any of this
not accusing you
Shooting the messenger is our style.
no thats what I mean, why would they fix the bug?
they only need to remove content if requested
idk, looks bad
oh i thought the dmca content got overwritten it's just a random commit hash
the bug is that you can view fork commits in parent repos
I think after a PR, not 100% sure
yeah can see that now
this commit is not part of the repo
its not part of any repo
basically, a PR copies your branch
and stores it forever
alright well it's not nearly as interesting as i thought it was then
You know what else is fun?
Hunting down firmware for old yet still supported networking devices, where the company got acquired 2 times in the last 3 years.
gotta find the sketchy reupload hidden in some random forum in a thread with a single response from 2005
GOOD MORNING @quasi valley
good morning coumm

kneny, as seen on television.
hmmm essentials is fucking up rtp 
This is the way
wooooooooooooo
my company is getting cloudflare
fucking finally
that will save me around 200ms on every single request
lmao
this is what am dealing with
it gets a bit better once the connection is open
but man
why is it so slow
see
our infra is build around a principle
between any given two firewalls/reverse proxies/loadbalancer, there is always room for another firewall/reverse proxy/load balancer
we terminate ssl at least twice
but why
yey im starting CSS
grats
yikes
grats
TY UWU
lol
That SeCUrITy better be running on a Pentium 4 to maximize the pain.
Why is our gigabit firewall so slow?
Well. It's not like it's running a AMD Sempron or better yet, your load balancer is running a good old Pentium 4.
not sure whatr our infra runs on
most our servers run on esxi
and fujitsu primergy shut
intel power control 

We usually run stuff like this: https://posili.me/i/2020-10-30_10-55-49.png
Don't question the cardboard.
Let's hope their updated.
mainframe
that whole thing is filled to the roof with storage
https://discordapp.com/channels/289587909051416579/555469074080202765/771673250379464735 this was the mainframe
sexy
I am not sure what we at right now, last time I asked we were at like 5pb

using a whole row of these plus controller hardware
but I havent been down in our basement for one or two years now
maybe I should once covid is over, before we move most shit into the cloud
even our fucking mainframe we will move, lmao
cloud scale cobol anyone?!
you should date my friend, she loves cobol
I don't like cobol, lol
I can read and write it but thats about it
actually, cobol is ok
the mainframe is what makes it bad
if I could write cobol in vsc and use git 90% of the pain of cobol would go away, lol
Just so you know, I'm ready to adopt that mainframe, if it needs a new home.
pretty sure we rent it from IBM for half a kidney
Oh no.
Well at least replace broken hardware for free. 
I assume you have the watercooled version?
no clue
I dont think I ever looked under the hood
remember, am just a dev, I have to annoy somebody long enough to take me down there ๐
just tell them you're gonna improve the mainframe by deleting the cobol
normally new collages get a tour, as part of the general company tour, and I sometimes sneak in
Imagine not having an all access card.
weird flex but ok
no such thing exists
I have janitor cards to multiple places.
ah, you're the janitor
access to RC is not via your personal card
Sadge.
Insurance is no joke
also, no janitor ever entered that RC I would hope
Hope.
then who cleans it
if you use css color constants you are ded to me
Dedusting servers with Russian USB sticks.
Got to get them CPU fans ramping up.
yes
o
Not using RGBA.
that's an option too
everything but constants
lol
ideally you use variables
either via scss or native
bruh
h2 {
color: #008000;
}
Better?
i literally never used css variables in my entire design career
don't confuse the poor lad, he JUST entered the css section in whatever course he's doing 
when you gonna start contributing to hangar?
who mE?
yes you
whats hangar o.O
papers plugin project
Another one.
well this one is actually getting somewhere
True that.
https://hangar.minidigger.me/ if you are curious
or #hangar-dev
it has auto import of spigot descriptions ๐
yup
kewl
true lol
Martin
i don't even understand how github works
im not ready for anything XD
rip her but css color constants are disgusting
i know who eric meyer is
I first learned about him by using reset css
Physicists at the University of Rochester discovered created a material that at 15C or below acts as a superconductor. One of the Vitaly Ginzburg holy grail discoveries.
Time to patent it, to stop innovation.
cbs all access do be getting on my nerves
it just conveniently forgets what season you're looking at when you choose an episode
always just shows s1
wtf ewg
/setblock 0 0 0 minecraft:repeating_command_block[conditional=false,facing=up]{Command:'kill @e[type=villager,nbt={profession:cartographer}]',auto:1} destroy
epic world generator apparently
i also thought it had to do with worldguard lol
/setblock 0 0 0 minecraft:repeating_command_block[conditional=false,facing=up]{Command:'kill @e[type=villager,nbt={profession:cartographer}]',auto:1} destroy
I mean the screenshots look good but for 28$ i kinda expect better crash prevention lmao
Epic.
Wondering if ewg works now on paper
it does

oic
ewwwwwwww
fucking ewg
who thought this is a good idea
for f in **/*.json; do echo ">>> '${f}'"; jq '.overlaySettings.leavesBlock.chance = 0' < "${f}" | sponge "${f}"; done
fuck this feature
the fuck is that
sec
is that java?
leaf
NMF will make a better one amirite?
Daily reminder: https://posili.me/i/2020-10-30_13-08-19.png
how to become female for cheap
Behold, The gender bender!!
fancy shaders
That's enough paper general for today
kek
does anyone know if dependabot can search dependencies in sub modules?
hypixel is smarter and uses maven. Be like hypixel ๐
i just use maven cuz i cba to learn gradle properly
It's a shame that knowledge like that needs to be outlined as plus, since those are fundamentals everyone should know how to use.
im literal garbage and even i know those (to some extend)
Former applies
who the hell are Hypixel hiring? Graphic designers? How is git not a must? Or do they believe that they can just teach that? Are they trying to employ newgrads who have never had any work experience?
c h i l l
Git is a must, mercurial a bonus 
there are plenty of other SCMs in the game dev world
since git isnt used on big game projects cause it cant handle binary well
or big assets in general
perforce is a popular one for example
lol
it really bothers me that maven searches all repo's
well, it caches the resolution
so i'm getting 200 and then a few 404's and then i think something broke
but its just doing its thing
I love how IJ displays an "error" when it's unable to find the dependency in an unrelated repository. But everything still compiles fine, it's probably just an inner dependency of some provided dependency that's missing.
CubeCraft is hiring as well.
A long list of enterprise requirements but only up to 17ยฃ/h don't know what they are expecting...
prob copy pasted standard job rec text lol
job recs always over ask
.wa 17ยฃ to usd
(DiscordBot) Result: $22.00 (US dollars) (29/10/2020) - https://is.gd/VN7JbP
Wolfram|Alpha brings expert-level knowledge and capabilities to the broadest possible range of peopleโspanning all professions and education levels.
@worn ember But it's about the work you do! Money is not what this work is about! You will be able to work on a game you love!
/s
yes so much love
is it just me or does Minecraft PC (Java Edition) slowly start to run faster the longer you play it for?
I'm here to give you all the love you need DED
Yes, it does Sherman
hm?
its always gross

I dunno it always lags significantly more when i first boot it up and then runs blazingly fast whenever I forget to turn it off and leave it running for hours
though us does get paid more, but im not in CA, im in a medium COL area
Yes, that's how Java works
that's a thing?
Yes, it is
how did I not know that
so stef, how have you been darling?
it gotta heat up its engine first before it can go brrr
it gotta heat up its engine first before it can go brrr
Is that just a Java thing or does that apply anywhere else
It could apply elsewhere, but not necessarily to every other language
certainly applies to cars
๐
.wa 17ยฃ to โฌ
(DiscordBot) Result: โฌ18.80 (euros) (29/10/2020) - https://is.gd/SWM5dZ
Wolfram|Alpha brings expert-level knowledge and capabilities to the broadest possible range of peopleโspanning all professions and education levels.
odd though does the JVM just decide "Ey Imma run faster now" and then just randomly speed up for some reason
The JVM will perform optimizations once it knows how the code behaves
To know how the code behaves, it has to run the code for some time
its evolving
It could store (cache between executions) how the code behaves ๐
So it will run slow code for a while, then notice it can optimize x part of the code and do so and the code becomes faster
usually the gains diminish pretty fast
but JIT ain't be like that
its not like running it for 15 days will make it faster than 10
I expect around 28 โฌ when I start working with my master degree. Aikar
the JVM is pretty quick to start figuring stuff out
I thought all the optimization happened when you compiled it in your IDE xd
but then again, Minecraft ๐
I think the only optimization compiling may make is turning 2 + 2 into 4
When it's a constant
javac basically does nothing
Well, time to read about JIT my friend. And then time to read about the black magic regading CPU code execution/parsing/etc
which makes it a bit different than most other compilers
But the optimizing on the fly is really noticeable if you're running on a not so good device
like stef and the 4 minutes long unit tests lmao
its not like running it for 15 days will make it faster than 10
Obviously not something like that but it does run noticeably faster when Minecraft is on for a while (20FPS when first booted to 150FPS on max graphics settings)
(I only use Vanilla so I can rule mods out)
well when MC first boots its also doing a bunch of shit
Minecraft for me is pretty much unplayable when booting up, after 5-10 minutes it gets playable
Minecraft for me is pretty much unplayable when booting up, after 5-10 minutes it gets playable
^^
some of that is just "its doing more"
anyway, zzzcat has been running for a long time now and he only seems to get slower and slower
checkmate java enthusiasts
how do you do a websearch with the bot here again
I've seen some people do it
anyway, zzzcat has been running for a long time now and he only seems to get slower and slower
burnnnn
.g weather in new york, ny
(DiscordBot) https://weather.com/weather/tenday/l/New+York+City+NY?canonicalCityId=a701ee19c4ab71bbbe2f6ba2fe8c250913883e5ae9b8eee8b54f8efbdb3eec03 -- New York City, NY 10-Day Weather Forecast - The Weather ...: "Be prepared with the most accurate 10-day forecast for New York City, NY with highs, lows, chance of precipitation from The Weather Channel andย ..."
Be prepared with the most accurate 10-day forecast for New York City, NY with highs, lows, chance of precipitation from The Weather Channel and Weather.com
.wa number of penguins on the planet
(DiscordBot) Result: (data not available) - https://is.gd/oboQ5i
Wolfram|Alpha brings expert-level knowledge and capabilities to the broadest possible range of peopleโspanning all professions and education levels.
wolfram really letting me down lately smh
.g Why does Java run faster after some time
(DiscordBot) https://stackoverflow.com/questions/16970191/why-does-my-algorithm-become-faster-after-having-executed-several-times-java -- Why does my algorithm become faster after having executed...: "As the call count reaches threshold , JIT compiles and optimizes the bytecodes so that it run faster when next time it is called by JVM ...."
Or one of the plenty modern forks
@mossy vessel huh there are some?
.g openterraingenerator fork
(DiscordBot) https://github.com/Auburns/OpenTerrainGenerator -- Auburn/OpenTerrainGenerator: Minecraft Terrain Generator...: "OpenTerrainGenerator (A TerrainControl fork) by PG85/PeeGee85. OpenTerrainGenerator is an advanced world generator for Minecraft. Through variousย ..."
Dunno if this is the original repo, yet it's a modern fork :P
It works on 1.16.3 as well ig
๐ฅบ
@ashen nacelle why did you dm me with a link to a discord server?
uh oh
he may be advertising
/spamming
mods, get the ban hammer ready lol

lets see how adamwbb responds
bc I haven't talked in this discord server in like weeks, so if they msg'd me randomly, they must've msg'd other ppl too
should I ping the mods?
we read chat :)
Just ignore him lol
ok lol
I get hundreds of random dms a day because I'm in the top page of user list on many guilds :3
lol
that is not the way ๐ฆ

I tried, z. It's not retroactive on guilds you're already in :(
du u kno da we?
If you set it to friends only its not retroactive?

I couldve sworn mine worked fine
it has been a long time now though so... shrug I guess?
I was thinking there was a different setting
Lot of one way conversations up in my dms
but Im not seeing it, guess I just misremembered
or they changed it just to screw with me ๐
it's all a big conspiracy
poor camm

I love how it says "It does not apply retroactively to your existing servers" then as soon as you select it, it asks if you want to retroactively apply it to your existing servers
like why even have that
Must be recent-ish, I don't recall it doing that in the past
Or maybe it's just a shared translation between desktop and mobile which might not have that prompt?
Well, they broke settings somehow: https://posili.me/i/2020-10-30_16-43-36.png
My setting is actually Animate on interaction, but it shows as always. 
@twin lagoon ๐ฅบ
๐ฅบ
candy corn eyes
thanks, I will never be able to unsee that
hm?
thats why i always 

peak webdev https://www.youtube.com/watch?v=ApR-kNXxLUs
I made stories for VSCode that way you can make fun coding stories and share them with your fellow developers.
extension: https://marketplace.visualstudio.com/items?itemName=benawad.stories
code: https://github.com/benawad/vscode-stories
#benawad #vscode
Checkout my si...
i wrote code. the end
imagine going so far for the joke that you write a real extension
Ben awad is quite funny
If I have an API that fetches stuff from a databases (For my UI). For my discord bot, should I use the API or fetch data directly from the database itself to minimize response time?
tbh that is pretty funny
presumably you made the API to use it
unless your API is significantly slower than direct DB access...
or there's some thing you want to do that isnt exposed well in your API but is easier from DB
I mean up to you, I its more secure for you to use an API to access it instead of directly accessing the db
Yeah the API is meant for the UI, but I also want a discord bot. So I was like I guess I can use my API for that, but would the response time be a problem
usually if Im adding an API for something Im wanting to use that, if for no other reason than the abstraction I must've wanted such to make an API
is your time served better by fixing the latency issue on your API?
separate the API from the UI and have a generic API
Nobody can predict your hypothetical for you, so if you're worried about response time, test and measure
.try
I haven't started work on the API yet. I don't think latency will be an issue though, but it could possibly. So yeah gotta work on it haha
UI can also be pretty sensitive to latency so I wouldnt start out planning for it to be that slow
especially if its just a thin abstraction over your DB
the nature of what youre doing with the bot will also obviously determine how sensitive it is to latency
Yeah at work I'm working on a UI and API calls take (what I consider long) 600ms-1s. I'm using angular so I feel the delay since the entire page doesn't have to reload
I mean I can have a bot download an attachment from discord, parse it, then upload it back to a hosting site in like 100ms on the right server
so even if youre chaining web reqs, which is you know, never fast fast, it can still be fast enough
?ban @ashen nacelle Advertising
adamwbb#3216 was banned | Advertising

Wait haven't they been banned in the past
kashike warned them for something the other day
?modlogs 771743810584969246
No logs found for that user.
oof
thats the message id
hes been muted by aikar before but i think thats it
@mental meadow uwu
so i made a 2nd character in bless unleashed last night. spent a solid hour in the character creator menu working up the perfect look. get it in game and find out its about belly button high to everyone else.. ๐ฆ
Baahahahahaaaaa
used to run a sorta like kingdoms RP server, we had dwarves as one of the races and it was a popular one for PvP'ers because of axes
Used to say about how they where always pissed off coz they where dragging their sack across the floor all day with how short they where
lmao
kingdoms rp servers were fun
@void void
X: -2602
Y: 102
Z: -16
open an issue about that in essx repo
afaik they have this message
Guys, how do I move out of this folder
its not letting me
into the /home directory
please dont open an issue in essx
youll probably just be told to fuck off if you cant read the message
lol
?
uhhh
Bruh they aren't even working
you can try making a plugin yourself that has proper formatting
other than that, idk
Gamer moment
I think I deleted them with w/e
not the right world...
Lmao
I think I deleted them with w/e
@void void The command blocks
@waxen panther rui ueyama cat
check other worlds
okay
Having command blocks enabled.
Rui Ueyama cat
command blocks are cool
I donโt feel well Proxi nurse me pls ty
Hahahaha
whats wrong brocc
how's spider country today
Not great for him lmao
felt faint at gym 
Camm where you from o.o
can you bill an employer for time you spend filling out ACA since its mandatory and required by law?
spider country
whats that kneny?
@stiff yarrow "filling out"?
guess better clarify what ACA means to you, as that doesnt make sense for obama care
Camm is from upside down area
@slim nymph not asking on the behalf of me, but a friend asked. Apparently you are required to get health insurance under ACA, and they were wondering if that meant you could bill your employer for filling it out. My thoughts are no, as its a government mandate and not employer.
camm what the FUCK
i'd view it as the same thing as billing an employer for filling out your resume.. thats just a dumb idea, imho
I think they made the connection because the health insurance is done through employer website
Hahahaha michael

also I just found out pdfs can have passwords to prevent printing, but those passwords are easily removed, so yeah... what
@stiff yarrow correct, but i believe the individual mandate got trumped
trumped?
as in he removed it
the trump tax changes removed the mandate starting in 2019 (just looked it up to confirm)
looks like it just removed the penalty?
which is the same thing lol
indeed, i was so glad the penalty was removed ^_^ got tired of paying it every year
billy that best be some sarcasm
negative
sadly not
billy moment
you should have health insurance at your age
at my age ^_^
don't you have like 10 kids and wild lifestlye
Obamacare was really misunderstood by the poor. Those thinking they couldnt afford it would of ended up getting it for free
5 kids, yes, but i'm only 36 lol
what if you motorcyle coma yourself and bankrupt your family
im taking it nossr doesnt know what just happened to billy ๐ฆ
The issue is the gap between "legally can't afford it" and "practically can't afford it"
no I'm not up to date on billy news
dont think so, aikar
i just had open heart surgery (triple bypass) after a major heart attack
ooof
without insurance ๐
kinda
did something work out with the charity things?
oooof
I hope you can gofundme the bill away
open enrollment starts soon please get healthcare
the hospital put me on some kind of insurance thing, idk what it is exactly. and the rest of the bill is being footed by some hospital program
i only have to pay for some small stuff here and there
you're lucky then
you might not be so lucky next horrible health incident
was the heart condition from being unhealthy or genetic? #nutrition-science can help
i'm avoiding #nutrition-science ever since aikar said fasting for 48 hours is healthy lol
did they retro apply you to medicare or something?
@slim nymph not exactly sure what it was. its some kind of charity thing i think
well "healthy" it is, just HARD to do when not on keto lol
Billy there's a word for that
on keto its a lot easier
its called cognitive dissonance
Do you really think that we survived thousands of years having to be able to eat like 3 times a day or whatever?
there are healthy ways to fast, with that said it wouldn't surprise me if a large portion of fasters weren't being good about stuff like potassium
going into long fast essentially forces you into keto, but i dont recommend doing introduction to keto from fasting ๐ wont be pleasant lol
and that's how you died
:(
going into keto suddenly on a fast without your body getting good at it first sounds sketch
so I wouldn't fast without being keto first
i doubt its much of a health issue, just psychologically rough
everyone who fasts for religious purposes does it
Sort of but those are usually short term fasts
they might not even reach keto by the end of it
votes to move keto talk back into #nutrition-science so it can be ignored
i believe muslims do it for a week?
I thought it was a day
anyways back to intervention on Billy
and then basically gourge the fuck as soon as it goes down
Billy you live in a country where health insurance means life or death, you should get health insurance
Is it that easy tho lol
health insurance is definitely a good idea yes
yeah it is
lol
if you are employed
I dont lol
european moment
camm fucking die
no u

I bet that as a EU member we wait longer in hospital for a broken arm, or in general for treatment of anything that's not imminently life threatening
I pay the full cost of health insurance and its ridiculous (over 400 a month) but I would rather pay that than get in an accident and go bankrupt
400 month lul
But, hey, it's free at the desk 
Just make the government pay for health insurance, easy
I pay the full cost of health insurance and its ridiculous (over 400 a month) but I would rather pay that then get in an accident and go bankrupt
@stiff yarrow lucky. mine was $1400/mo
thats why i dont buy it
@twin lagoon in america employers will pay part of the cost, but I'm my own employer
lul
Only if you work so many hours
blame obama. it was $17/wk before him
where do you live
And, ACA caused many companies to cut back on hours and cause many people to get a second job, woooo
And that's the story of how Billy voted for Trump
The issue with those plans is that they don't consider the side effects
camm fucking die
@twin lagoon that wasn't very nice Michael :(
primary effect: Yay, higher % of people are insured
down side: Many more have lost their jobs or have had hours cut back, etc
Nobody will speak about the latter, but, hey, more insured people!
@viral hornet 
Plans in some areas also skyrocketed to all shit
its funny how companies will raise their prices as soon as their product is mandatory by law
ยฏ_(ใ)_/ยฏ
obamacare was not 1400/mo, you did something wrong or talked to the wrong people
and for low income, it was subsized too
i couldnt get obamacare. i made too much money. the insurance through my job was $1400/mo
imagine not paying atleast 83,25 eur for basic health insurance
BCBS
that was your own job saying fuck you

Is billy low income?
Bruh
Billy why not go open enrollment then
Wtf
because i sit right on the poverty line, nossr
billy sounds like he's in that "fuck off" area between not being poor but not being well off
Arenโt you a programmer
he doesnt program for a profession for some reason ๐ฆ
everyone above the poverty line doesnt want me cause i make too little. everyone below the povertyy line doesnt want me because i make too much
its a horrible place to be
he doesnt program for a profession for some reason ๐ฆ
@slim nymph Nani
Why are you not doing the high paying job you are qualified for
i'm not qualified
yes you are lol
tell your boss you want less money, ez solve
@rugged pilot i've actually quit jobs for that lmao
i can assure you that you have more experience than some of my own coworkers even
Billy you are definitely hireable
Billy, as much as you're a n00b, you probably have better crediability vs people comming out of college, etc
i can assure you that you have more experience than some of my own coworkers even
@slim nymph tell that to the contact-less hiring process
@rugged pilot i've actually quit jobs for that lmao
@unreal quarry now I need to hear the story
yes, first job is hard to "prove" that
Gotta find companies that care about people vs companies that care about paper
thats mainly "how to fluff resume with the right things" problem to solve
or companies that care abt Paper :>
including all open source projects is something you want to do on resume
@solemn hull you were memeing about villager lobotomizer, wen open source smh
@unreal quarry now I need to hear the story
@stiff yarrow i was trying to get into a specific apartment. they said I made too much money to move in (weird requirement, but ok). so i quit my job and wokred fast food for a few months just to get under the requirement and got in
What was so special about that apartment
it was affordable
thats on my linkedin lol
Billy are you describing section 8 housing
no idea what that is, nossr
i did in the same context we do here on paper @rugged pilot
it was for $950/mo, so doubt it
Reduced rent for poor people
yeah, highly doubt it since those are usually $300/mo
my current apartment is $1100/mo (and this is 15 years later)
And after a heart attack are you still going to avoid health insurance?
I've seen some places in the US where there are govenment schemes which basically "pay the difference" between what people on certain incomes can afford on the rent
i wouldnt go that far @rugged pilot ๐
landlords in some areas can basically have higher effective rents due to those types of oddball things
And after a heart attack are you still going to avoid health insurance?
@stiff yarrow yes, because its a scam tbh
unless the prices go down, i will remain insurance-less
detail things that if someone looks deeper into you wouldnt be ashamed lol
I canโt tell if you are being sarcastic billy
I mean, generally, you technically didn't
most of the stores are franchises, so you're really just working for a smaller chain
the franchise owner has a "contract" with the actual mcdonalds
but that doesnt directly tie to the workers
mcdonalds workers work for some company that has bought the permission to use the mcdonalds brand is all
how to make ender dragon summonable without egg in minecraft?
I've seen a server do it
@untold copper you'd need a plugin to spawn the dragon in and then attach it to the battle manager
@unreal quarry whA
billy, i would def recommend trying hard to get into dev as a career, just gotta not give up. if you want any resume advice just send it.
in open enrollment there are 200/month plans, even that will save you a fortune
specially now with the attack, prob not best to do blue collar jobs
your likelihood to have another heart attack is probably guaranteed at this point
billy, i would def recommend trying hard to get into dev as a career, just gotta not give up. if you want any resume advice just send it.
probs will end up doing that since i cant work labor anymore
i see no response lol
can't even use a keyboard and this guy is planning to maintain code
i give career advice out often, if anyone needs tips just ask
anyone I know whose ever had one heart attack has a second one, and a third, and so on until you croak
i too had a hard fucking time for the first
i'll hit you up in a few months, aikar. i'm sitting in the side lines for the next 6 months or so (doctors orders)
well, yes too early to apply for a job ๐
fun fact: i'm not allowed to lift more than 10 lbs until january
github exists
Lol I do commissions tho
but if you want to do this career, now is not too early to work towards it
learn programming, make a portfolio
I've done lots
do as much projects as you can, contract work is great too
@slim nymph I'll may hit you up for that career advice if the self employed route goes south
I'm mostly freelancing coz corona and health and, bleh





