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

Question about which tools to use, bugs, the best way to implement a function, etc should go here. Don't forget to see if your question is answered in the wiki first! When in doubt post here.
User avatar
farlepet
Posts: 13
Joined: Sun Dec 30, 2012 12:52 pm

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

Post by farlepet »

Created a nice shell for Retro OS 2. Most of the commands are still incorporated into the terminal, `ls` is currently the only useful command that's an actual executable.
Attachments
builtin `cat` command
builtin `cat` command
rterm2.png (10.29 KiB) Viewed 6025 times
login and `ls` command
login and `ls` command
rterm1.png (9.73 KiB) Viewed 6025 times
Lambda OS:
GitHub: https://github.com/farlepet
User avatar
Alexis211
Posts: 14
Joined: Mon Sep 14, 2009 9:19 am
Libera.chat IRC: lxpz
Location: France
Contact:

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

Post by Alexis211 »

Hi all,

I've been working on a small BASIC interpreter for my OS.

I'm thinking of improving it to the point were it could completely replace the shell, but there's a lot of work to be done (in its current state, it only support 26 integer variables !)
Attachments
2013-06-09-kbasic-1.png
2013-06-09-kbasic-1.png (7.79 KiB) Viewed 5883 times
2013-06-09-kbasic-4.png
2013-06-09-kbasic-4.png (6.83 KiB) Viewed 5883 times
2013-06-09-kbasic-5.png
2013-06-09-kbasic-5.png (6.73 KiB) Viewed 5883 times
klange
Member
Member
Posts: 679
Joined: Wed Mar 30, 2011 12:31 am
Libera.chat IRC: klange
Discord: klange

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

Post by klange »

I finally got around to porting SDL. My video backend supports resizable windows, borders, mouse, and keyboard (some buttons aren't mapped yet, but the majority of keys are).

Image

Image

I also spent some time hacking on snes9x-sdl to get it working.
User avatar
zhiayang
Member
Member
Posts: 368
Joined: Tue Dec 27, 2011 7:57 am
Libera.chat IRC: zhiayang

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

Post by zhiayang »

So I finally got around to getting that pesky multithreading in kernel space.

Image


I'll finish the heap's SLAB system, then rewrite an X4 release, once I start studying some SMP things.
Hopefully most of the things in X3 would be easily portable... I dunno.



PLEA FOR HELP:
Can *someone* *please* help me get a HDD image with GRUB (legacy preferably), on it? I cannot for the life of me get one working.
Thanks!
User avatar
BMW
Member
Member
Posts: 286
Joined: Mon Nov 05, 2012 8:31 pm
Location: New Zealand

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

Post by BMW »

@requimrar what is that editor in the background? Looks cool, hope there's one like that not just for mac.

Nice OS btw!
Currently developing Lithium OS (LiOS).

Recursive paging saves lives.
"I want to change the world, but they won't give me the source code."
User avatar
zhiayang
Member
Member
Posts: 368
Joined: Tue Dec 27, 2011 7:57 am
Libera.chat IRC: zhiayang

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

Post by zhiayang »

BMW wrote:@requimrar what is that editor in the background? Looks cool, hope there's one like that not just for mac.

Nice OS btw!

There is!
http://www.sublimetext.com/2

The theme is Tomorrow Night Aqua. I highly recommend ST2; it's clean, simple yet inherently feature rich. It uses TextMate language (and theme files apparently, AFAIK) files, and has python plugins.
Available for OSX, Windows and Ubuntu

Haha thanks for the complement (:
User avatar
eino
Member
Member
Posts: 49
Joined: Fri Sep 16, 2011 10:00 am
Location: Finland

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

Post by eino »

OT. I use Sublime2 on Mac and Ubuntu. Highly recomended!
I'm Eino Tuominen from Finland, a web software dev learning low level stuff and reading / trying out kernel dev
User avatar
Yoda
Member
Member
Posts: 255
Joined: Tue Mar 09, 2010 8:57 am
Location: Moscow, Russia

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

Post by Yoda »

requimrar wrote:Can *someone* *please* help me get a HDD image with GRUB (legacy preferably), on it?
It is easy. Download my OS Boot Tools archive, copy "grub.sys" (it is GRUB legacy) from the package to the root of file system in your image, then make it bootable by "boot" utility or by direct storing of boot code. All instructions given. If you have further questions, please PM me.
Yet Other Developer of Architecture.
OS Boot Tools.
Russian national OSDev forum.
User avatar
BMW
Member
Member
Posts: 286
Joined: Mon Nov 05, 2012 8:31 pm
Location: New Zealand

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

Post by BMW »

requimrar wrote: There is!
http://www.sublimetext.com/2

The theme is Tomorrow Night Aqua. I highly recommend ST2; it's clean, simple yet inherently feature rich. It uses TextMate language (and theme files apparently, AFAIK) files, and has python plugins.
Available for OSX, Windows and Ubuntu
Thanks!! :D :D

EDIT: Wow I am in love with this editor, wish I had come across it sooner!

EDIT #2: This is honestly the best editor in the world. The interface is so clean and intuitive that it compells me to write clean code. Since I got it I have been cleaning up my code. Fully recommended for anyone.
Currently developing Lithium OS (LiOS).

Recursive paging saves lives.
"I want to change the world, but they won't give me the source code."
User avatar
dozniak
Member
Member
Posts: 723
Joined: Thu Jul 12, 2012 7:29 am
Location: Tallinn, Estonia

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

Post by dozniak »

BMW wrote:EDIT #2: This is honestly the best editor in the world. The interface is so clean and intuitive that it compells me to write clean code. Since I got it I have been cleaning up my code. Fully recommended for anyone.
If you marry it with SublimeClang then you have code warnings and errors highlighting in editor almost like in Xcode.

DocBlockr is very nice for documenting your functions, makes it really easy.

Of course, install plugins via Package Control - fast and easy.

Having said that, I already switched to ST3 - even faster.
Learn to read.
User avatar
zhiayang
Member
Member
Posts: 368
Joined: Tue Dec 27, 2011 7:57 am
Libera.chat IRC: zhiayang

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

Post by zhiayang »

dozniak wrote:
BMW wrote:EDIT #2: This is honestly the best editor in the world. The interface is so clean and intuitive that it compells me to write clean code. Since I got it I have been cleaning up my code. Fully recommended for anyone.
If you marry it with SublimeClang then you have code warnings and errors highlighting in editor almost like in Xcode.

DocBlockr is very nice for documenting your functions, makes it really easy.

Of course, install plugins via Package Control - fast and easy.

Having said that, I already switched to ST3 - even faster.


IIRC there's no replacement for SublimeClang in ST3? Dockblockr sounds like something nice to have, I'll check it out!
User avatar
dozniak
Member
Member
Posts: 723
Joined: Thu Jul 12, 2012 7:29 am
Location: Tallinn, Estonia

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

Post by dozniak »

requimrar wrote:IIRC there's no replacement for SublimeClang in ST3?
Unfortunately, there isn't. I just write code without SublimeClang now, although I do miss it at times. I made a build system invocation from ST3 though and can just click through the error/warning messages to the editor and fix them. On the upside it doesn't try to parse me in real time and the editor feels snappier.
Learn to read.
klange
Member
Member
Posts: 679
Joined: Wed Mar 30, 2011 12:31 am
Libera.chat IRC: klange
Discord: klange

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

Post by klange »

Just to get us back on topic...

Image
Prochamber
Member
Member
Posts: 100
Joined: Wed Mar 13, 2013 2:27 am

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

Post by Prochamber »

klange wrote:Just to get us back on topic...
Wow, you've built a hobby operating on another hobby operating system!
I'm guessing time passes a lot faster in the new operating system, also if the operating system crashes it will end up in limbo. This would just be uninitalised memory space.
TachyonOS - Violates causality on 95% of attempts. Runs at approximately 1.5c.
Khronos
Posts: 23
Joined: Sat Jul 21, 2012 5:29 am

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

Post by Khronos »

klange, your Operative System is amazing. Please, keep on posting your progress.
Post Reply