#⌨coders-cave
1 messages · Page 74 of 1
Windows 10 Home costs $139 and is suited for a home computer or gaming. Windows 10 Pro costs $199.99 and is suited for businesses or large enterprises. Windows 10 Pro for Workstations costs $309 and is meant for businesses or enterprises that need an even faster and more powerful operating system.
139$
199$
309$
meanwhile linux
The Linux kernel, and the GNU utilities and libraries which accompany it in most distributions, are entirely free and open source. You can download and install GNU/Linux distributions without purchase.
except some
like RHEL
also i think its how the license work
since like
most distro fork another one
Ubuntu from Debian and etc
so they have to make it open source
stuff like void isn't forked from any distro
but its still open source
NOW ITS THE TIME TO DO SOMETHING
like unmounting my usb
because its taking so much voltage
there we go
woo my first mobile game is in beta
doesnt matter when it comes free with my laptop anyways
sadly it wasnt 1 second
more like days
of trying to get it to work
had to reinstall spotify 3 times
you know how hard that is with 200kbps
also took days to setup C#
blender crashing
software not supported
worse game performance
if the game is supported
if its not you have to use wine
which doesnt work half of the times
and have shit performance for 3D games
no drivers for my wifi
had to use some weird driver which had a lot of problems
a lot of apps dont have a GUI
there's probably more
i cant think of any right now
"look, something not made by Microsoft! Lets point out every mistake it has ever made and praise windows a lttle!"
I made something truly fun
Thats at least 5 times smaller then a boot sector
I really want Philippines island
Why am i gonna duet
😔
Actually you have provoked me
To translate this ti assembly bear bones level
im just point out problems that i had in linux
in 1.25 years
that ive never had
on windows
idk why you salty
You wont say anything bad about windows nor anything good about linux nor say if you have an opinion on these
Fir instance i agree
Windows is better for game
Ing
And general no dev purpose usage
But
Linux is better at the other things
Have you ever opened the terminal
It sucks
Really bad
because you dont need a terminal in windows
like what
Linux stuff
,
Ehat

That has nothing to do with linux
In fact
Masm is made by Microsoft
Its an assembler
isnt qemu only linux
No
i didnt see masm
I use it on windows
oh
i dont emulate OS
Otherwise it might not read the disk
It doesn't have many things the linux one does
And it isnt used alot from many people
do you need these many things in the apps that are for windows ?
Yes
Os development
Relays on them
so you are saying that its missing features
Yes
and you should know that documentation shouldnt be done by people
With powershell
its done by the makers of the software
Damn ok mr. GotNoTime
sorry i go to college at 7 AM and come back at 4 PM
Same but with school
Economics school
you stay 9 hours in school ?
Economics highschool*
From 8am-4pm
mhmm
This conversation is not healthy lets change topic to....
He is right in front of me rn actually
now
C# superiority
Ok that's a good one
yes
Is it good?
best
a lot
Vs2022?
yeh
Yea i saw 0 difference
yea cuz u probably dont know what ur looking at
Other then font and no compatibility with opengl nor vulkan
you dont need a new one for each visual studio engine
you mean .NET 6
but you can use an older version of .NEt
No
why would you need a new version for visual studio 2022
It needs to link
link what
The API
these things didnt change tho
Linking is the first thing you do in a new api project
No matter what api
and making web apps debugging better
VS2022 didnt change a lot from vs2019
its just performance
some rework on the UI
and made debugging web apps better
I not so wisely decided to re-install Windows on my home computer, so I decided to record the proceedings while I re-setup my programming environment, enjoy guys, hope this helps some peeps out there!
Get all the free demos (and future demos!) here: https://jahbahjee-games-llc.mailchimpsites.com/
Follow me on Twitter: https://twitter.com/jah...
Or wait not the api but glfw
but this is C++
Needs to link
uhmm
I understand cpp better
i cant find a C# video about opengl
u used opentk ?
oh wait
But doesnt matter
u tlaking about C++ or C#
As glfw stays the same
C++ right ?
Cpp
yea that's geyh
we were talking about C# superiority
why change the subject suddenly

you got me mixed up
i dont care about native or not
As if it was the only language that exists
i care about usability
Oss wouldnt work
i care about productivity
OSs are such a small part of programming
They are the thing every program runs on
They are the main program
you make them once
we have 3 OSs
linux
mac
windows
how many apps are there ?
trillions ???
If thats true then why make different websites if one already exists
Ehy make different games
If 2 exist
cuz they are not OSs
so you are telling me that
OSs are more important than apps
for the average developer
Yes
ok so everyone should switch to OS making
so they can die from hunger
cuz they cant make money
Those two sentences dont link
Just like cs and assembly
answer
You can make whatever you want and i cant stop you
i want to make money
Whatever makes you happy
Money? Ap
What app
in general
No
chat app
C# or C++
Cpp
why
Because thats my opinion
im talking about practicality
i dont know C# or C++
which one should i learn
to make an app
then you dont know if C# is worse than C++
for the average developer
who want s to get a job
and make money
and have a good life
for this one specific topic
apps and web apps or apis
whcih is like 90% of jobs
Have you thought about fun
It dies
waht your coding is what changes the fun
i programmed in 7+ languages
never got bored in any of them
all of them had fun in
cuz what i was making was fun
not cuz the language is fun
the language doesnt change the fun
so Cpp was fun ?
Yes
but you couldnt make anything in it
mhmm
I would do web development
hello
no
Dont mind him, also hello

He is mad because i said Microsoft bad

cuz u saying linux is cool
cuz none uses linux]
and u want to be different
smh
kids these days
bruh
most programmers dont use linux
most of them that use it switched in the past couple of years
cuz its now the cool thing to do
Have you ever read a single coding documentory
ive read a lot
Hey guys, posted this in modding-talk but i'm posting it here too. I'm trying to make a mod for worldbox. I feel like this is super straight forward code, but it doesn't work even after I run worldbox as admin. I'm trying to give statues a new size. I tried getting the BuildingAsset statue and gave it a new size but it still wont work. What am I missing?
I'm making mods using MonoBehaviour
Heres my code:
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using UnityEngine;
namespace MegaStatues
{
public class WorldBoxMod : MonoBehaviour
{
static bool initialized = false;
void Update()
{
if (!Config.gameLoaded) return;
if (!initialized)
{
init();
}
initialized = true;
}
void init()
{
var newStatue = AssetManager.buildings.get("statue");
newStatue.baseStats.size = 10f;
}
}
}
Is there a limit to baseStats.size for buildings?
Also if I'm just setting a different size for the statue do I have to mess with its .asset file?
Yeah but that wasn't the point of the comparison.
Android is an open-system with more customizations and IOS is closed with a bit less customization.
"bit less"
you mean space engineers modding vs minecraft modding? (apple vs android respectively)
just from a code point
Dont see any apparent issues but i have also never modded a single game so idk
Ok done it in assembly bare-bones
The looping part may have an error
Actually ima rewrite it
To make sure it works
Ok done
You cant actually run it
Without having to assemble it via an assembler
And run it on bare-bones or through a virtual machine or an emulator
But its there
From a code perspective, absolutely.
From a general user perspective, "a bit less" works fine in it's regular connotation.
I have done so much coding on my phone that it it now auto-corrects to certain keywords like 'int' sometimes.
Time to clear my keyboard history.
It is done.
No longer will I type 'ij' and send int.
you do understand that it's included in the price? lmfao
if you look up the same laptop but without win10 included it's surprisingly cheaper!
so explain the laptop i bought for 300$ with windows10 pro
model?

i dont have it right now
that was 2 years ago
its a lenovo
dont know the exact model
that doesn't help much
windows is software
software has 100% profit
cuz it costs nothing to make
only time and skill
but OS usually comes with your stuff at a discount
so they can sell it for real cheap if its in bulk
laptop companies obviously buy in bulk
unfortunately the decrease in price of the OS is negated by the fact it renders 3gb of ram unusable 
the more ram you dont use
the more ram windows will use
if u have 4 ram it will use like 1
if u have 8 ram and ur using 4 it will use 3
if u use more it will start using less
linux doesnt even need to do that
cool
but you just dismiss all arguments in favour of linux as irrelevant
windows' entire point is availability
if you're developing something that needs to run on windows, develop it on windows
if you don't, then you can do it on linux just fine
embedded software, android
all linux
windows is literally only a desktop thing
windows phone is dead
i made all of my android apps and games on windows
had no problems
i also made some on linux
same experience
then why use windows
¯_(ツ)_/¯
i've had more problems getting things to work on win10 than linux
but
tbf
the linux versus windows debate
has been going on since forever
and its pretty dumb to assume we will get anything out of it here
its like console wars
so just go with whatever you like
This was the stupidest most one-sided argument I have ever had
It was like talking to a wall
Made by Microsoft
bruh ur salty af

Ah yes, the console wars.
The most stupidly divisive argument in the gaming "community". Gaystation and SexBox just don't stand a chance against PC. Maybe one day the gamers will realize that.
we can all agree on that

nintendo switch: i sux
i mean the nintendo switch is at least pocketable
you can put it in a bag
you can play anywhere
same thing with steam deck

but a fucking playstation
my phone is pocketable
its like a shit pc
yeah p much
phones are not made to be played on
gamer phones
512mhz CPU
are the shitties idea
good at being the worst
sux
i use iphone 15

isnt raspbian just linux ?
ye
you could use any OS on rasp pi
I once used server version of ubuntu and compiled gui to it
that was before Ubuntu had official support
How so tho?
yeah but partitioning the sdcard is pain
why would you partition it
you can just get newer version from pythons website
well ye
yeah that might not work
for the boot
bootable part
fdisk is killing me
i probably need an actual device
instead of a virtual disk
If you have a computer you can just use raspberry pis own flashing tool and not need to do any of that
that's a no i think
since like
alpine needs a certain amount
of partition size
void on the other hand
have an iso file
but its only for 2gb drive
but ill try
LET ME USE YOU ALPINE
ALPINE: no
bleh
ubuntu is uhhhh
uncool
but i just need to get used to linux
as an OS thing in general
I was thinking of changing from win10 to KDE Neon
When I last daily drive linux I used PopOS but it was quite bad distro
I like Debian based distros and don't wanna change to like arch but Ubuntu, likux mint and pop have all been not too enjoyable
well they are Debian
Yeah, the problem wasn't them being Debian based, the problem was that they were made with simplicity in mind so when I tried to do anything more complex it took hours where if the distro had the correct tools it should have it wouldn't have taken so long
well all that is literally made for
User Experience
if you want more complexity just use Debian
if you want you can even use void
its not Debian based or anything
but its complex as fuck
But your mom is a literal whale.
I wouldn't be surprised if she has a blowhole.
Oh wait that has a dual meaning.
Uh, your mom's a virgin too.
Ambiguity removed.
Your mom is so fuckingly dense, even light can't escape your mom gravity
when your mom walk through the universe
all it took was one step
to destroy the whole universe
that's a blackhole
ouch
it implies
you're adopted
smart move

@main brook @barren shale @tropic dagger please, keep channel topic, this is not a place for 1 screen of jokes about moms
#⌨coders-cave is about mums tho
ah yes
fair point
i guess we're gonna ignore the whole lots of people talking about worldbox here like suggesting and directly asking to add something
now then
im gonna continue to flash alpine
but im using the armhf version instead of armv7
and change the volume label
all my homies hate javascript
game?
interesting, never heard
there's LOLCODE
But on js you can write new lang on runtime and use it
LOLCODE is awesome
two compile times
grants it a high control
more then one]
at networks
and one is already too much
is noone gonna talk about what a huge crime i commited in the showed code
its at the level of a warcrime
yes no
making another language in it?
how high can we go
before compile time becomes 10 seconds
I saw this actually pretty good comic while scrolling coding memes
I'm surprised i was able to find anything good
i have been thinking about something similar reasently
how coding has become way too...easy
all new languages are incredibly high level and easy to use and learn

and if this trend continues at one point we will just be writing code in english
That's good though. If everything is gonna be done in computing more people there are is better
I was trying to raise the level of a unit called "테스트" from 7 to 9
With what?
But it happened
maybe just used note app?
imo the less people that can write but the more educated they are the better

if you used amp I gotta start fixing sone fucking bugs
Yes quick edit
we nee quality not quantity
How did you decode and encode the map files?
~decode and ~encode

I did it with an AMP bot
Not possible
by the way this looked i thought this was an os shell
Well if you can do the same thing with less education you don't need so much knowledge
No
as expected. I think the encoder is fucked somehow
things become too easy tho
maybe now u have job to do rn
making something like a game
rip jupe
no longer much of an issue
and also hai haydot
hi silly cat
I just came from school 10 mins ago. I'm not gonna start coding more than the 6 hours I've already done today in school
maybe this thursday if I'm not too exhausted
look at all those 0s
hexadecimal too
0x0000
oh they are 32bit
then 0x000000
or was that 64....yea
anyway i have no idea what that means

MakeFiles are legit so good
if you dont know what they are I highly suggest you research them as they are amazing
getting to the core has always been the point
sure they are becoming easier to use and learn
but i dont think that's the case when you dive deep into it
idk man I just think if they were becoming lower level and harder but faster and functional in more different sectors
things would be better
but i do see what you are saying and agree
i think c / c++ etc still fill that role pretty well
map is corrupted
C++ is becoming shitter everyday
C# is going the same way as C++
and will start becoming shitter everyday
C it is then, i guess 
no no no
you misunderstood
im saying it might be going to be bad
but its not rn
rn its good
best
cuz C++ kept backwards compatiability and now its too huge
ahh
like you can do the same thing 10 different ways
but only 3 ways are viable
and you need 1 way
and C# is going this way
lel

AMP sux
needs to be rewritten
in C#
obviously
C# better
this reminds me of something
which i should be spending more time on
I have next week off of school so AMP C# editon time
learning C# ?
my first web game is out on itch woo
which linux support is better when building from unity? mono or IL2CPP?
what language is amp written in
Probably python
Python, but Jupe mentioned swapping to C# further up.
I used Discord.py for it
It's just not continued anymore and I don't like python so I'm coding atleast some of it again
Ah makes sense
Unity? Any OS will work I think
Oh wait thats not what you meant i thought you said distro
if im going to already fight with just pushing google out, might as well push version support for everyone else
even if the game is just a simple arcade one
Uhhh as im reading about both Softwares
I think il2cpp
Sounds better but also kinda slow
game is about as advanced as galaga
well given galaga has varried formation animations and kill score its more advanced....
How code
its APL
life←{↑1 ⍵∨.∧3 4=+/,¯1 0 1∘.⊖¯1 0 1∘.⌽⊂⍵}
is code
"developed in the 1960s" I will enjoy this one
Unpopular opinion: All old languages are gold
the symbols actually make sense
my only problem is: How do you type it
Maybe a specific keymap?
Ah so it is a specific keymap
This looks hella hard to learn
Intresting
its literally been like
12 hours
I MISSED DEPENDENCIES
like g++, rust, cargo, openssl-dev
and etc
each build took like an hour
i also missed python3-dev
and libffi-dev
@main brook learn rust when 
when im gonna make my own OS
In coding, i like to be challenged, not write some dumb easy scripts that i will never be proud of
Or
I just like seeing what very well educated people do in bare-bones
Its not only for os
You can also....do....
Uhhh
Graphics?
why did you assume im only using it for os
idk
I apparently live in the 60s so i just assume whatever you are doing has something to do with OSs
fair
i like to write code nobody can understand
and feel superior in soft technology
Interviewer: so why did you name the variable that holds the width of the window “m”
Rei: Yes
Mind deleting this manually mods
Like we would fall for that.
We literally spend our free time working with and improving logic.
And may be doing it for a career.
the links are so real
it was
discordi.gifts
now its
discocrd.gifts
imagine some random 9 years old think this is real
i know 20 year olds who would think its real
i know 60 years old
Finns call discord discordi or diskordi
true
Yes and no. C++ was meant to be able to compile C code as well but now it's simply evolved into a new programming language. It's size is simply due to the fact that it is low-level and thus is best to create as many abstraction layers as possible, while maintaining it's low-level status. An example is the unique_ptr, which is a pointer. A pointer can be done in the 'C' way using * but it's better to use unique_ptr because it's simpler and has an abstraction layer using OOP. When you need to use multiple pointers to one object, then you use shared_ptr.
Could it have been done in a better way? Yes. But do they work and are readable? Yes.
The same can be said for vector and arrary and []. One exists to compile C code, the other two use similar concepts but they have important differences.
That's a big block of text.
tl;dr: C++ is because it creates an easier way to manage different problems.
You wouldn't use a map for a list, but they are similar concepts.
I got a warning because I was sending inappropriate emojis
Will I get banned if I keep doing it?
Yes
Yes. You will also get warned if you post off topic stuff in here once Rei becomes mod.
E
Squa
what does that mean?
Hello @astral basin !
My name is Tudor,
I am new on the server, I found about the game on YouTube and I've been watching gameplay for a while now and I want to do something.
I am a master student in Romania for Advanced Techniques of Information Processing and I have my dissertation this year. I want to create a small and way less complicated version of this game for my dissertation.
My base idea was to create a non-interactive simulation of 2 civilizations that would either become allies or wage war against each other as time in the simulation progresses, each having 1 king and 2 types of people (peasants and soldiers) (people could die of old age or because of war). I would use this to show my dissertation reviewers the population changes for both civilizations as time progresses.
I am not very good at programming or math but I want to try my best because I like this idea and it sounded nice for my coordinator as well.
I was wondering if you could help me with some information on what's behind the algorithms the game uses (i am guessing it uses some kind of genetic algorithms)? Maybe at least direct me towards what algorithms or math to study on my own for this.
I hope you would see this message
hey @undone hedge
Hello @knotty root
int(x)(40); works in C++.
The variable is x.
It makes my brain genuinely hurt.
It looks like a wizard type cast.
Why
Ur fat mum?
wtf, how does that even make sense
im guessing calling int() declared a variable? and then calling it again assign a value to it
but i don't know
looks like this but this is C# ofc
It's not a call.
int() is a cast, but int()() is a declaration/initialization
int() = (int) ≠ int()()
I'm gonna look into them and see if there's a difference.
well i mean
it looks like casting
which does call something
so-
most type cast is literally calling the type to a variable
like python
int("1")
and js String(1)
which is exactly the type
except in js
they don't use any typehint
its only on ts
which are
string, number, etc...
i just tested some things
int(x) just makes a new variable called x
its same as int x
and you can initailize a variable by using ()
int x(40);
works same as
int(x)(40);
very interesting
you can do also
char str[]("Hello");
which is same as
char (str)[]("Hello");
or
char (str[])("Hello");
I can just replace all my
int x = 40;
with
int(x)(40);
Just to fuck with other devs
these all work the same
evil plan
and randomly switch between
char (str)[]("string");
and
char (str[])("string");
which will fuck them up even more
Why tf do Gibibytes exist when 99% of computing works in powers of 2
windows uses gibibytes
that's why you never get the full space of your drive
gibibytes are better than gigabytes
a kilobyte is 1000 byte
a kibibyte is 1024 byte
for computers using gibi, kibi is better
ohh yeah wtf, I've been scammed

kilobytes are the bad ones then
yes
notice how in windows it says GB
never says gigabyte
cuz its not a gigabyte
but if you use gibibyte it would be confusing af to people who dont know what it is
so they just use GB
MB
KB
Makes sense
powers of 2 just makes more sense in computing than what ever tf kilobytes are called in math
Can someone help me code a new type of bomb thats stronger than the tsar bomb in world box?
B)
var bomb = new WB_bomb(that's better than Tsar bomb);
Don't try that *
Go to #🔧modding-talk it'll be more helpful.
kilo is a prefix for 1000
kilobyte = 1000 * byte
mega is a prefix for 1000000
and giga is a prefix for 1000000000
they are used everywhere
megawatts and gigawatts
kilometers
kilogram
screw languages
It's hamza, just...
You can just run js on c#, and then run p5
i dont need it for my project
Idk, i am doing what i said, and never has slow
im using opentk
i just want something that can work fast
and can be made into a library
this is the whole thing
There's something good you can say about every programming language. But that's no fun. Instead, let's take the worst features of all the languages we know, and put them together to create an abomination with the worst syntax, the worst semantics, the worst foot-guns and the worst runtime behaviour in recorded history. Let's make a language so b...
this is fun
Ow god
I love how I have no idea what in the nuking japan any of this mean
Bro
The person busy
Most likely busy
Rei is hard working
or dead
No
does worldbox modding supports use of 3rd part libs like lets say a machine learning lib?
Thats actually a sorta good question
But im pretty sure it should support those
No reason for it to not
WorldBox most likely support it
although machine learning libraries in C# are kinda ew
so i would probably just use a python machine learning lib







