So you guys know my stuff I'll do an application:
I know the following:
Java
C++
HTML
CSS (hehe)
Some JavaScript
BATCH file
Visual Basic
some Squeak
Offline
Jet7889 wrote:
Scratchthatguys wrote:
In DOS/CMD, this is the calculator I made:
:A
set /p num1=
set /p operator=
set /p num2=
set /a sum=%num1% %operator% %num2%
goto :B
:B
echo %sum%
goto :AIt works well! But it kinda looks wierd with it saying
:sum 18
and stuff like that
Oops, you have to do this:
@echo off
:A
set /p num1=
set /p operator=
set /p num2=
set /a sum=%num1% %operator% %num2%
goto :B
:B
echo %sum%
goto :A
There, it's done.
Offline
ProgrammingFreak wrote:
So you guys know my stuff I'll do an application:
I know the following:
Java
C++
HTML
CSS (hehe)
Some JavaScript
BATCH file
Visual Basic
some Squeak
Yay! You know HTML, so I won't have to spend lots of time trying to create an admin section with lots of complicated PHP. I can just have a textbox where you can enter HTML.
Offline
Scratchthatguys wrote:
Jet7889 wrote:
Scratchthatguys wrote:
In DOS/CMD, this is the calculator I made:
:A
set /p num1=
set /p operator=
set /p num2=
set /a sum=%num1% %operator% %num2%
goto :B
:B
echo %sum%
goto :AIt works well! But it kinda looks wierd with it saying
:sum 18
and stuff like thatOops, you have to do this:
@echo off
:A
set /p num1=
set /p operator=
set /p num2=
set /a sum=%num1% %operator% %num2%
goto :B
:B
echo %sum%
goto :A
There, it's done.
That is good for now!
Offline
TheSuccessor wrote:
ProgrammingFreak wrote:
So you guys know my stuff I'll do an application:
I know the following:
Java
C++
HTML
CSS (hehe)
Some JavaScript
BATCH file
Visual Basic
some SqueakYay! You know HTML, so I won't have to spend lots of time trying to create an admin section with lots of complicated PHP. I can just have a textbox where you can enter HTML.
I do know Batch, VBScript, C++, HTML, CSS, Javascript, and a smidge of Squeak, with some ACMDscript. (ACMD is my programming language created in Command Prompt. ACMD means Advanced Command Prompt.)
But anyways, the <form> tag confuses me.
Offline
How to use <form> tag:
<form action="where to send data to" method="POST">(post is more secure than GET)
<input type="type of input" name="name to send data under" />
<button type="submit">Go</button>(Setting button type to submit makes it send off the form data)
</form>
Offline
TheSuccessor wrote:
I know C++, MS-DOS, Java, SQL, PHP, HTML, XUL, JS, CSS, VB, Smalltalk and Scratch (+ mods). Most of these are irrelevent, but I would like to do programming and could also set us up a site.
And i would be happy to help you with the site!
I know HTML from the back of my head, and i also have an editor!
ProgrammingFreak wrote:
So you guys know my stuff I'll do an application:
I know the following:
Java
C++
HTML
CSS (hehe)
Some JavaScript
BATCH file
Visual Basic
some Squeak
I know C, HTML(JS and CSS too) VB, and some php and C++.
And i can help code too, if you guys want.
Last edited by bbbeb (2010-11-21 21:22:00)
Offline
bbbeb wrote:
TheSuccessor wrote:
I know C++, MS-DOS, Java, SQL, PHP, HTML, XUL, JS, CSS, VB, Smalltalk and Scratch (+ mods). Most of these are irrelevent, but I would like to do programming and could also set us up a site.
And i would be happy to help you with the site!
I know HTML from the back of my head, and i also have an editor!![]()
ProgrammingFreak wrote:
So you guys know my stuff I'll do an application:
I know the following:
Java
C++
HTML
CSS (hehe)
Some JavaScript
BATCH file
Visual Basic
some SqueakI know C, HTML(JS and CSS too) VB, and some php and C++.
And i can help code too, if you guys want.
Okay!
I have a question. Should we start making them look DOS like or do a GUI first? Also, should we base it on Linux?
Offline
Let's start with DOS, and then make kernels, then connect them, and add the graphics and GUI.
Linux is good. Very good. That's why I suggested kernels.
Offline
Scratchthatguys wrote:
Let's start with DOS, and then make kernels, then connect them, and add the graphics and GUI.
Linux is good. Very good. That's why I suggested kernels.
Sounds like a good plan.
Offline
ProgrammingFreak wrote:
Check this out for info! i'm reading up on Kernals. Does anyone know anything about it?
Also if someone needs a compiler for C++ here are two....
Code::Blocks
Visual C++
Offline
Scratchthatguys wrote:
Let's start with DOS, and then make kernels, then connect them, and add the graphics and GUI.
Linux is good. Very good. That's why I suggested kernels.
Agreed.
Offline
Sorry pwiter!! Um I added you, but could you still fill out the application? Thnx
Offline
hey should we make a Online version first?
Last edited by ProgrammingFreak (2010-11-29 14:46:39)
Offline
Yeah. Maybe we could even do a demo of the OS, that runs in a window? But it has to be Multi-Platform.
Offline
ProgrammingFreak wrote:
So you guys know my stuff I'll do an application:
I know the following:
Java
C++
HTML
CSS (hehe)
Some JavaScript
BATCH file
Visual Basic
some Squeak
I have books on all those, and know everything but Java. I'll work on XHTML. Wait, we also need XML!
Offline