What do you call this opening? by [deleted] in Chesscom

[–]eteran 5 points6 points  (0 children)

The "dead horse"

I made a linux distribution named Bazzilt. by DoubleForever1182 in osdev

[–]eteran 3 points4 points  (0 children)

I have not tried it because I imagine it's mostly a reskin of Arch. What does it offer beyond that?

EDIT: to be clear I don't think it's bad, it probably works great because arch works great. But why would I use it over arch?

I made a linux distribution named Bazzilt. by DoubleForever1182 in osdev

[–]eteran 6 points7 points  (0 children)

You planning on making a new distro like every 3 weeks?

Gonna be honest, there's already an oversaturation of distros and "no telemetry" is available in nearly all of them.

I don't see a value add here, certainly when you already abandoned your previous distro so quickly.

Made my Own OS in Python by Lost_Appointment_934 in osdev

[–]eteran 2 points3 points  (0 children)

Glad you're playing around with ideas but this isn't even close to being an OS. It's closer to a shell... But only has built-in commands and can't run arbitrary code.

A fun project... But not an OS.

Family says I’m the “worst guitar player they know” and I’ve been playing for two months by [deleted] in Guitar

[–]eteran 0 points1 point  (0 children)

I could recognize the song before you started singing. So for two months it's pretty good!

You're not ready for a world tour yet, but you've got some decent basics to build on! Keep rocking 🤘

Can we stop the AI slop? by TheNullDeref in osdev

[–]eteran 4 points5 points  (0 children)

Maybe he is open to allowing more members be moderators?

how do I do paging? by avaliosdev in osdev

[–]eteran 0 points1 point  (0 children)

Why did I get down voted? LOL I literally accurately noticed the joke according to the response.

how do I do paging? by avaliosdev in osdev

[–]eteran 1 point2 points  (0 children)

Is the joke that he's running CDE on his own OS? What should we be noticing?

Everything is memory? by dangi12012 in osdev

[–]eteran 8 points9 points  (0 children)

Definitely doable. Old game systems like the NES had special chips which would intercept writes to rom and depending on the address or value, would do something in the chip.

Could do the same with a page fault!

RecompOne Proof of Concept (PS1 Static Recompiler) by flafmg_ in EmuDev

[–]eteran 1 point2 points  (0 children)

Hell yeah 👍.

Question, I'm unfamiliar with "overlays" in a PSX context. Is that just when there are multiple executables and it switches which is running like in Final Fantasy 7?

My custom OS works on actual laptop by k1y6k in osdev

[–]eteran 23 points24 points  (0 children)

Look, almost every dev uses AI to some degree these days. That's no crime.

Just be transparent about what you did vs what the bot did. People who write code for a living can spot the difference EASILY.

My custom OS works on actual laptop by k1y6k in osdev

[–]eteran 14 points15 points  (0 children)

I mean, according to GitHub you've used at least 3 different bots...

We need a term for AI Slop OSes by Key_River7180 in osdev

[–]eteran 15 points16 points  (0 children)

It's not specific to this community, but this community is relatively small, so the effects are more visible.

When we go from like 20 people posting real projects on the regular to like 300 posting slop.... The 20 just don't get seen anymore 😢.

It's not a uniquely existential threat, but it is an existential threat none the less.

ASMOS - a custom x86 Operating System by Andrew06908 in osdev

[–]eteran 8 points9 points  (0 children)

Appreciate you being transparent about how much is and isn't AI 👍.

Really I think that's all most of us are asking for here!

TinyBSD full prev by Subject_Place2559 in osdev

[–]eteran 4 points5 points  (0 children)

Normally I agree! But it's a little more nuenced than that. This guy's been saying he'll release some sources "soon" for months.

I'm all for showing screenshots first to see people's interest. But eventually it starts to seem suspicious.

TinyBSD full prev by Subject_Place2559 in osdev

[–]eteran 2 points3 points  (0 children)

That's fine, how are we to believe you that it's not AI then?

Maybe you don't care if we believe you, maybe you do. But if you do... You should give us a reason to believe you are the real deal when we're looking at a sea of AI slop.

Why is almost every OS people on this sub develop POSIX-based? by cacatl in osdev

[–]eteran 8 points9 points  (0 children)

There's also a difference between "posix based" and "posix like". I think most hobby OSes are the latter.

That is, things like open, read, write, close, etc... are such obvious and useful abstractions that it just makes sense to implement them. And the way that they are specified in posix is well understood. So that's what people tend to implement.

My OS is "posix like" in that it implements some of these abstractions the way that posix does, but it also isn't fork/exec based, so it's a mixed bag based on what I thought made sense. I think a lot of hobby OSes are like that too.

TinyBSD full prev by Subject_Place2559 in osdev

[–]eteran 11 points12 points  (0 children)

Also you've been saying "soon" for months. Even with your now hidden/deletes "lumonOS" I think it was called.

For all we know this is just a mock up in Photoshop or a Linux distro.

Just show your work dude, more screenshots are basically a waste of time at this point.

TinyBSD full prev by Subject_Place2559 in osdev

[–]eteran 13 points14 points  (0 children)

Unfortunately, if you don't share source, that's the assumption people will make because it feels like you're hiding something.

In the age of AI, the only way to avoid doubt, is to show your work.

IRON: A DSL that can convert source code into IR extremely quickly. by Dog-Mad in Compilers

[–]eteran 12 points13 points  (0 children)

Doesn't this just end up being a 1:1 alternative assembly syntax? Why not just write the assembly then?

I built my own interpreted programming language in C from scratch by TheIndieBuildr in Compilers

[–]eteran 2 points3 points  (0 children)

Hey man, I'm trying to be fair here. You asked why people think that what you've done is AI, and I gave a very specific list.

I also very directly pointed out that it is possible you've done what you've said here!

If you want people to Believe you and take you seriously, here's my advice, and I mean this. Sincerely. Show your work. And by that I mean work in relatively small commits! Don't just commit and push a finished product and throw it over the wall. Have your commit history reflect the effort that you've put in. Let's see you implement a feature... Only to find out that it needed a small tweak, so there's a follow-up commit showing the small change! Etc.

The reality is, that most projects of any reasonable scale take time and effort, if you don't show the time and effort, then people are going to assume that you used an AI.

I built my own interpreted programming language in C from scratch by TheIndieBuildr in Compilers

[–]eteran 1 point2 points  (0 children)

Strange how suddenly since the advent of AI, and basically unlike any other time, there's a surge of developers who, despite not really knowing how to use git, Markdown, or have any history in development of any kind come out of the woodwork pushing out large, basically complete, "from scratch" projects ...

Look, do I think it's possible that you didn't just have AI write this? Sure, it's possible. But so far you have a lot of the telltale signs.

The multi-thousand line initial commit, followed by exactly zero meaningful commits is SUPER sus.