Page 209 of 262

Re: What does your OS look like? (Screen Shots..)

Posted: Wed Aug 09, 2017 5:58 am
by zesterer
Artlav wrote:Working on the network stack...
Never expected that i would be so excited by a simple ping!
Nice! I'm very jealous of you.

Re: What does your OS look like? (Screen Shots..)

Posted: Wed Aug 09, 2017 12:36 pm
by stevewoods1986
Image

That's my OS printing a string without interrupts (0xb800). Amazing, huh? Not the greatest in history though. I still like the look of all the other very good projects! 8)

Re: What does your OS look like? (Screen Shots..)

Posted: Wed Aug 09, 2017 12:39 pm
by zaval
yup. you are definitely ready to making endless questions on x86 chipset guts. :D

Re: What does your OS look like? (Screen Shots..)

Posted: Thu Aug 10, 2017 10:00 am
by BrightLight
Artlav wrote:Working on the network stack...
Never expected that i would be so excited by a simple ping!
I know that feeling. Nice work. :P
Image

Re: What does your OS look like? (Screen Shots..)

Posted: Mon Aug 14, 2017 6:35 pm
by klange
This special screenshot requires me to post a link to an external site:

https://twitter.com/ToAruOS/status/897095724667617281

Re: What does your OS look like? (Screen Shots..)

Posted: Tue Aug 15, 2017 9:35 am
by stevewoods1986
klange wrote:This special screenshot requires me to post a link to an external site:

https://twitter.com/ToAruOS/status/897095724667617281
Wow, that's impressible. Did you port Python? If you did, then it's just wonderful.

Re: What does your OS look like? (Screen Shots..)

Posted: Tue Aug 15, 2017 1:30 pm
by Octacone
Octocontrabass wrote: "Something about extending functions to 64 bit"
I can finally reply to you, some serious work has been done.
There are still some functions I have to implement.
This is a screenshot of around 8 separate hexadecimal functions, printing 8, 16, 32 bit integers, both signed and unsigned. Still lots of bugs to fix.
Around ~1100 lines of code, an entirely new VGA driver btw)
Image

4 different output types supported.
Writing a 1000+ lines of code VGA drivers while other are pinging this site from their own OSes.

Re: What does your OS look like? (Screen Shots..)

Posted: Tue Aug 15, 2017 5:22 pm
by klange
stevewoods1986 wrote:Wow, that's impressible. Did you port Python? If you did, then it's just wonderful.
I had a rudimentary port of Python 2.7 a few years ago, and worked on porting Python 3.6 while it was in RC back in December/January. I've been using Python as the primary userspace language for building graphical applications in my OS since then. In this example, a Python script generated an OAuth-signed API request to send to the Twitter API server via a TLS tunneling tool built from mbed TLS.

Re: What does your OS look like? (Screen Shots..)

Posted: Fri Aug 18, 2017 4:46 am
by Artlav
klange wrote:This special screenshot requires me to post a link to an external site:

https://twitter.com/ToAruOS/status/897095724667617281
Neat.
And now i have a nice goal to work towards...

Re: What does your OS look like? (Screen Shots..)

Posted: Fri Aug 18, 2017 9:16 am
by lkurusa
I've got a basic UDP chat application working

http://i.imgur.com/LGDxvVh.gif

To be frank, I've had a working UDP implementation for a while now, but it was all wonky and used SOCK_STREAM semantics. No longer!

Re: What does your OS look like? (Screen Shots..)

Posted: Fri Aug 18, 2017 3:59 pm
by Geri
Image

sneaky snake

Re: What does your OS look like? (Screen Shots..)

Posted: Fri Aug 18, 2017 6:08 pm
by gungomanj
Geri wrote:Image

sneaky snake
well done geri chan! ^_^

Re: What does your OS look like? (Screen Shots..)

Posted: Fri Aug 18, 2017 7:09 pm
by Geri
gungomanj wrote: well done geri chan! ^_^
sugoi kawaii hebi desu

Re: What does your OS look like? (Screen Shots..)

Posted: Sat Aug 19, 2017 2:56 pm
by sortie
klange, that is awesome!

Have you considered a script for posting screenshots in this thread?
lev wrote:I've got a basic UDP chat application working

http://i.imgur.com/LGDxvVh.gif

To be frank, I've had a working UDP implementation for a while now, but it was all wonky and used SOCK_STREAM semantics. No longer!
That's amazing, cool with a gif!

Re: What does your OS look like? (Screen Shots..)

Posted: Sun Aug 20, 2017 11:24 am
by vhaudiquet
I started my os kernel a month ago, and i am finally able to read from a FAT32 file system !
I know that this isnt much, but i needed to do all the basic functions (like paging, heap, ...) before !
Image
(for now the fat32 access and read are hardcoded, i will need to work on a VFS implementation and then on system calls to interact with it)