Topic: Get with the program | |
---|---|
Where should I start to get back into programming?
I want to create my own OS. I was thinking about doing it in MASM. I've dabbled in various BASIC, C/C++, and a few other languages. I do web scripting, mainly HTML and PHP. Is MASM the best choice? I was thinking C/C++ would probably be the best choice, and a *nix environment, but I'm using Windows 7 for now. I will have an extra laptop in a few months, one I will feel comfortable dual booting with Ubuntu. Any ideas or suggestions? |
|
|
|
Perl scripting, Linux administration & PHP seem to be popping up in my inbox all the time for jobs.
|
|
|
|
I already do that.
I'm looking for programming. I want to eventually develop my own OS and programming language, but can't decide where to start. |
|
|
|
I already do that. I'm looking for programming. I want to eventually develop my own OS and programming language, but can't decide where to start. Well 1st off you don't want to have to re-invent the wheel unless that wheel doesn't fit. Someone may already be working on exactly what you want to do and combined effort usually produces greater results. Picking a language and then learning it through and through only to find that it's no longer supported by hardware may be a kick in the teeth. Have you considered assisting ubuntu's programming base? Or do you already have a nitche use in mind? |
|
|
|
I just want to do it because I can, more so for a hobby. I do have an idea, but I can't share it ATM.
|
|
|
|
No sense throwing learning curves at you unless there's a specific function you need supported.
Whatever your idea is - look for what it will require, do you need direct hardware access or can you virtualise it? How much memory will you need to access? (32 bit vs. 64 bit coding) I'm no software engineer but knowing where you want to head will give you the answer to your question. Let that idea you can't share right now - pick the language you need to use. Or if any will work... pick the one you have the least problem using. cls @echo off echo make up your mind. pause cls echo knock knock neo. pause cls end |
|
|
|
|
|
|
|
Edited by
mrparadoxical
on
Thu 06/21/12 11:03 PM
|
|
for someone that wants to create their own OS, writing Microsoft assembler code is lame.
|
|
|
|
I would recomend C/C++ for a couple different reasons. I program in Java ande much of Java is written in native code (which is presumably C/C++ most of the time native code is mentioned it certain contexts)
C/C++ can preform functions that use pointers to to refrence locations of memory direclty instead of data stuructures such as Vector, ArrayList and array classes that Java uses. Not to say Java is not good enough to write an OS it is and I do believe it is out there as a matter of fact. But in Java we use native methods to create solutions such as refrencing memory directly using a pointer to reduce overhead operations. needles to say you probably have an easier time communicating with the hard ware directly such as in the kernal layer of the OS or the hardware abstraction layer (HAL) using a native language such as C/C++ although something such as VB .NET may be just as good or better than C/C++...I do not know. |
|
|
|
But would it be possible in masm?
|
|
|
|
Not too familiar with it to tell you to be pertly honest
|
|
|
|
But would it be possible in masm? Yes it would be possible. It would be more secure in LSB or even Java. |
|
|
|
I'm going back to C/C++. I'm not liking MASM.
|
|
|
|
I'm going back to C/C++. I'm not liking MASM. I agree with you |
|
|
|
It would be nice to find a free GUI builder for c/c++. :(
|
|
|
|
It would be nice to find a free GUI builder for c/c++. :( Ummmm have you ever gone to the microsoft web-site and downlaoded their editor before??? That should have one on it...I remember it was in like chapter one of my text-book for creating frames without typing out the code... Not the easiest program to use if you do not know how to do it though if I remeber right... |
|
|
|
It would be nice to find a free GUI builder for c/c++. :( There is, Qt Creator IDE. It works best on Linux but works very well on windblows. |
|
|
|
It would be nice to find a free GUI builder for c/c++. :( Ummmm have you ever gone to the microsoft web-site and downlaoded their editor before??? That should have one on it...I remember it was in like chapter one of my text-book for creating frames without typing out the code... Not the easiest program to use if you do not know how to do it though if I remeber right... LOL, I actually just uninstalled it. It would be nice to find a free GUI builder for c/c++. :( There is, Qt Creator IDE. It works best on Linux but works very well on windblows. I'll try it. TY |
|
|
|
OMM! QT better be worth it. It's monstrous! lol
Looks pretty promising though. Hopefully it will be what I'm looking for. |
|
|
|
OMM! QT better be worth it. It's monstrous! lol Looks pretty promising though. Hopefully it will be what I'm looking for. Good luck sir and I knew there were geekier people than me out there. +1 internets for having brain cells left. |
|
|