Discuss Scratch
- Discussion Forums
- » Advanced Topics
- » Has any ATer made an IDE
- mbrick2
-
1000+ posts
Has any ATer made an IDE
Ive seen browsers but no IDEs. But again IDEs are a lot harder to make…




My Forums
ATs
Collabaration
My collabs
AIPoint
AspectOS
CoreOS
OddyseyOS
Cops and Robbers
#BringBackManagerRights
#ReturnRightsToManagers
#WeAreForManagerRights
#LetsRemindAboutMangers
#WeAreMangers
#MangersMustManage
The road to 1000 posts!
0 ▒ ▒ ▒ ▒ ▒ ▒ ▒ ▒ ▒ ▒ ▒ ▒ ▒ ▒ ▒ ▒ ▒ ▒ ▒ ▒ 1000
80% complete

Banner Made By @Abcde26
Card Made By @Polygon

Card Made By @Polygon
- Chiroyce
-
1000+ posts
Has any ATer made an IDE
April Fools' topics:
— New Buildings in Scratch's headquarters
— Give every Scratcher an M1 MacBook Air
— Scratch should let users edit other Scratchers' projects
— Make a statue for Jeffalo
— Scratch Tech Tips™
— Make a Chiroyce statue emoji
<img src=“x” onerror=“alert('XSS vulnerability discovered')”>
this is a test sentence
- mbrick2
-
1000+ posts
Has any ATer made an IDE
(#3)Not exactly but cool
Does this count?
that was made entirely on an ipad btw
(#4)Thanks
This probably counts.
(#2)When it can execute code
When does a text editor become an IDE?




My Forums
ATs
Collabaration
My collabs
AIPoint
AspectOS
CoreOS
OddyseyOS
Cops and Robbers
#BringBackManagerRights
#ReturnRightsToManagers
#WeAreForManagerRights
#LetsRemindAboutMangers
#WeAreMangers
#MangersMustManage
The road to 1000 posts!
0 ▒ ▒ ▒ ▒ ▒ ▒ ▒ ▒ ▒ ▒ ▒ ▒ ▒ ▒ ▒ ▒ ▒ ▒ ▒ ▒ 1000
80% complete

Banner Made By @Abcde26
Card Made By @Polygon

Card Made By @Polygon
- Chiroyce
-
1000+ posts
Has any ATer made an IDE
an IDE can never execute code - only a compiler/interpreter can generate executable code, which is executed by the os/kernel When it can execute code
April Fools' topics:
— New Buildings in Scratch's headquarters
— Give every Scratcher an M1 MacBook Air
— Scratch should let users edit other Scratchers' projects
— Make a statue for Jeffalo
— Scratch Tech Tips™
— Make a Chiroyce statue emoji
<img src=“x” onerror=“alert('XSS vulnerability discovered')”>
this is a test sentence
- MagicCrayon9342
-
1000+ posts
Has any ATer made an IDE

Templates:
Doesn't belong in the ATs:
Unfortunately, this post does not belong in the Advanced Topics. Please report your post, and in the box type the following:Please move this post to ‘Thinks I’m Making or Creating' or ‘Show and Tell’
- mbrick2
-
1000+ posts
Has any ATer made an IDE
Cooooool The closes I got to success was:
https://jaydendev.github.io/windedit




My Forums
ATs
Collabaration
My collabs
AIPoint
AspectOS
CoreOS
OddyseyOS
Cops and Robbers
#BringBackManagerRights
#ReturnRightsToManagers
#WeAreForManagerRights
#LetsRemindAboutMangers
#WeAreMangers
#MangersMustManage
The road to 1000 posts!
0 ▒ ▒ ▒ ▒ ▒ ▒ ▒ ▒ ▒ ▒ ▒ ▒ ▒ ▒ ▒ ▒ ▒ ▒ ▒ ▒ 1000
80% complete

Banner Made By @Abcde26
Card Made By @Polygon

Card Made By @Polygon
- MagicCrayon9342
-
1000+ posts
Has any ATer made an IDE
(#9)couldn't get line numbers to work.
Cooooool The closes I got to success was:
https://jaydendev.github.io/windedit

Templates:
Doesn't belong in the ATs:
Unfortunately, this post does not belong in the Advanced Topics. Please report your post, and in the box type the following:Please move this post to ‘Thinks I’m Making or Creating' or ‘Show and Tell’
- helloworldbyeworld
-
1000+ posts
Has any ATer made an IDE
I'm not really an ATer, but I made a really clunky but kind of functional html editor:
https://www.johanneschan.com/editor/htmleditor.html
https://www.johanneschan.com/editor/htmleditor.html
Helloworldbyeworld | 1200+ posts | 3D actual music visualizer with a song uploading feature:

I'm part of The Forum Helpers!

- Chiroyce
-
1000+ posts
Has any ATer made an IDE
yeah - the hardware, but the kernel is the “software” part right above it, the closest one. code is executed by comptuer
April Fools' topics:
— New Buildings in Scratch's headquarters
— Give every Scratcher an M1 MacBook Air
— Scratch should let users edit other Scratchers' projects
— Make a statue for Jeffalo
— Scratch Tech Tips™
— Make a Chiroyce statue emoji
<img src=“x” onerror=“alert('XSS vulnerability discovered')”>
this is a test sentence
- Sheep_maker
-
1000+ posts
Has any ATer made an IDE
Then what differentiates an IDE from a text editor?an IDE can never execute code - only a compiler/interpreter can generate executable code, which is executed by the os/kernel When it can execute code
An IDE can execute code by using those compilers/interpreters. It doesn't matter where it's being run, but the IDE is the one that started the process. That's how those fancy language features that analyze the code for errors and warnings work. The IDE itself could come with a compiler or interpreter; for example, VS Code is written in TypeScript and made with Electron, which comes with the V8 engine that has a JIT compiler for JavaScript, so it's capable of running extensions written in JS/TS
- Sheep_maker This is a kumquat-free signature. :P
This, my signature, appears below all my posts. Discuss it on my profile, not the forums. Here's how to make your own.
Post count: more than 6
.postsignature { overflow: auto; } .scratchblocks { overflow-x: auto; overflow-y: hidden; }
This will return false in your favourite programming language (…except Scratch):
(1.0 / 5e-324 - 1.0 / 5e-324) == (1.0 / 5e-324 - 1.0 / 5e-324)
- Chiroyce
-
1000+ posts
Has any ATer made an IDE
Well yeah, that makes sense. An IDE can execute code by using those compilers/interpreters.
True - but what about other languages? It surely doesn't execute the entire program just to find out that the print statement would never run, right? The IDE itself could come with a compiler or interpreter; for example, VS Code is written in TypeScript and made with Electron, which comes with the V8 engine that has a JIT compiler for JavaScript, so it's capable of running extensions written in JS/TS

So an IDE is a text editor that allows you to run / debug and analyse your code without having to use another program.
Last edited by Chiroyce (Jan. 19, 2022 02:40:20)
April Fools' topics:
— New Buildings in Scratch's headquarters
— Give every Scratcher an M1 MacBook Air
— Scratch should let users edit other Scratchers' projects
— Make a statue for Jeffalo
— Scratch Tech Tips™
— Make a Chiroyce statue emoji
<img src=“x” onerror=“alert('XSS vulnerability discovered')”>
this is a test sentence
- ajsya
-
1000+ posts
Has any ATer made an IDE
That's just a text box The closes I got to success was:
https://jaydendev.github.io/windedit


Hi, I'm ajsya!
Owner of several dead shops, Notable Chair, Scratch Wiki Editor, Developer, and Gamer.
| Roblox | GitHub | Wiki | My Posts | Scratch Empires | Scratch Weather App | Minecraft Server Pinger |
Before creating a new topic on the forums search Ocular to see if one already exists!

Owner of several dead shops, Notable Chair, Scratch Wiki Editor, Developer, and Gamer.
| Roblox | GitHub | Wiki | My Posts | Scratch Empires | Scratch Weather App | Minecraft Server Pinger |
Before creating a new topic on the forums search Ocular to see if one already exists!

- skymover1239
-
500+ posts
Has any ATer made an IDE
Does Ink count (link in my sig.)?

First time a moderator got ninjaed??
500 Posts
Current Mainline projects
AquaCSS - A CSS framework.
Ink - An editor that does, lots of things.
- DifferentDance8
-
100+ posts
Has any ATer made an IDE
(#16)No. It can not execute code.
Does Ink count (link in my sig.)?
when [profile v] key pressed
forever
if <you are reading this> then
play sound [Welcome to my profile. v]
set [your status v] to [awesome]
else
point towards [you for not enjoying me v]
set pen color to (pointy pen with a triple spike on top)
crash your os.
end
end
- Chiroyce
-
1000+ posts
Has any ATer made an IDE
and they can attach fancy debuggers to the execution process so that you can get a sneak peak at the runtime, probably the best feature of an IDE. wut?? IDE's dont execute code, they usually have a built in Terminal EMULATOR that can be used, either that or it invokes the interpreter for that language
Last edited by Chiroyce (Jan. 21, 2022 02:40:17)
April Fools' topics:
— New Buildings in Scratch's headquarters
— Give every Scratcher an M1 MacBook Air
— Scratch should let users edit other Scratchers' projects
— Make a statue for Jeffalo
— Scratch Tech Tips™
— Make a Chiroyce statue emoji
<img src=“x” onerror=“alert('XSS vulnerability discovered')”>
this is a test sentence
- Discussion Forums
- » Advanced Topics
-
» Has any ATer made an IDE