OSDev.org

The Place to Start for Operating System Developers
It is currently Thu Mar 28, 2024 5:09 am

All times are UTC - 6 hours




Post new topic Reply to topic  [ 3898 posts ]  Go to page Previous  1 ... 239, 240, 241, 242, 243, 244, 245 ... 260  Next
Author Message
 Post subject: Re: What does your OS look like? (Screen Shots..)
PostPosted: Sat Jan 02, 2021 10:02 am 
Offline
Member
Member

Joined: Tue Apr 03, 2018 2:44 am
Posts: 401
BenLunt wrote:
It has been an interesting project though. Also, another interesting thing is that I am using an emulator (QEMU) to emulate my OS which in turn is emulating another x86 machine. :-)


Ooh, I can beat that.

At University, we had a new lab of PowerMac 6100 (it was a few years ago :), and on there we ran:

- PowerPC emulating m68k to run MacOS
- MacOS emulating x86 to run Windows
- Windows emulating x86 DOS
- DOS running a m68k emulator to learn m68k assembler.


Top
 Profile  
 
 Post subject: Re: What does your OS look like? (Screen Shots..)
PostPosted: Sat Jan 23, 2021 8:47 pm 
Offline
Member
Member

Joined: Wed Mar 30, 2011 12:31 am
Posts: 676
Image

What's old is new again - a few years back, my userspace and GUI apps were written in Python, but I abandoned them / rewrote a lot of them in C on my quest for a fully DIY ecosystem. Now that I've spent countless hours building my own Python-like language, it's time to bring back the old apps!


More screenshots:

Image

Image

_________________
toaruos on github | toaruos.org | gitlab | twitter | bim - a text editor


Top
 Profile  
 
 Post subject: Re: What does your OS look like? (Screen Shots..)
PostPosted: Sun Jan 24, 2021 1:20 pm 
Offline
Member
Member
User avatar

Joined: Mon May 22, 2017 5:56 am
Posts: 812
Location: Hyperspace
@klange: Nice! :) I have a question though: With one instance of Kuroko, can you receive events in the created window(s) and on the console too? The lack of that held be back from understanding toolkit programming in Linux in the 90s. (I was more confused back then.)

_________________
Kaph — a modular OS intended to be easy and fun to administer and code for.
"May wisdom, fun, and the greater good shine forth in all your work." — Leo Brodie


Top
 Profile  
 
 Post subject: Re: What does your OS look like? (Screen Shots..)
PostPosted: Mon Jan 25, 2021 6:04 pm 
Offline
Member
Member

Joined: Wed Mar 30, 2011 12:31 am
Posts: 676
eekee wrote:
@klange: Nice! :) I have a question though: With one instance of Kuroko, can you receive events in the created window(s) and on the console too? The lack of that held be back from understanding toolkit programming in Linux in the 90s. (I was more confused back then.)

Building UIs in the REPL like this isn't really the intended workflow, and there's currently no way to asynchronously handle events while the REPL prompt is waiting for input - but it would be possible to hack something together with poll() to support that.

_________________
toaruos on github | toaruos.org | gitlab | twitter | bim - a text editor


Top
 Profile  
 
 Post subject: Re: What does your OS look like? (Screen Shots..)
PostPosted: Wed Jan 27, 2021 10:15 am 
Offline
Member
Member
User avatar

Joined: Mon May 22, 2017 5:56 am
Posts: 812
Location: Hyperspace
klange wrote:
eekee wrote:
@klange: Nice! :) I have a question though: With one instance of Kuroko, can you receive events in the created window(s) and on the console too? The lack of that held be back from understanding toolkit programming in Linux in the 90s. (I was more confused back then.)

Building UIs in the REPL like this isn't really the intended workflow, and there's currently no way to asynchronously handle events while the REPL prompt is waiting for input - but it would be possible to hack something together with poll() to support that.

Ah, so it's the same as most other systems. Thanks. I want to get away from this in my system, but I'm still not quite sure how. Perhaps I do want all input to be event-based, which is the opposite of what I once thought.

_________________
Kaph — a modular OS intended to be easy and fun to administer and code for.
"May wisdom, fun, and the greater good shine forth in all your work." — Leo Brodie


Top
 Profile  
 
 Post subject: Re: What does your OS look like? (Screen Shots..)
PostPosted: Thu Jan 28, 2021 1:43 pm 
Offline
Member
Member

Joined: Fri Jun 02, 2017 3:01 pm
Posts: 35
I have been working on my EFI loader (again), to remove the dependency on GNU-EFI and add a boot selection interface.
It's also now working on AArch64 (the screenshot was taken on my Raspberry Pi 3b), though I still haven't readded the kernel loading code.
(Using the url tag instead of the img tag as the screenshot will probably appear to big, as it is 1920x1080)

https://i.imgur.com/n6o9xxp.png

_________________
https://github.com/ilmmatias/palladium


Top
 Profile  
 
 Post subject: Re: What does your OS look like? (Screen Shots..)
PostPosted: Fri Jan 29, 2021 2:25 pm 
Offline

Joined: Tue Aug 25, 2020 8:56 am
Posts: 8
Image
:shock:
Image
8)
Image
:roll:


Top
 Profile  
 
 Post subject: Re: What does your OS look like? (Screen Shots..)
PostPosted: Fri Jan 29, 2021 2:36 pm 
Offline
Member
Member

Joined: Fri Nov 22, 2019 5:46 am
Posts: 590
Well, that looks rather strange! :(

Greetings
Peter


Top
 Profile  
 
 Post subject: Re: What does your OS look like? (Screen Shots..)
PostPosted: Fri Jan 29, 2021 2:44 pm 
Offline

Joined: Tue Aug 25, 2020 8:56 am
Posts: 8
Image


Top
 Profile  
 
 Post subject: Re: What does your OS look like? (Screen Shots..)
PostPosted: Fri Jan 29, 2021 2:59 pm 
Offline
Member
Member

Joined: Fri Nov 22, 2019 5:46 am
Posts: 590
That looks better because now in this higher resolution I can see and understand the windows. Can you already do advanced stuff with the windows, like moving? Can applications already take use of the GUI?

Greetings
Peter


Top
 Profile  
 
 Post subject: Re: What does your OS look like? (Screen Shots..)
PostPosted: Fri Jan 29, 2021 4:12 pm 
Offline

Joined: Tue Aug 25, 2020 8:56 am
Posts: 8
Quote:
Can you already do advanced stuff with the windows, like moving?

:arrow: https://video.okelyon.com/forms3.mp4
:arrow: https://video.okelyon.com/forms4.mp4

Image


Top
 Profile  
 
 Post subject: Re: What does your OS look like? (Screen Shots..)
PostPosted: Fri Jan 29, 2021 4:25 pm 
Offline
Member
Member

Joined: Fri Nov 22, 2019 5:46 am
Posts: 590
It moves! ;) Nice one.


Top
 Profile  
 
 Post subject: Re: What does your OS look like? (Screen Shots..)
PostPosted: Sat Jan 30, 2021 10:59 am 
Offline

Joined: Tue Aug 25, 2020 8:56 am
Posts: 8
Image


Top
 Profile  
 
 Post subject: Re: What does your OS look like? (Screen Shots..)
PostPosted: Sat Jan 30, 2021 11:17 am 
Offline
Member
Member

Joined: Fri Nov 22, 2019 5:46 am
Posts: 590
Looks interesting. And sure is a different path than other OSs! :)

Greetings
Peter


Top
 Profile  
 
 Post subject: Re: What does your OS look like? (Screen Shots..)
PostPosted: Sat Jan 30, 2021 12:59 pm 
Offline
Member
Member
User avatar

Joined: Fri Aug 07, 2015 6:13 am
Posts: 1134
@Structure

Very interesting! What solar system are you from? :D

_________________
OS: Basic OS
About: 32 Bit Monolithic Kernel Written in C++ and Assembly, Custom FAT 32 Bootloader


Top
 Profile  
 
Display posts from previous:  Sort by  
Post new topic Reply to topic  [ 3898 posts ]  Go to page Previous  1 ... 239, 240, 241, 242, 243, 244, 245 ... 260  Next

All times are UTC - 6 hours


Who is online

Users browsing this forum: Bing [Bot], DotBot [Bot] and 69 guests


You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot post attachments in this forum

Search for:
Jump to:  
Powered by phpBB © 2000, 2002, 2005, 2007 phpBB Group