This is a read-only archive of the old Scratch 1.x Forums.
Try searching the current Scratch discussion forums.

#76 2010-11-19 14:46:31

ProgrammingFreak
Scratcher
Registered: 2010-09-04
Posts: 1000+

Re: Soyl

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

 

#77 2010-11-19 15:25:07

ProgrammingFreak
Scratcher
Registered: 2010-09-04
Posts: 1000+

Re: Soyl

Go here to get the info on the Hamachi Network. Project
Oh and heres the website Soyl

Offline

 

#78 2010-11-19 20:17:18

Scratchthatguys
Scratcher
Registered: 2010-07-16
Posts: 1000+

Re: Soyl

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 :A

It 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

 

#79 2010-11-20 05:27:21

TheSuccessor
Scratcher
Registered: 2010-04-23
Posts: 1000+

Re: Soyl

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.


/* No comment */

Offline

 

#80 2010-11-20 11:05:31

ProgrammingFreak
Scratcher
Registered: 2010-09-04
Posts: 1000+

Re: Soyl

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 :A

It 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.

That is good for now!

Offline

 

#81 2010-11-20 14:51:42

Scratchthatguys
Scratcher
Registered: 2010-07-16
Posts: 1000+

Re: Soyl

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 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.

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

 

#82 2010-11-21 06:28:26

TheSuccessor
Scratcher
Registered: 2010-04-23
Posts: 1000+

Re: Soyl

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>


/* No comment */

Offline

 

#83 2010-11-21 21:18:39

bbbeb
Scratcher
Registered: 2009-06-11
Posts: 1000+

Re: Soyl

If im graphics and want to make an icon, what format should it be in?

(.ico, .png, .gif, .jpg)


Back in my day.... there were no laws that censored the internet... now, there are.... nah.

Offline

 

#84 2010-11-21 21:19:40

bbbeb
Scratcher
Registered: 2009-06-11
Posts: 1000+

Re: Soyl

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!  big_smile

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)


Back in my day.... there were no laws that censored the internet... now, there are.... nah.

Offline

 

#85 2010-11-22 13:59:51

ProgrammingFreak
Scratcher
Registered: 2010-09-04
Posts: 1000+

Re: Soyl

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!  big_smile

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.

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

 

#86 2010-11-22 14:59:17

Scratchthatguys
Scratcher
Registered: 2010-07-16
Posts: 1000+

Re: Soyl

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

 

#87 2010-11-22 15:45:03

ProgrammingFreak
Scratcher
Registered: 2010-09-04
Posts: 1000+

Re: Soyl

I got Visual C++

Offline

 

#88 2010-11-22 15:48:58

TheSuccessor
Scratcher
Registered: 2010-04-23
Posts: 1000+

Re: Soyl

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.


/* No comment */

Offline

 

#89 2010-11-22 16:54:57

ProgrammingFreak
Scratcher
Registered: 2010-09-04
Posts: 1000+

Re: Soyl

ProgrammingFreak wrote:

Research

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

 

#90 2010-11-22 17:00:19

pwiter
Scratcher
Registered: 2010-06-02
Posts: 100+

Re: Soyl

Can you add me?
Programming Freak you know me!


http://i.imgur.com/YBeXc.png

Offline

 

#91 2010-11-22 18:53:40

bbbeb
Scratcher
Registered: 2009-06-11
Posts: 1000+

Re: Soyl

pwiter wrote:

Can you add me?
Programming Freak you know me!

tongue

Follow the given instructions please.


Back in my day.... there were no laws that censored the internet... now, there are.... nah.

Offline

 

#92 2010-11-22 18:55:36

bbbeb
Scratcher
Registered: 2009-06-11
Posts: 1000+

Re: Soyl

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.


Back in my day.... there were no laws that censored the internet... now, there are.... nah.

Offline

 

#93 2010-11-22 19:07:32

bbbeb
Scratcher
Registered: 2009-06-11
Posts: 1000+

Re: Soyl

And why dont we build the DOS off SIMPL-DOS?  big_smile

Just another random idea.


Back in my day.... there were no laws that censored the internet... now, there are.... nah.

Offline

 

#94 2010-11-22 19:52:28

pwiter
Scratcher
Registered: 2010-06-02
Posts: 100+

Re: Soyl

ProgrammingFreak let me in, but he's not putting me on!


http://i.imgur.com/YBeXc.png

Offline

 

#95 2010-11-23 07:10:57

ProgrammingFreak
Scratcher
Registered: 2010-09-04
Posts: 1000+

Re: Soyl

Sorry pwiter!! Um I added you, but could you still fill out the application? Thnx

Offline

 

#96 2010-11-23 15:55:23

pwiter
Scratcher
Registered: 2010-06-02
Posts: 100+

Re: Soyl

Ok!


http://i.imgur.com/YBeXc.png

Offline

 

#97 2010-11-23 16:06:56

pwiter
Scratcher
Registered: 2010-06-02
Posts: 100+

Re: Soyl

1. Username:Pwiter
2. Code you know(C, C++, Assemby):batch,php,vb,asp.net,python,html,css
3. Job you want to have:overall
4. Now prove your worthy:I am worthy
5. Ideas:Online Version!!!!!!!!!: smile


http://i.imgur.com/YBeXc.png

Offline

 

#98 2010-11-26 07:38:10

ProgrammingFreak
Scratcher
Registered: 2010-09-04
Posts: 1000+

Re: Soyl

hey should we make a Online version first?

Last edited by ProgrammingFreak (2010-11-29 14:46:39)

Offline

 

#99 2010-11-26 07:55:01

Scratchthatguys
Scratcher
Registered: 2010-07-16
Posts: 1000+

Re: Soyl

Yeah. Maybe we could even do a demo of the OS, that runs in a window? But it has to be Multi-Platform.

Offline

 

#100 2010-11-26 07:57:03

Scratchthatguys
Scratcher
Registered: 2010-07-16
Posts: 1000+

Re: Soyl

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

 

Board footer