Learning about developing OS [closed] - operating-system

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking us to recommend or find a tool, library or favorite off-site resource are off-topic for Stack Overflow as they tend to attract opinionated answers and spam. Instead, describe the problem and what has been done so far to solve it.
Closed 8 years ago.
Improve this question
I like to learn OS development from the scratch(About Interrupt handling, about IDT, how to load my own boot sector,etc)
Can you please recommend some resources ?
Thank you.

The OSDev wiki is a good place to start.

Take a look at Operating System Design and Implementation by Andrew Tanenbaum. It contains the source to an operating system call Minix and was the "inspiration" for Linux.

The best online ressources are on OSdev Wiki. You will find all the info you need to start with kernel crafting, from toolchain to IDT filling.

Related

Looking for a tool to examine a PCIe Device tree [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking us to recommend or find a book, tool, software library, tutorial or other off-site resource are off-topic for Stack Overflow as they tend to attract opinionated answers and spam. Instead, describe the problem and what has been done so far to solve it.
Closed 8 years ago.
Improve this question
I am looking for a tool that can show the device tree for pci express devices including switches. I am trying to examine the topology of the pcie from root port down to debug some issues we are having with device bandwidths. Is there anything like that available?
Try lspci on linux.
Sample usage can be found in man page. I generally use:
lspci -t
To have a tree view.
In windows I think there's tool called pcitree but I never used it.

an editor for specman [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking us to recommend or find a tool, library or favorite off-site resource are off-topic for Stack Overflow as they tend to attract opinionated answers and spam. Instead, describe the problem and what has been done so far to solve it.
Closed 9 years ago.
Improve this question
I started working with specman recently and I am looking for a good editor for my code.
I am used to working with vi and Emacs - if there is any add-on that can help with one of those, that would be great.
Thanks.
I recommend the Emacs/XEmacs specman-mode from https://github.com/hackonteur/specman-mode. We will continue to improve it and you are welcome to contribute.
There is a Specman mode for Emacs. It used to be available here http://www.specman-mode.com but now it moved to Cadence here http://www.cadence.com/Community/error.htm?aspxerrorpath=/community/forums/T/28436.aspx
Note: At the time of posting the link didn't work, but I checked it out about 5 days before and it was working.
The new Specman mode was just posted in Cadence Shared code forum and can be find directly here:
http://www.cadence.com/community/forums/T/28436.aspx

Documentum For Dummies [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking us to recommend or find a tool, library or favorite off-site resource are off-topic for Stack Overflow as they tend to attract opinionated answers and spam. Instead, describe the problem and what has been done so far to solve it.
Closed 9 years ago.
Improve this question
I'm going to work in a project which has Documentum as Content Management system.
There are some customization on default documentum features such as Task Space.
I'm pretty much new to Documentum, and would like to get high level idea of it.
Any recommendations, for starting off to learn Documentum in High level ?
Any resources,blogs contents, or videos for training on Documentum ?
You can search the web for "EMC Documentum Content Server Fundamentals Guide" and then if customization needed at coding level you should read "Documentum Foundation Classes"

Open source Machine learning Project with Scala [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking us to recommend or find a tool, library or favorite off-site resource are off-topic for Stack Overflow as they tend to attract opinionated answers and spam. Instead, describe the problem and what has been done so far to solve it.
Closed 9 years ago.
Improve this question
I am pretty new to Scala and I think that the best way to learn a language is to learn from others. Is there any good scala open source project focusing on machine learning? Thanks a lot.
You should checkout Breeze, it has quite a few built in ML algorithms, though the documentation can be sparse, I would recommend looking at the source:
http://www.scalanlp.org/
That's not an OS project, but i just have to sugest you to watch the talk given by Christopher Severs and Vitaly Gordon on ScalaDays'13 on Machine Learning With Scala

Any good introductions and resources for gettext? [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking us to recommend or find a tool, library or favorite off-site resource are off-topic for Stack Overflow as they tend to attract opinionated answers and spam. Instead, describe the problem and what has been done so far to solve it.
Closed 9 years ago.
Improve this question
I'm looking into frameworks for translation, and have been considering gettext. Because it's supposedly quite good, and lots of projects use it. Now I read part of the official manual, but it sucked. I kind of have an idea how it works now, but I have no idea where to get started.
In particular my project spans C++, Lua and Javascript, so I'd love to be able to unify the i18n with a single tool, but I'm also not having luck finding gettext good support for Lua or Javascript, are they supported, has anybody used gettext with these?
Thanks.
How about this tutorial? Another example is at O'Reilly.