BinaryByter
It might run a watered down version of gnu by then
Dima
you are the guy who claims that he is above everybody because he never makes an error
because I am confident about what I am talking about nowadays “devs” are too hyped about low level and afraid of many stuff
D
:) clinl will work soon, I hope
What's left to implement ?!!
BinaryByter
Talula
He used "you troll many people" instead of "you troll lots of people"...
Dima
tech support
D
... everything xD
hahahhahaha !!! xD
BinaryByter
... everything xD
well not exactly. We've got the VGA system going, we have a decent memory mapping and some good chunks of the standard library
BinaryByter
unfortunately, most people who were commited to clinl don't really help
BinaryByter
unfortunately, most people who were commited to clinl don't really help
i'm currentyl unit testing the standard library
BinaryByter
type_traits.hpp is very nasty
BinaryByter
I have to implement it 😢
BinaryByter
BinaryByter
look at those shits
BinaryByter
Ssup with FS ?? 64-bit or 32 bit ??
we will be FULLY linux compatible
BinaryByter
32 + 64 bit
BinaryByter
infact, we want to replace linux, but don't tell linus
Roxifλsz 🇱🇹
we will be FULLY linux compatible
As in it will be able to load Linux modules too?
BinaryByter
thanks
BinaryByter
it's basically a clean rewrite of linux
D
what sorcery is this ??
BinaryByter
currently 4
BinaryByter
what sorcery is this ??
the standard library :)
BinaryByter
templates are magic ;)
BinaryByter
:D
Roxifλsz 🇱🇹
thats the plan
Then I doubt that you will be able to avoid all of the things that you dislike in Linux
D
we will be FULLY linux compatible
Mutlicore support implemented or left?? Dont worry,, I am not in contact with Linus :P :P :D :D
BinaryByter
BinaryByter
well
BinaryByter
he started three monts ago
BinaryByter
I will be able to avoid the unclean code and the bugs.
we will, atleast in the beginning, fully take linux's drivers
D
templates are magic ;)
I dont use CPP :D :D More of a C guy... Learning CPP, just as much is required at the moment !!! Template an alien concept for C uesr :P
BinaryByter
basically
BinaryByter
a template is a way to tell the compiler to create code for you
BinaryByter
that way I can make a function that works on ANY datatype I want
D
C++ is way better than C, for real
I agree !!! Jus tpersonal preference !!! E
BinaryByter
template<class T> T add_one (T input) { return T +1; }
BinaryByter
I agree !!! Jus tpersonal preference !!! E
no, C++ is in so many objective ways better than C
D
a template is a way to tell the compiler to create code for you
I knwo the concept and usage, just unfamiliar with CPP syntax :D :D
BinaryByter
template<class T> T add_one (T input) { return T +1; }
usage: float a = 1; float b = add_one<float> (1);
BinaryByter
Dima
ftw
Dima
nah thats ugly
Dima
BinaryByter
no you don't
void* is a pointer type, you can add one to a pointer
D
hahaha !!!
D
void* is a pointer type, you can add one to a pointer
cast it and then take the value over it !! ex : *((int *) X) + *((int *) Y) ; Should work I guesss
BinaryByter
But like
BinaryByter
it's very common to add a value to a pointer
D
its ugly :)
agreed :P But works !!
BinaryByter
look at vector-iterators
BinaryByter
agreed :P But works !!
again: code that works != good code
D
look at vector-iterators
I hate them :P :D I still use a for loop !! :D :D I trreats VEC like dynamic array s :P :P
BinaryByter
you don't like foreach?
for (auto i : myVector) { std::cout « i « "\n"; }
BinaryByter
#noendl
Marie
#noendl
https://m.youtube.com/watch?v=6WeEMlmrfOI https://m.youtube.com/watch?v=GMqQOEZYVJQ
D
you don't like foreach?
Nope !!! Just ancient one !!! I dont know, maybe cause C was my first language, In every other language I now tend to use For loop for traversing lists !!!!
BinaryByter
olli
no need
Well, you want to copy each element out of your vector?
BinaryByter
thats shit
BinaryByter
REFERENCES :D
Anonymous
who deleted best international group
BinaryByter
for (const auto &i : myVector) { std::cout « i « "\n"; }
olli
REFERENCES :D
thanks :)
D
You should ALWAYS prefer the easier way to do stuff
I know !!! kind of stuck on C ... And until and unless there is some performance and readiblity issue, i dont thiunk it is bad !!!
Dima
the most of the code written nowadays is under the brand “just werks (tm)"
Dima
KEK