#general
1 messages · Page 212 of 1
LOL
Do they make 10GB/s ssds for pcie gen 4?
if so I might have to invest
Oracle javadoc be like
My brain leaked some juice while reading that
@gilded nova I love how in the JS meme you posted half of the things are 100% sane and in fact expected when you know the tiniest bit about the underlying datatypes and the other half is batshit crazy
Well I wouldn't expect Math.max to return -Infinity lol
not really lol I used js like once and never had the need to again
It returns the largest value of all the values passed
Like Math.max(1, 2) returns 2
well yeah that makes sense
And you can pass any amount of values
Even none
Exactly
. _.
And in that case the answer is correct
eh...
Or can you find a number larger than -infinity in an empty list?
What?
it's not as stupid as these very rare edge cases make it sound like
I mean in all seriousness. I’m an avid hater of JS
As if I'd use js anyway
he is 
i was surprised you came to the defence lmao
And we could discuss all day if it makes sense to allow passing an empty list to a max function or not
how does this make sense
But the expected output of that case is the smallest representable value
xD
And turbo just because I hate it doesn’t mean I’ll let unfounded criticism stand
You're so sweet xoxoxoxo
@gilded nova it's summing the letters of true + false
javascript? More like javaskript
don't you dare

are you kidding me
WHY
if (BrainStone == inChannel) {return savage;}
why is it constantly implicitly converting between strings and other types
why
That’s the insane part
because + does funky things in js
Using + and == introduce you to a world of pain in JS if the types are not the same
That’s fine
sort of..
that's why we never use ==
docker
There are also cases where == is usefull
Ubuntu is propably Dockers most downloaded container image, since a lot of containers utilize it
LOL
But too many cases where it’s insane
It all stems from the fact that JS was never supposed to even have errors or exceptions
that sounds like a terrible idea
Which is an insane concept to begin with
Also fun fact
Feeding an array of numbers into the built in sort function sorts them alphabetically
why
pfff
O _O
Good question
I mean the why is simple to answer. It converts it to strings before comparing
But why it does that?
Javascript
because you can have an array of anything and it makes a string out of them "for safety"?
That’s insane
No reason whatsoever
It was just a faulty implementation when it was introduced
And because backwards compatibility it can’t be fixed
CAn you install android on a pc
Lovely isn’t it?
Yup
Android x86 @gilded nova
¯_(ツ)_/¯
And whoever had the glorious idea to have JS run Server side deserves hell levels of torture on this earth. Guantanamo would be a relaxing holiday
JS developers assemble
You know, there is one thing to make any developer discussion burn
That is?
Just say "I am a
developer"
oh god no
The room will burn in the flames of hell
i drink to forgeeeeet
Compared to JS PHP is a relaxing experience
I’ll take inconsistent function names and behaviors any time over the insanity that is JS
Especially considering it’s documented
I develop using php and also have good reason to, but a lot of developers bash php developers just because it became a meme to bash on php
php docs fucking suck tho
No?
How?
at least MDN has excellent JS documentation
They are very well documented and explain in detail what the function does
Oh yeah, take a look at composer "Just read the code to find out what the lib does"
during my time as a php dev i found most of my answers on stack overflow than on php.net
For example?
I mean if you don’t know what the function is called you’re gonna have a hard time finding it
But that’s not a fault of documentation
I write most of my classes myself, for others I use composer, but not for the really simple things
Especially considering google can find it well
Oh and I’m soooo happy that WASM is a thing
It’s a pain to load onto a page but besides that it’s great
Such a blessing
Also a thing I always do is document each and every function. I hate developers that write whole classes without a single comment and when you ask them what it does "I don't know anymore, its too far back"
Any ideas why remote desktop is just black when I log into my ubuntu desktop?
Tried
maybe turn it off and on again
Done that 4 times LOL
oh well
I hate developers that write whole classes without a single comment
o -o"
hey it's me
/*
* example function
*
* A example function to showcase how to document code
*
* @param boolean $bool A boolean variable
* @param string $string A string variable
*
* @return boolean|null Returns a boolean or null
*
* @package de.aperture-development.example
* @author Nonono <bleep>
* @copyright 2019-2020 Aperture Development
*
*/
is this too hard already?
I don't think so. It is really easy to do and does not require a lot of work
Yes, whenever I have time and feel like it, I will most definitely comment it all, but I also try to write code as self-descriptive as possible
The IDE can auto generate that 
lol
That too ^
I have a plugin for that to do it or me
I just need to write the explainations
My stomach is killing me. 😫
But often I find myself to document the function before I write the code in it, so I know what it should do and what it should return and I just need to write the code for it
You do not want to see my whiteboard
When you think about it, it makes sense
What?
To first think what the function should do before writing its code
Sure
Well yes, that of course
But I prefer making some sketches on a piece of paper rather than typing it out, I'm going to type the actual code anyway
When working on APIs I also tend to do that
Update: Seemed to be because my user was logged in (and I had automatic login enabled)
APIs comments 100%
No excuses
*Looks at Mojang*
I do both, I make a project plan ( drawn on paper or my whiteboard ) and then when I am at the code I first define all functions I need, think what parameters it should have and what it should return, and while I do that I already write the documentation
Brigadier has a fair amount of code, and like one or two classes fully documented, then the whole rest nothing
Eww
A example of "I will do it later" is CloudNet
Pff XD
@gilded nova 👍
I only ever do that for the very very very core structure
At the beginning of a project
But yeah, fefo, look at the cloudnet code. It has not one single comment in it besides a few "@deprecated"
And only if it’s important
¯_(ツ)_/¯
I think its better to have it all planned out beforehand
and then just code after shema F
I believe if the structure isn’t self explanatory and easy to mentally recreate it’s fundamentally flawed
Documentation is very important
https://media.discordapp.net/attachments/722905287102824618/747288895548293190/unknown.png
BungeeChat2 would be a great example of such a flawed design
It’s my plugin
For more complicated projects, such as a WebAPI that has several functions such as permission handling, user management, server pinger etc. It makes sense to first plan out the project beforehand. The bigger the code gets the more complicated it gets, and due to my project plan I am able to jump in and out of my project at any time and don't need to find myself into the code again first
The whole project is planned out from A to Z
@gilded nova the plugin has grown out of its initial design which didn’t accommodate many of future extensions
Meaning it’s a mess
What about a database structure for example? Are you also just writing it up and not planning it?
For example chat messages are handled wildly different in 4 ways depending on the configuration, permissions and how the message is sent
What about a database structure for example? Are you also just writing it up and not planning it?
What about a database structure for example? Are you also just writing it up and not planning it?
@vocal rivet actually yes
xDD
Though I haven’t dealt with anything larger than 5 tables
ehhehe ^^'
For larger database structures I would plan out the rough structure
The details will be decided on the fly
And adapted too
nice
I would not like a developer doing that tbh
you can't like plan everything completely ahead
that'd be called overengineering then
You can be as good a planner as you want. But you’ll never be able to plan perfectly
And obsessively adhering to original plan is a recipe for doom
I never said that changes in the planning are excluded, but having a structure to work after makes the workflow easier
Why for example would UMLs exist? Or SCRUM? Just for visualizing purposed?
I would show you a example of a table structure I have planned over weeks to include all important data and allow changes afterwards that do not cause the system to fail
Why for example would UMLs exist? Or SCRUM? Just for visualizing purposed?
@vocal rivet sure they exist. Doesn’t mean planning out that far makes it any better
but that Plan is a CS project
w e e k s
it knows how sarcastic you are tim
lmao
The thing is of you’re planning that deep, you’re already programming. On paper that is and in an intermediate format
Big words
True
I prefer skipping the step of having to translate the finished program on paper into a programming language
Truth
Well with MySQL workbench you can just transform the plan into a real world thing XD
I’m more comfortable with sketching my plan in the actual target language
also you'll know a lot sooner when your plan does not work when you do so :))
Exactly
My plan does work, its just a matter of me how long it will take :p
I also decided for a Permission -> value system instead of a permission boolean system
HEATHEN!
Not minecraft 😛
I’m not saying planning doesn’t work
I’m just saying if you plan too deep you’re programming during the planning and after that you’re just translating it into code and fixing bugs
I prefer to program in the programming language as that’s a lot more productive for me
For me personally its more productive to have planned things out beforehand and just use the visualization to realize it. Doing it in real time caused me nothing but unclean code ( which I want to forget xP ), but thats me
Maybe also connected to my ADHD, since it is easier for me to concentrate in single portions then for several hours straight thinking -> coding -> repeat
I don’t care for visualizations in the first place
I need some visualization xP
very likely connected to your ADHD then
For me it does make things easier, and I have done a lot of projects this way in the past
I sometimes had it even that I was coding a function and just simply forgot what I was going to do
Amateur. Can’t even keep the structure of 10+k LoC projects in his head. Pathetic
/s
haha
But I am a extreme over commenter, and the CloudNet Developer is the extreme nothing documenter
As long as you’re adhering to only commenting the whys and the documentation, then there’s no too much
I really wish I could show you a example, but the only examples I have is my GMod plugin
addon**
All good
all other examples are Closed source xP
All I’m saying is that
// Adds two numbers
c = a + b;
Is a useless comment
However
// Storing the sun simplified further calculations
c = a + b;
Is a good comment
--[[
Description: Function to send the ban list to a player
Arguments:
player [player] - the player that wants to open the admin GUI
banTable [table] - the ban table
Returns: nothing
]]
MSync.modules[info.ModuleIdentifier].sendSettings = function(ply, banTable)
And we don’t need to talk about documentation
Who are you people
idk
Hi
yeah but the color doesn't quite match the green on the LP logo which bugs me even more lol
It's still blue on mobile tho
yup I noticed that too
Discord's crossplatform feature parity is only rivaled by Bedrock/java edition MC lol
does anybody know a rtp plugin which's prefix is configurable
do you think mojang will fix sign color fading bug?
looks fine to me
https://cdn.discordapp.com/attachments/241667244927483904/751515134563975369/c4664bea5b361723e05771176bd609980f8548be.png yeah this image both signs look the exact same
(offtopic from the original point, but neat looking restone stuff in the background!)
thats off google i was looking for example since my screenshots are bad and i might be colorblind so it would make u confused
Does /worldborder stand for that Border we see on some servers? D:
Using it and it isnt showing or blocking me
Yeah i'm op
>.... [16:14:10 INFO]: ManiacKrackjack issued server command: /worldborder set 5248
>.... [16:14:10 INFO]: [ManiacKrackjack: Set the world border to 5248.0 blocks wide]```
Those lines that represent there is a border
And yeah, it doesn't block
Hmm fixed hehe.. The value needed to twice the one i was inputting
Also, i uploaded a custom map and found some chunks that didn't upload, is there anyway i can just upload those parts?
@main pier what’s up?
Can help here
bungeecord decide to lockup
Wym?
Plugins?
send your whole log too
anyone able yo help me i gavedefaulr spawn permissions meaning they should be able to do set home or home and spawn but none of them work in game for some reason for them
send your whole log too
@short warren where is that
its just a folder called logs then
inside of your bungeecord folder
anyone able yo help me i gavedefaulr spawn permissions meaning they should be able to do set home or home and spawn but none of them work in game for some reason for them
@gilded nova ask in one of the #support-1 channels
hello
im making a plugin
Pastebin.com is the number one paste tool since 2002. Pastebin is a website where you can store text online for a set period of time.
it gives 100 crates, when i just want it to give one
how can i fix that?
what on earth am I looking at
- please follow naming conventions, it screams I AM A NOOB DEV if you break them (in your case, capitalized package names)
- what on earth is with these arrays
- the amount of for loops here makes no sense
for (int i = 0; i < 100; i++) {}
Basic for loop that's probably older than you are
Actually
You want i = 1 and i <= 100
And yeah those var names could use work. myNum gives 0 info on what it is, and it's not even a number, it's numerous.
!shorthand
Sorry! I do not understand the command !shorthand
Type !help for a list of commands.
. _.
Lol
what on earth am I looking at
Tbh conventions do scream that but eh, if it works no one can tell you otherwise
- what on earth is with these arrays
Lmao especially that myNum array 😂
When I started I swear I would’ve don’t that too
“For loop is way to complicated I can just write it out that’ll be quicker”
!advanced @gilded nova
Discover some of the more advanced concepts of LuckPerms, such as permission calculation, shorthand permissions and more.
Hey _11! Please don't tag helpful/staff members directly.
lol
i am a noob dev
but anyways it works
and thats all that matters to me
its not like its public code
@gilded nova hello clippy
you should always try to have clean code though
because it makes it easier to make changes and you get less problems
i dont have the skills to make it cleaner atm
Fair
i just made this because the other plugins were being stupid and i thought i could do it
i was very wrong
i mean i plan to learn java, after python and js
You never waste your time if you’re trying something new
Failing is a part of learning
i mean im not using the 1-100 thing anymore
that was for a test
how would i go about doing that in the future?
for loops
whats the issue with arrays?
Arrays are a pain to work with
They have their uses, but usually some form of Collection is easier
although in this case just an array would do I think
Yea
The loop part yes
correct. remove your arrays, and replace the loops with that
(changing 100 to the appropiate numbers of course)
Is it just me tho that I prefer < 101 in stead of <= 100
eh at that point it's personal preference, either works
Oh and @gilded nova what are you using to write java in?
and are you using a build tool like maven or gradle?
Eclipse 😳
I'd highly recommend switching to Intelij, it's modern, higher quality, and just all around better
Larry was summoned
I'd highly recommend switching to Intelij, it's modern, higher quality, and just all around better
Fax
Dump vsc tooo
https://www.jetbrains.com/idea/download/#section=windows Save you the trouble of googling 😛
i like vsc
its better than atom
But for Java it's not really the greatest
plus VSC is an electron app isn't it?
so bye bye ram
You can use scratches in intelli
i take notes on how to do things when coding
That’s good
but yeah for just text editing I've noticed lots of people using VSC for writing wikis, documentation, etc so it must have something
Using vsc for java is just not meant to be, it's just so much worse in comparison to intellij
Extensions for VSC are excellent in terms of productivity
For GH-Markdown there are several that make things so much easier
Rip
theyre on my other pc
Would you recommend a rank plugin compatible with Luckperms?
island level
After using intelli I feel like Jetbrains > all
Though I don’t have any experience with them
Except intelli
I really wanna use CLion tho 😦 after I started using IDEA for Java, I can't stand Visual Studio for cpp
I've used Idea, Webstorm, Datagrip. All have been fantastic
There’s Rider too for cpp right?
*Idea Ultimate
Lol what
intellij just asked to collect my ip lol
everything you touch on the internet saves your IP lol
Every website you visit collects your ip
^
Say no if you don’t want that
@gilded nova luckperms stoke your ip bro
Your IP has almost nothing, remember
Every MC server collects your ip
logs
I have idea ultimate but I don't think I'm really gonna miss it, I don't feel like I'm utilizing most of the features it offers
the most an IP can do is trace your location to the accuracy of about a city
Usually trace it to the ISP location
eh depends on your location
i could cancel your internet with it
but yeah every single thing you touch on the internet likely logs your IP
Discord does
Github does
For me it was a radius of max 100 m
i could cancel your internet with it
not how that works
lmao this kid bout to dos you
that is called a ddos yeah
https://i.imgur.com/gOvAh7k.png
(for reference, I am nowhere near whiterock currently)
nah not ddos
You'll cancel my internet with my IP address? No proof of ID or anything?
man that series of numbers must be godlike
i keep my secrets UwU
'secrets'
https://i.imgur.com/gOvAh7k.png
(for reference, I am nowhere near whiterock currently)
Mine is only 100m off lel
DOS is denial of service, DDOS is distributed denial of service (aka multiple devices)
The big boys go with ADDoS
im not gonna harm any of you
"HI I'm at IP 192.168.0.1 can you please cancel my internet?"
LOL
so ddos would be taking your whole neighborhood down and dos would be taking down a single house?
Hi my IP is ... Go on
lmao youd be suprised what i can dig up
Oh that didn't show
ddos is getting a neighbourhood to alllll do a dos attack on one device
.*.*.*.*
127.0.0.1
oh alright
0.0.0.0
localhost
8.8.8.8
im so cool i got my own text ip
1.1.1.1
Wow really
192.168.1.10
124.72.91.420
My server ip
Bruh
;;)))
lmao thats not your ip
larry...
123.456.789.012
-1810.71,6.33.333.69
nether or overworld?
what about end?
2001:0db8:85a3:0000:0000:8a2e:0370:7334
Nether
see you there then
See you soon
Nice base fefo
wow no advertising
They didn’t even create that sub
ANYTHING
Im confused
google isn't a tld ?
yes it is larry
they added a bunch of TLDs for major companies semi-recently
Stay safe! https://www.covid19.google/
Would you recommend a rankup plugin compatible with Luckperms?
island level
try google
Did it?
???
Yo you guys are all way smarter than me, how would I go about integrating an ssl cert in a java plugin
I use a hosting service
my ip is ||127.0.0.1||
What's your end goal Fred? Feel like you're trying to do something an improper way
how are you hosting?
With server.pro
hmm ok well then my suggestion of doing it via nginx wouldn't exactly work lol
:)
I emailed them asking how I would do this
And they said I could integrate an ssl cert inside my plugin
But I have no fucking clue how
Great
Their exact words:
However, in this particular case, you could technically serve the certificates from the plugin.

cringe
lol HelpChat used to have or might still have a bot named berry and we have a bot named larry
where's your pickaxe
I'm Larry
hello
yeah they still have Barry
yup berry the bot and we have larry the bot
is there an invite link to larry bot or it private here
You get Larry bot by buying him dinner
steak dinner?
yeah its such a random domain
ping pong
any good anti-cheat out there that are free?
no
Dont use anything thats free
ok so whats a good paid anti-cheat
Dont use one
i havent used it but its supposed to be good
ok
never heard of that one
so i don't use an anti-cheat?

https://www.spigotmc.org/resources/2ls-exploitfixer-the-ultimate-antiexploit-plugin.62842/ is this a good plugin to use?
never heard of it
if it has ultimate dont use it
xD ok
i'm using default spigot 1.12.2
got it
but yeah paper is amazing
switched to it
nice
If you run a Bungeecord network, learn how to correctly setup LuckPerms on all server instances (including Bungee).
Syncing data between servers
https://github.com/lucko/LuckPerms/wiki/Syncing-data-between-servers
y
so you install it in your raspberry pi minecraft network
because there is no #bot-commands
When people create issues on github when they havent even read the wiki
I don't even know
Raspberry pi bungee proxy
I fell asleep last night at 3am, and didnt wake up at all till 12. That's rare
it's weekend, boyo
that's a bliss
September 5th
12.45pm
lol
🤦♀️
Is the server in offline mode*?
AAAA
Trye
TOO MUCH WHITE
NOO
lolol
The thing is he will prob act blurr if I ask that, will just say “bungeecord backend must be offline”
I use github so infrequently i didnt even know it had a dark mode
It doesn't
Which is like....
guys
why
wAIT What
it doesnt
okay
I had to install an extension
so it adds dark mode
because they won't
Oh true
I want to code something useless
and publish on spig
mm
get 10000000000 downloads
LuckPerms Core 3000
Ayiyiyiyiyiyi
gotta say I love not being blinded when I go to one of the website I visit most frequently lol https://i.imgur.com/Qz1yTZI.png
Literally one of the very first things they added to GH Mobile was dark mode
And even their desktop application has one
(although the desktop app is just a fancy github linked git manager)
wtf is that gamemode
@rigid widget thonk pancake pls
@gilded nova its a multiplayer world war 2 mod
@gilded nova no ads
ok
What the
well that was weird
it's a mod
suddenly this giant red monstrosity disappears from my view as I attempt to read what it was saying..
Is it?
Was an advert, usb
Ah
yes
Yes do
One suggestion tho
Do NOT attempt to read diff/patch files (such as Paper patch files). Those SUCK with that extension, it's the only downside I found.
I mean even without that, I have no clue what the paper patch do lol
It decompiles minecraft
Applies the patches to the code
Compiles it again
And that's p much it lol
do you guys know how can i put some custom itens to sell? If u know a good plugin for this or something
?
idk what plugins youre using that involve javascript
if you don't know what it is, don't use it
Isn't that the one that says the general area you live in chat?
Like this person lives in United States and stuff
only for people with permission
So i can just delete it?
dumbo mate you dont need geoip to do /whois. Theres legit no point in it
Like /itemdb
Nah dont think you can sell custom items with essentials
Ok, so what plugin do you recommend to sell custom items?
Any shop plugin that has NBT support i guess
What is NBT support?
Support for special items I guess, like items with custom names and stuff
Ok, gotta search here. Tks for the help i really appreciate it
Items with special data attatched to them
https://minecraft.gamepedia.com/NBT_format#:~:text=The Named Binary Tag (NBT,made%20up%20of%20various%20tags.
idek if what i sent you helps
I dont know anything about NBT
I remember the simpler days with just numbers
I was so annoyed when the converted to text
And now it's great
It may help
i think this one may be the one https://www.spigotmc.org/resources/nbt-api.7939/
its really late here in my country so im gonna sleep, good night guys and thanks for the help
Gn
how to set grief protection default block claims
wot
Attack
!faq Don't mind me, needing the link
Check out some of our frequently asked questions.
every essentialx chat just sends me to the normal essentials page
@scenic cobalt https://ci.ender.zone/job/EssentialsX/
oh i got the chat plugin from @modest compass
Hey Afnan737! Please don't tag helpful/staff members directly.
?
Don't use essentialX geoip
@short warren I use AdvancedBan's /check if I want to know where the certain player is from.
idk what plugins youre using that involve javascript
@gilded nova PlaceholderAPI
...
You think a guy that hardly knows what a plugin is will know how to use js for placeholder api?
Was just saying lol
Anyone has ever seen this error?
WARN]: Unsupported key: Bat in TaggedChoiceType[id, minecraft:spawner_minecart -> ((Tag["DisplayState", NamedType["block_state", NilSave]] | NilDrop), MuType[V1931_4]),
It keeps repeating and flooding the console
Hey Tim__! Please don't tag helpful/staff members directly.
Yeah I thought vanilla always used actual name
Im sure theres some plugin that fixes that though
Maybe it does use displayname then
You could turn advancements off
idk how else youd do it
Or at least turn off displaying advancments
Seems like 1.16 api being stupid
Im not sure
ill do a quick search on the good ol'
Search the world's information, including webpages, images, videos and more. Google has many special features to help you find exactly what you're looking for.
I didnt find any plugin that does that easily
unless you make your own
because there are a few apis
But does that get the exact advancement or does that just detect when someone gets an advancment
its just a method
idk how youd modify how they look
I guess youd have to check for a specific advancement, and then set the message to something different
but idk whether youd have to check for all of them or not
Maybe something like this, but youd have to cancel the default advancement message
It varies
i have like the same thing but with 180 download
Isnt there meant to bbe a decimal place
Get off your phone while youre drivin man
youre the reason people have car pileups in tunnels
Didnt expect you to be smart for a trucky.
We all dumb
Essay incoming
Tbh I find most truckers annoying, especially the ones that have been doing it for decades. They don't wanna follow the law and are always complaining about them being enforced (they aren't even new laws) and they are dumb af and can't adapt. They also talk down to people that do things differently
Yeah thats the same with every job though. The ones that have been in the industry for way too long are the stubborn ones that can't adapt to change
Also the most arrogant and difficult ones to deal with
They also talk crap about new drivers and make fun of them. The funny thing is most of them would fail if they had to retake their CDL test
They have no idea what things are even called lol
Such as the different methods of backing up
Not gonna act like I know what a CDL test is but I once worked in production for industrial fans and there was this one guy (old guy) who had been there for countless years and all the other employees that I worked with at the time hated him because he was just so stubborn and arrogant. You couldn't ask the dude a question without being made to feel stupid about asking it lol
Heaps good
Commercial drivers license
Cunt drivers license

The other problem is, there are some schools giving them out like candy
So you have dumb cunts on the roads
You have to be able to read and speak English to have a cdl but some can't
the other reason for pileups
the reason that trucks go through underpasses exceeding the height limit and destroying the bridge
lol
I've never done that
yet
Self driving truck
fun
this is our survival spawnw so far anyone got any ideas of what we could do in the inside its kind of a mountain theme lol
So ...
Does anyone here know a good RaspberryPi alternative that is in the same price class, is x86 and supports windows Server 2019 ( 1.4Ghz+ 1Gb+ )
Docker!
and yes, I know its asked for much
BlueberryPi
Loading facts
BananaPi?
Is not x86
Docker has a internal naming system, allowing you to connect from one container to another using the name "mysql" for example. This does not always work and from my experience requires a Docker Stack
Stack
I need something below 90€
yes, a Docker Stack, that is a group of multible containers inside its own sub network. It exists to host complex applications that require multible different services without the need to destroy the docker structure ( e.g. multible services in one container )
That Odroid is arm64 again
So a docker in a docker
The issue is ODroid manufactures x86 and arm64
https://www.versalogic.com/product-overview/ Have a look here
Not a docker in a docker, its a application group
Uh... waay too expensive
1.2k usd for something that UDOO offers for way less
RIP
Ideally docker is container->service
meaning that you are supposed to just install one service into a docker container and install required services into their own respective containers
here is a example, which normally is also not correct since gitlab has a ton of exportable services
Docker does not only run on x86, it also has binaries available for arm64. For example there is a project where you can run docker on a raspberry pi. The only thing that needs to be done is that the container needs to be built for each architecture
@gilded nova are you awake (Shut up clippy in advance)
@gilded nova I wasn't
did you just wake up lol?
Good afternoon
No
Ok
Had to kill cockroaches this morning, super fun day
Anyone got a plugin that removes the ai from mobs that come from spawners?
Hi
hey
No
ok
Daddy
uwu
That kinda happened to me once. But we weren't dressed up. A pickup truck bumped into us at a McDonald's drive thru and we turn around and look and this dude was with his gf and she had her mouth covered like OMG, so the next thing she sees is 4 big grown dudes pop out of the mini van to see if there's any damage lol
Lmfao
That video was faked
But YouTube thinks it’s violent -_-
I mean clearly you can tell it’s fake right?
Lol
lolololololololololololololololololololololololol
Someone give me something to code
Im so bored
a brainfuck interpreter
funnnnnnnnnn
funnnnnnnnnnnnnnnnnnnnnnnnn
what in the everliving fuck
why have you done this
is that like merge conflicts or something?
pretty sure i don't have perms for @ everyone lol
no you don't
discord.gg/luckperms and for good reason I think
holy shit when did we break 10k?!
I have been regretting every microsecond of my life for 1 hour and 55 minutes now
Ages ago
Tim
Tim call an ambulance
funnnnnnnnnnnnnnnnnnnnnnnnn
What
why
I just spent 2 hours changing brake rotors and pads on my car
Learnt that breathing in brake dust can cause cancer
so
++++++++[>++++[>++>+++>+++>+<<<<-]>+>+>->>+[<]<-]>>.>---.+++++++..+++.>>.<-.<.+++.------.--------.>>+.>++.
``` this is hello world in brainfuck apparently
man give it colors
++++++++[>++++[>++>+++>+++>+<<<<-]>+>+>->>+[<]<-]>>.>---.+++++++..+++.>>.<-.<.+++.------.--------.>>+.>++.
it's so damn inconsistent lol
r u ok fefo
what time is it for you
no
Learnt that breathing in brake dust can cause cancer
@gilded nova
3.30 am



