#general
3141 messages · Page 582 of 4
it's been awhile since i've done stuff with computers, let alone databases lol so I'm still rusty
rust
it's the open source fork by the original mysql dev replacing mysql as mysql is orcale owned
and as everybody knows: oracle is shit
oracle really do be shit
who uses oracle database?
i've seen they're the most used
corps
fizz buzz enterprise
old businesses
$$
they use it bc it works
and they're old and scared of everything
I mean oracle supports that if you pay them ¯_(ツ)_/¯
usually you don't get that from an open source community, lol
some businesses literally wont use software if its free
I use Postgre just because good documentation
yeah
support packages are very important
afaik oracle even ships custom database software if the client really needs that
try getting a custom fork supported by the mariadb devs, lol
I looked at it and I thought this is what everyone's code looks like except mine
unelss that business accepts the risk and builds a cheap model on open source, which is common
use open source, contribute to open source
im pushing my company to embrace open source more
may ask what's that Hydraxus
trying to start the lead on open sourcing stuff
very nice sentiment, but being on the cutting edge is a good way to get cut
apparently im the first to ask lol, and its a huge fucking company
many businesses will very rationally just stick to what works despite any costs or licensing fuckery
depends
we are mixed, we have so many subsidiaries some are .net, some oss
sudo apt install mariadb-server is stuck at 95% 🤔
can you provide any more details than that
my work is oss based
who
older companies will generally be relying on proprietry software, given that a lot of the time, that's all that was available
iso
that and the cost/effects of migrating an existing company from one solution to another can be pretty crazy when you have years upon years of operational data
@still smelt it's meant a joke. When I first saw it I thought like this is exactly how people that know their shit write code haha
just wait, iso
ok
same thing applies to video editing
having worked with autocad here and there, I can confirm that there is nothing in terms of opensource at the same level
imo Blender is way better than any proprietary video editor ¯_(ツ)_/¯
there's great OSS video editing softwares that overcome almost every challenge adobe premiere faces
Hello i need help with my server the fish event takes for ever
heck, jumping cad packages is a royal PITA, things like autocad are also based on really old systems, with oddball commands for doing things which don't translate across platforms too well, you'd literally break a LOT of workflows if you jumped somewhere else
the cost savings of using an OSS variant is far from outweight by the hit it would have on devs
Viper i dont want to change it but i am serious it ist workingµ
well, not devs, I mean, the engineers who do the drawing
it tokes for ever
holy shit autocad is $1.5k per year
that's why r# adds IJ keybindings to VS barty
yes but still integrates with desktop
Because the paid option is cheap as all shit when you consider enterprise, and actually has a level of QA which.. .well, works
how long should I expect to wait phoenix616
ideally until it's finished ¯_(ツ)_/¯
lol claro
not to mention that most of your office staff is generally not tech-wizzes, as well as OS alternatives having their own stupid issues
comparatively
autocad, etc, is expensive as fuuuuck
But, you look at how much you're paying these people to use that software, it's nothing
could take a look at htop to see if it still does something I guess
Imagine doing it as a hobby or trying teaching yourself 😩
how does the irc relay discord webhook get profile pictures
same nick on discord
After working with teammates in high level CS courses it feels like a good amount of people have no idea what they're doing
you know I could've stolen your name in the meantime
and you wouldn't have been able to get it back
:)
yeah well i'll just yell to the nearest oper
I'll take "what is nickserv?" for 100
at the top of my lungs
also yeah LOL i registered Airee
go for it
look at the log?
sure just add my private key
no scam
ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCo5idOLahKgz+avJECx4CM2U/WL1omDm4mNmBQzdrnwyKfMcf6SymSipiTOTcLZGhf+X0LdXpFCVCNXMbLINPSTMhGh4nuNmdv8B/kgc2cZwp/W8bnfhaV6BLuz7bbBWu+oU380EnpdVYK1t2W6LYuUNwweacqkWLAvl7+Qfh0EBWJAyQRi1wjqLWV9qjMhwXCJVugUJRiz1sCGcfzjrTlNTq9nO8FwkX7OL6lLUovm0WBlDVp6h6RaRI/vhnh9r8WkpQ0PRaP1c3YGqbzyvADojKNFzxq9S5ORcb7fcHRrcvz4HyvLdv8GnqU5M8lvDfsksJXZBJynNGXJ+9kiNxb
Are there actually pretty big differences mysql, postgres and maria?
what happens if you accidentally send your private key
i guess the servers that have added my key over the years are fucked
monkas
you make a new private key and stop using the old one entirely
Luckily I started using random generated password about 2 years ago
apparmor 
lmao apparmor
what's apparmor
selinux but bad
what distro are you on?
that's gotta be like ubuntu 19 or higher?
lsb_release -a
Can we get SELinux?
No we have SELinux at home.
SELinux at home: AppArmor.
systemctl disable --now apparmor
it'll try to use polkit but yeah
you should probably sudo that if you aren't root
i never use sudo because i'm a madman and an awful person
what a mad lad
just log in as root 5Head
yeah I just run my minecraft network inside root account
okay well
i'm not that bad of a person
i also use selinux
fixed it
ran sudo aa-remove-unknown and then I was able to run sudo service mariadb start
I did
ok so i ran mysql_secure_installation, set a password and everything, but now running mysql -u root -p throws an access denied error no matter what password I use
welp
gonna reboot
same thing happens
🤔
anyone around that has experience with mongodb?
i've been trying to fix something for hours now
idk how
You shouldn't need to enter the root password locally, due to how Debian sets up MariaDB by default.
(and I assume Ubuntu doesn't change that).
cheers
Got to step 5, the first command is still saying access denied
what should I do? uninstall and reinstall it?
do I need to purge any files manually
you might not need -p
Where can I ask for plugin recommendations? 😄
mariadb has a unix auth thingymajig which uses your current user as basically auth
ye michael
you need to be logged in as root
i'm replacing a document with another one with the mongo java driver, nothing out of the ordinary. for some reason, it freezes.
System.out.println("Saving document..., _id = " + realm.getUniqueId());
realmCollection.replaceOne(Filters.eq("_id", realm.getUniqueId()), document);
System.out.println("Document saved");
i even enabled debug logging for mongodb and everything still works. the code never gets to the last line, but the driver doesn't say anything, not even in debug mode. is there anyone that could help me by any chance?
@vernal moth ^
attach a debugger and start walking thru the stack ^^
according to yourkit the thread is just waiting
the stack will basically tell you where it's waiting
you'd --purge iirc
what if i already ran apt get remove D:
eerrr... it gets funky as dpkg tracks state and stuff
aaaaaugh why does this have to be so complicated
ah, apt purge, apparently
i'm an idiot
for the record, you said it
i just kill -9 gnome-shell
how do I get it back lol
idek
i screwed up guys
what do i do
i only have discord 😂
if you can run a process, just run it
pinches KennyTV Nose.
Yeah I can do that but I still have to pass the class lol
I have all As except 1 class.
Which I have a D in.
it was from the system monitor, I thought I was killing the apt install mariadb-server because it hung again
had to restart 😅
Would paper work for RLCraft?
No.
what's RLCraft
Mods.
Ahhh
vert dat fuk left again
@static badge you should use the best picture of that man
oh gosh in the latest snapshot Mojang added freaking more walls
also mojang y u gotta be putting so many particles in the air in biomes
So to be GDPR compliant, you have to delete everything about a user if you ban them...
Imagen reverting every interaction to the world he made.
"the flattening" really made all these new blocks possible lol
personally identifiable information isn't it
that's not 'about a user' (NAL)
i guess one has to ask what minecraft really is about then, if you want to ponder their direction now a days
lmao z I read your message as "ambulance sounds"
seems more about the cosmetics than survival
ah yeah, caves are quite lackluster
maybe at some point they should experiment with the aether again, but I know they have an island sky world type in the generator
abt a year ago I heard someone say "Isn't it ironic that the two most boring things are mining and crafting in a game called Minecraft?"
I like mining tbh
1.12... maybe?
no recuerdo
the ambulance sounds are quite nice as well, yes
1.12 si
Yey
look at my blocks, my blocks are amazing!
https://streamable.com/1elbqk
3x3x1 blocks with culling, so not rendering every block vertex, only those that are visible
noice
the code is so horrible tho 😂
the neighbor check is hideous
> Dictionary with Vector3 as the key
Those aren't int vectors are they
Nvm they're int vectors
would it be better to have a table_<worldname> with entries for blocks like chunk_x, chunk_z, block_x, block_z, y, type_index or one blocks_table with world_id, chunk_x, chunk_z, block_x, block_z, y, type_index and a worlds_table with world_name, world_id?
i'm worried the blocks_table would get really big really fast with all the worlds in one table
so would paper even work for RLCraft or am I just trying to do something crazy lol
Oh I missread that lol
I've been looking up guides on spigot for making a PVP server has anyone here tried one that they liked?
if your server follows a guide to a T to get set up it's going to be another cookie-cutter server, no?
But I'm just trying to learn at this point
So far this is my 4th attempt and not very happy with the results so I thought I would follow a guide and then build from there
@jagged egret is that for configuration?
no it's for a mysql db
why does my mysql db report 4 connections o.o I'm the only one connected, in theory
I think that is pretty standard
I host a lot of websites and work with mysql it always reporting a lot of connection
Pools.
aaah
yeh connection pools open up to like 10-12 connections at a time iirc
and keep them alive constantly
>....=>.... [13:14:25 INFO]: This server is running Paper version git-Paper-162 (MC: 1.15.2) (Implementing API version 1.15.2-R0.1-SNAPSHOT)
>.... [13:14:25 INFO]: Checking version, please wait...
>.... [13:14:25 INFO]: Previous version: git-Paper-155 (MC: 1.15.2)
>.... [13:14:25 INFO]: You are 2 version(s) behind
>.... [13:14:26 INFO]: DemonicSpade lost connection: Disconnected
>.... [13:14:26 INFO]: DemonicSpade left the game
>.... [13:14:55 INFO]: false
>.... [13:14:55 INFO]:
>.... [13:15:10 INFO]: PerplexedLake issued server command: /tpa Vi_Angry_iV
>.... [13:15:11 INFO]: false
>.... [13:15:11 INFO]:
>.... [13:15:18 INFO]: Vi_Angry_iV issued server command: /tpaccept
>.... [13:15:24 INFO]: false
>.... [13:15:24 INFO]:
>.... [13:15:36 INFO]: false
>.... [13:15:36 INFO]:
>.... [13:15:50 INFO]: false
>.... [13:15:50 INFO]:
this just started happening after i ran /version
odd, cause it has never happened before 0.o
and it hasn't stopped doing it once every few seconds
final World worldObj = Bukkit.getWorld(world);
checkNotNull(worldObj, "Critical error during regeneration.");
What an informative error message <.<
this code is giving me a headache
anyone got any ideas how i can track that down?
binary search
That's not very good either
but I guess you're kind of pushing the limit, depending on what type of server it is, so it's not terrible
beats my 10tps on 1.14 with 8 players XD
shitty hardware mostly... that and hosts refuse to use the recommended args like they are the plague
you realize you're not limited to one host right
yeah but i got what i was expecting out of a $7 host XD
the bridge is in kotlin
UwU
yes
99.9% Java, 0.01% Other
the other is FORTRAN so watch out
sounds too similar to fortnite
so no
@upper flicker https://github.com/KyoriPowered/limbo/blob/master/src/main/java/net/kyori/limbo/github/feature/apply/ApplyFeature.java
rate my code
no
wasnt there somebody who used to join and call me by my name
whatever happened to them
@cosmic raft 0/10 I can still understand whats going on
tbh I think its an interesting style
I dont know that tehre's anything wrong with it in this context
I can see some places not liking it I guess
where? :D
exactly what I'm talking about
what are "IN parameters"? I'm reading the PreparedStatement javadoc and it's not clear what that references
hehe
I forgot the naming I used for generated events
net.kyori.event.asm.generated.955ee51180.ApplyFeature-issues-IssuesEvent-8.execute
I made a chat app called HyperChat.
HyperChat is a speedy fast open-source chat app developed by Justsnoopy30.
The main chatroom is General.
it just throws all teh users in the same room?
No.
I mean that's the one I'm in xD
Recently I added password hashing (with salt).
General with capital G.

@tranquil solstice Please don't advertise.
I think its a little vague
we should probably clarify what is and isnt allowed further
I dont personally have any issues with this sort of thing but we'll have a more formal conversation in one of the mod channels
this isnt the only rule/nonrule vague thing
A big flaw with the mod channel is that I'm not in it
no anything from cityweebstret is the most important thing we gotta add tbh
This is what we mean when we say running a project sucks tbh
You called me intelligent, I'm clearly a superb fit
I don't recall the other part
t joined t left Seriously, people keep doing that xD. It's HyperChat not OneLetterJokeChat...
y r all ur files dumped in a single directory
Uh...
Why not?
Putting everything in a src/ directory doesn't make it better.
Who the hell said that you were supposed to do that? <.<
I'm going to let you figure that one out on your own
I dont mind as much for random web projects
then again I really dont do much web stuff
At least you have a dark theme
Which was a hassle...
and also the buttons and the User list text needs some margin
it looks like they're trying to escape
Yeah I'm not that good at designing...
hmm
Okay I'll let you know I'm actually the best designer ever
You mean like margin away from the edge of the screen?
yes
Oh
@static badge go doesn't
isn't go kinda 
yes
it's a trash langauge yeah
oh good I said that yesterday and I was worried you were gonna show up and slap me
I think I put a bit too much margin...
is your day to day still go demon?
no hasn't been for a while
we're a tight knit group here
my year or so with Go has taught me how awful it is
I'm a java dev now writing...python another trash langauge
😦
didn't you make streams in go for the memes 
For networking/web related projects, I use Node.JS.
@tall garden was the other dev on that go project and he also has a great appreciation for how shit the language is
yeah documented the shit out of it too https://github.com/DemonWav/go-streams
@tranquil solstice we're mostly fine with the occasional chat about your fun personal project but putting it in your username makes it look less like a fun personal project and more like spam
Yay, now I can close that github issue with the settings icon in front of the top of the scrollbar... solved 2 problems at once
Well I had it for like 3 months and 2 stars...
Meanwhile my other project MMD had 25 stars...
yeah I get that, we've all been there. hell a lot of us still have repos just like that
just, you kinda see where Im coming from?
Yeah, sorry.
no worries
https://github.com/DemonWav/wat only has 3 stars it's bullshit
Please don't actually use this. will most definitely use this
make plotsquared require it
What do y'all think about NodeJS?
Java 12 tho
I need to flush out the implementation with it
yeah and upgrade it to java 14
it only has 2 events implemented
this is a community of people who work in Java/Kotlin/C/++ etc
you may see a lot of unbridled hate towards nodejs
be warned
heh
eyykar loves it but it's trash
ok
also yall should use all of my plugins because they're super awesome and you won't regret it :)))
this is not an ad, this is a PSA
I have so many failed projects that I've poured my heart and soul into.
Not that I have a soul
no heart either
I have half a heart tbh
You wouldn't believe how many people have the nerve to decompile Minecraft, edit it, and run it, but don't know how to fix a small gradle problem. xD
@ancient bolt if you really want people to not use it, make it require the --enable-preview compiler and runtime flags
make it require your own jdk fork
that'll do em in
"no build instructions fuck off"
I mean you can pr it if you want
@tranquil solstice as long as its not an problem with a repo using ant
then youre on your own
I'm too retarded to set up a jdk fork
What?
what is buck
.g buck
(DiscordBot) https://www.buckknives.com/ -- Buck® Knives OFFICIAL SITE - Shop knives, tools, gear,...: "Quality made, life-time guaranteed knives for the outdoors, hunting, fishing, survival and work. Pocket, folding, or fixed blade knives to fit your..."
No, I mean I don't have a problem. But there's 7 "issues" on my MMD repo about gradle this, gralde that.
lol
knives 
the the buck
oh yeah Im sure
oh it's another build tool
bazel works way better with java tho
it even has shitty maven support
https://docs.bazel.build/versions/3.0.0/tutorial/java.html <-- this isn't even half bad
Cityweebstret, do you think the margin is better now?
how does one use coloured log output
I don't think
at least it's not eclipse export to jar
I mean it's a little bit better yes
the short answer is you dont
people get upset
the easy answer is just get the console command sender and send them chat messages xD
unless you want it logged to file with ascii color codes
Colored log output...
using xD in 2020
I spent 8 hours adding that to my fabric server mod...
z no
I've logged to files with ascii codes
if you have a terminal that understands it it can help
java_library(
name = "everything",
srcs = glob(["guava/src/**/*.java"]),
deps = [
"@maven//:com_google_code_findbugs_jsr305",
"@maven//:com_google_errorprone_error_prone_annotations",
"@maven//:com_google_j2objc_j2objc_annotations"
],
)
looooook you can import maven dependencies
using ninja directly
it's horrible but it's maven!!
I think the general aversion is because of stuff that wants to parse it
also who wanted to share go hate
i want to hate it too
hold up i have this one code snippet
if err != nil {
return err
}
nuff said
maybe we should filter the colour codes from being logged
fuck this language
to the file
my super awesome logging framework does that
Go is very interesting
i've done golang for 2 years now and i'm more than done with it
that's why people should use my super awesome projects
That's the best I can say about it
I spent 8 hours adding colored logging to my fabric server mod involving making a class with about 30 color and formatting variables I made, along with figuring out how to include JNA (Java Native Access) in gradle and use it.
@static badge they are never written to file
what the hell did you need JNA for
not with paper anyway
wait then what's the deal then
you simply could've used minecrell's TCA...
somebody wanted them to be
90% sure they're written
Fixing windows' console mess for them...
and borrow paper's log4j config
I had to call a win32 api if the mod was on windows to enable a certain hidden terminal mode that was needed for asci codes to work.
ah yes
holy shit what horror is that go-streams library
win32 api
smh when people take more than 2h to review your PR

dont get leaf going on win32
did you enjoy your time using it
I hate collaborative programming
No, I hated it.
smh when people take more than 2 seconds to review pr
just force push to master city
reeeeee
But in the end, it made colored logging easy as pie 😄
there's nothing wrong with pushing to master 
(This was a fabric server mod)
probably a TCA change compared to the old logger system in CB/S
since supposedly spigot does log with ansi codes by default
good thing loggers arent api
Fabric controlled the logging config, so I had to do this.
and the good old extract into jar method 
REEEEEEEE
i remember having hard time with that bs
couldn't get fly hack and xray working 
Now it's as easy as 🥧 :
Just setup the logger like this:
import static net.hypercubemc.hyperfabric.AnsiCodes.*;
Logger log = LogManager.getLogger("hyperfabric");
Then:
log.info(colorBlue + "[HyperFabric] Loaded HyperFabric v" + version + " successfully!" + formatReset);
Done
that's not... comfortable
Use String.format
not using String.format should be illegal
there's no reason to ever concatenate strings using +
well doing concat will inline it into string constant
@static badge back in my day we replaced classes in the jar 
don't you know that city
it's ugly
ur ugly
at least I'm smart
I use fabric so I can mod the server (no client mods needed) on a snapshot release of Minecraft.
no ur not smart either
Back before fabric, that wouldn't happen. Ever.
you just proved that you aren't
people that don't use String.format probably use println as well 🤢
no shit why ps is so broken all the time
Sysout and concat or bust
it has never been broken
bad city smh my head
not even once
Why though?
printf wtf
to save space and have every message appended to a single line
imagine logging multiple lines
smh
String.format("mikro is %s", "dum")
so convenient!!!!
ofc it is
noshit yeah
did you need to read to find that out lol
I used log.info()
same thing
import static java.lang.System.out;
- signs r dumb
people who use string.format probably use streams all over
actually streams are probably cheaper
format > everything else
I went a bit overboard with AnsiCodes.java though...
format tends to hurt
but streams could hurt even more
imagine implementing string.format via a char stream
oh dear god no
Continued...
y is that not an enum
including your discord account
Did you forget:ohno:?
everything should be an enum
you were saying spotted?
Someone should add :ohno:
wait what'd I miss
From the fabric discord.
wtf is 
link the emote url
that?
get nitro
lets see it
no help only info
oh
thank you, very cool
no
Someone add
...
demon added a bunch of taylor emotes 
only thing I see wrong is the names
Heh
class could be final as well
pfffft
The joke was that it's LONG.
no one does that mikro
i do
well arent you a good kid 😦
😊
If you think that's bad, before I fixed it, HyperChat allowed you to type any html element (including <script>) into the chat box.
imagine getting fukd by random tryhard chatroom
lol
Now it should be secure though; Passwords are hashed and I have an xss filter library.
@still smelt the console is 'interactive' it shows colors to bring your attention to them
file logs are 'static'
they have to be human readable and parseable by other stuff
Did you notice some of the formatting strings in the screenshot?
All parameters should be final, so should 99% of classes :]]]
^
every variable that shouldn't be mutable should definitely be made final 😄
first smart thing i've seen coming out of city's mouth
if you're using like image processing to parse the console output you're on your own
love to see your proof of concept though
probably just the mspaintide guy though
parsing console output with ocr...
just apply black/white filter and crank contrast up
formatBlink, formatCrazyBlink, formatFirstAltFont, formatSecondAltFont, formatFranktur, formatReverseVideo...
you can't use it too much
use the data type that you need and expresses what youre doing
internally the jvm will use an integer anyway
but if your code makes more sense with a byte, use a byte
idk why iterating blockpos in a chunk would make any more sense with a byte personally
but its your code
so
¯_(ツ)_/¯
formatBlink, formatCrazyBlink, formatFirstAltFont, formatSecondAltFont, formatFranktur, formatReverseVideo...
I wonder what would happen if I use those to get the server owner's attention to fix something immediately... 😁
don't do that it's fucking cancer
luckily blink doesn't work in most of the terminals now
not necessarily
JVM pads to 32 bits internally
all integer types generally take 32 bits (or 64 for long)
they do that for performance reasons
so 4 bytes and a single byte both take 4 bytes of memory
TIL
how the JVM represents types internally is all closed door/behind the scenes/nunya bizniz/dont rely on it
so
just try not to care I guess
I had a hell of a time getting blink to work in the GUI, btw.
bitwise operations aren't even defined for byte and short
so yeah, don't care about it unless you have a reason to
yup, they're promoted to ints
i mean, they work the same. as to bools
the result is just truncated to the correct number of bits anyway
isn't this because a word is typically 4 bytes?
Oh yeah, I used Google's Lighthouse tool to figure out how to speed up HyperChat to make it really fast. Once I fixed most of the issues, for one, my performance score went up to 94%, best practices 93%, SEO 100%, and accessibility 100%.
And my page load speed went from ~4 seconds to ~1 second.
Really useful.
declare all variables separately .-.
wow
i.e. readability, maintainability...
cursed snippet
not for code golfing
Oh yeah, speaking of styles, I use a particular coding style for HyperChat...
you just blew my mind:
- I didn't know these two features could be used at the same time to achieve something like this
- seeing that code made me shoot myself in the head
as long as it's not md_5's bungeecord style then it's fine
I dont even like declaring multiple variables on the same line
and youre doing it with different types
jesus
Global declarations.
that is very smart actually, dynamic typing
It's SnoopyStyle. 😁 Take a look at the main code (Server.js, chat.html, chat.js, chat.css) and tell me how aweful it is...
stop. sharing. your. project. every. other. second.
also stop bullying me, plotsquared code is amazing
But 15 minutes passed, not 2 seconds.
share it once more uuuh
no you actually have been mentioning it constantly
(Mention !== Link)
shove it down our throats more
!== bruh


that's what she said
stop being sexist
that's what they said
thats what [object Object] said
What is this? hippie land. smh
.toString()
@olive garden wanna do a drinkning competition? first one to throw up on cityweeb loses
few issues:
- there are travel bans in place
- I wouldn't have to drink to throw up on city
I'm sorry, that was rude
why did i guess the latter option...
that was very mean
you know I love you
I am very upset
cry us a river babe
it's a weeb speak
sinusoidal 😆
so you get a runny nose?
LOL
lmao
pi
.wa A\sin(2 \pi f t + \varphi) = A\sin(\omega t + \varphi)
(DiscordBot) Real solutions: f<0, (1 - sqrt(5))/(4 π f)<=t<=(-3 - sqrt(5))/(4 π f), ω = 2 π f, f>0, (-3 - sqrt(5))/(4 π f)<=t<=(1 - sqrt(5))/(4 π f), ω = 2 π f - Solutions for the variable ω: ω = 2 π f, Re(sin^(-1)(2 π f t + ϕ)) = -π/2, Re(sin^(-1)(2 π f t + ϕ))... - https://is.gd/u1t7Hc
Wolfram|Alpha brings expert-level knowledge and capabilities to the broadest possible range of people—spanning all professions and education levels.
Today i feel like shooting some vipers
Worse: Math speak
mikro just copied whatever viper wrote
"you can't just sovle a function" that's an equality you potato
mfw
...
Off topic: Ternary operators are 🚫
sure
no
no
no
what are ternary operators
cond ? a : b
SnoopyStyle says: No ternary operators.
Z, ur fine too 
mikroscam

a = b ? (c ? d : e) : (f ? g : h);
this is fine
You can nest those? 👀
SnoopyStyle also says: No classes.
delete your style
delete your discord while you're at it
yes please
(In javascript)
delete your bullying
cant tell if retarded or just autistic
delete city
That style only applies to javascript projects.
restarts OVH box, can't access it for an hour 😄
let's tell github that snoopy is from iran and he'll get banned right away :^)

Intel SSDs?
Intel SSDs.

Classes in javascript are dumb.
OOP is dumb overall
Programing is dumb.
i only ever used OOP 
what the hell does pointers and malloc have to do with anything? <.<
Ikr...
Hello have u heard of C++
new programmer whut that
Javascript of the client side, javascript on the serverside, javascript everywhere. 😁
theres already a JS os
(NodeJS is javascript server side)
imagine your broadcom wifi chip running js
(not what you are looking for tho)
you are too
ok
Broadcom 10GB SFP cards are ok,
WiFi avoid at all cost.
apple uses broadcom wifi chips 😩
she isn't anymore
Who doesn't?
less deaths total or per capita
both
wait where is ded from
belgium
o
we have 2.2k confirmed deaths
we have less than 700 😄
.g estonia corona confirmed deaths
(DiscordBot) https://en.wikipedia.org/wiki/2020_coronavirus_pandemic_in_Estonia -- 2020 coronavirus pandemic in Estonia - Wikipedia: "29 March: Two more confirmed deaths of coronavirus patients, bringing the total to 3 deaths in the country. 30 March: Health Board requested..."
they have 17k deaths...
corona is gonna murder third world countries
Estonia is Finland--
Also SnoopyStyle: No typescript.
no finland is fake
it reached india now
no Finland > Estonia
Finally, can't wait for Serbs to do all the killing.
it is
It's next to ethiopia
mikro is african
there's that ship that sucked at being a ship and decided to be a submarine instead
called estonia
.g estonia ship
(DiscordBot) https://en.wikipedia.org/wiki/MS_Estonia -- MS Estonia - Wikipedia: "MS Estonia was a cruise ferry built in 1979/80 at the German shipyard Meyer Werft in Papenburg. The ship sank in 1994 in the Baltic Sea in one of the..."
lmao city
there's... some controversy going around with that ship
did it disappear in spooky triangle
Here is a new topic.
well it sunk
you should stop washing yourself there
u'd be dirtier than when u started
implying i'll get dirty
Any guesses for the programming language?
i don't do nasty shit
no u
I'm dirty alright
Any guesses for the programming language?
no
stop spamming
can you fucking stop
I can confirm, he can't.
isn't it obvious already that nobody gives a shit
zbk, InventoryTweaks perhaps?
not sure how updated it is
but it used to be pretty neat mod
if you need forge
then fabric ain't gonna help you tho
it's completely diff modding platform
👌
Does anyone know a good video series explaining multithreading/concurrency?
.g java concurrency in practice
(DiscordBot) https://www.amazon.com/Java-Concurrency-Practice-Brian-Goetz/dp/0321349601 -- Java Concurrency in Practice: Goetz, Brian: 0785342349603...: "Java Concurrency in Practice [Goetz, Brian] on Amazon.com. FREE shipping on qualifying offers. Java Concurrency in Practice."
i mean you can prob find a pdf
i can give you some homework back
but like ¯_(ツ)_/¯
can't you uh

I have a pdf but I'd like videos if there are - i learn better visually I think
okay but no
Concurrency.
Java Map<String, Object> data = new ConcurrentHashMap<>();
Somehow managed to write a config "framework" two years ago.
Now I don't understand a shit of my code.
Gonna rewrite that from scratch.
Absolutely not.
Yes lol.
Fuck Scratch
snoopy if you could refrain from sending executable files over discord that'd be great thanks
Wiz will tell ya. :P
Hmm?
Okay, but I don't see anything in the rules prohibiting "sending of executable files."
i don't care
i'm telling you, in my capacity as a mod, not to do it
is that clear?
I said
Okay
and then decided to pick a fight about it i guess
Anything after the "okay" is a side note.
mhm


wow
