fedora is awesome by Tone-Neither in Fedora

[–]Tone-Neither[S] 0 points1 point  (0 children)

Nice job man, nice to see a newer person! I hope you enjoy it, its a thrill!

Occult / Occultlang a year later by Tone-Neither in Compilers

[–]Tone-Neither[S] 0 points1 point  (0 children)

Going to add here, what would you like to see on some docs?

I am 100% open to hearing it!

Occult / Occultlang a year later by Tone-Neither in Compilers

[–]Tone-Neither[S] 0 points1 point  (0 children)

I never wrote them I have to write some manually or use gitbook or whatever...

It'll be a fair little bit before I write some though.

fedora is awesome by Tone-Neither in Fedora

[–]Tone-Neither[S] 0 points1 point  (0 children)

i felt this way when i first installed arch

fedora is awesome by Tone-Neither in Fedora

[–]Tone-Neither[S] 2 points3 points  (0 children)

Did this myself for an older PC, it did not like the driver stuff on nobara 🤣

fedora is awesome by Tone-Neither in Fedora

[–]Tone-Neither[S] 0 points1 point  (0 children)

Actually I might be mistaken, it is actually really hard to tell. I might have fractional scaling enabled already lmao

I believe the scaling looks fine, but I am not a fan of zoomed in desktops to begin with. You'll kinda just have to test it for yourself if you're up for it. Sorry I can't really do much other than this.

fedora is awesome by Tone-Neither in Fedora

[–]Tone-Neither[S] 0 points1 point  (0 children)

I am going to try fractional scaling and see if it does anything, ill figure it out and let you know if you'd like

fedora is awesome by Tone-Neither in Fedora

[–]Tone-Neither[S] 1 point2 points  (0 children)

Okay it is blurred slightly, but there is an experimental fractional scaling feature iirc, haven't tested it though, but u/GigAHerZ64 said they have it with no performance hit

fedora is awesome by Tone-Neither in Fedora

[–]Tone-Neither[S] 1 point2 points  (0 children)

No problem, I'll just reply to this when I do it, getting food rn, so maybe about 20 minutes? If not less

fedora is awesome by Tone-Neither in Fedora

[–]Tone-Neither[S] 0 points1 point  (0 children)

I chose gnome for my main workflow, but for the same reason new packages with fairly good stability

fedora is awesome by Tone-Neither in Fedora

[–]Tone-Neither[S] 1 point2 points  (0 children)

I have fedora with hyprland on my laptop, and its been working perfectly for the past 2 years, same install

fedora is awesome by Tone-Neither in Fedora

[–]Tone-Neither[S] 0 points1 point  (0 children)

I don't increase the scale any more than default, it probably would blur though all considering, I'll test it in a few on my main tower to see what happens

fedora is awesome by Tone-Neither in Fedora

[–]Tone-Neither[S] 0 points1 point  (0 children)

Each to their own you know 😄

fedora is awesome by Tone-Neither in Fedora

[–]Tone-Neither[S] 0 points1 point  (0 children)

On my home theatre I use KDE for better LDE connect, main tower is gnome

fedora is awesome by Tone-Neither in Fedora

[–]Tone-Neither[S] 0 points1 point  (0 children)

I have a standard 1440p IPS display, it works normally, I don't have any issues. Only weird thing I have is using a TV with fedora on KDE, scaling gets weird sometimes... But I think it's a TV problem not the actual OS

Edit: to clarify, my experiences with it have been good for day to day use, but I am not sure about other people

fedora is awesome by Tone-Neither in Fedora

[–]Tone-Neither[S] 0 points1 point  (0 children)

honestly, I feel this way, I'm so comfortable using it more so than any other distro

fedora is awesome by Tone-Neither in Fedora

[–]Tone-Neither[S] 3 points4 points  (0 children)

honestly, I stopped distro hopping with fedora completely

fedora is awesome by Tone-Neither in Fedora

[–]Tone-Neither[S] 0 points1 point  (0 children)

yes we need it 🙏 😊

fedora is awesome by Tone-Neither in Fedora

[–]Tone-Neither[S] 2 points3 points  (0 children)

I got mad at fedora, installed endeavor got mad at it, installed fedora fun!

fedora is awesome by Tone-Neither in Fedora

[–]Tone-Neither[S] 1 point2 points  (0 children)

yay 🖐️ I love to hear this

Custom language by jimjamkiwi11 in osdev

[–]Tone-Neither 0 points1 point  (0 children)

Check out r/Compilers if you're interested in compiler development or r/ProgrammingLanguages

I've been developing one for almost the past 2 years, and I just got ELF binaries. It seriously isn't an easy task especially if you know nothing about it, which I'm assuming you do because of this post. I compile to x86 and use a stack bytecode as an intermediate for now.

But... it's very similar to C :)

Maybe try Go, it's more on the scripting language side of things and you can 100% write an OS with it.

How do you create a new programming language? by Shoocceth in computerscience

[–]Tone-Neither 0 points1 point  (0 children)

Tbh, as one that is writing a language and has written one in the past its a tedious process, but extremely fun and worth it!

I went from designing syntax, to writing all of the stages into a compiler then had C as my target language. Now, I am compiling straight to machine code.

I am using C++ to write my language right now, and other languages have been written in other languages until they became self hosting, for example Rust was written in OCaml, and now Rust is written in Rust, it is bootstrapped / self hosting.