Click here to Skip to main content
15,887,436 members
Home / Discussions / Design and Architecture
   

Design and Architecture

 
GeneralRe: Plurality - Modular Code Editor Pin
Gurigraphics31-Dec-16 6:49
Gurigraphics31-Dec-16 6:49 
GeneralRe: Plurality - Modular Code Editor Pin
Eddy Vluggen31-Dec-16 7:54
professionalEddy Vluggen31-Dec-16 7:54 
GeneralRe: Plurality - Modular Code Editor Pin
Gurigraphics31-Dec-16 9:34
Gurigraphics31-Dec-16 9:34 
GeneralRe: Plurality - Modular Code Editor Pin
Eddy Vluggen31-Dec-16 10:45
professionalEddy Vluggen31-Dec-16 10:45 
GeneralRe: Plurality - Modular Code Editor Pin
Gurigraphics31-Dec-16 12:55
Gurigraphics31-Dec-16 12:55 
GeneralRe: Plurality - Modular Code Editor Pin
Eddy Vluggen1-Jan-17 0:16
professionalEddy Vluggen1-Jan-17 0:16 
Generalnot new(?) Pin
D4rkTrick31-Dec-16 14:57
professionalD4rkTrick31-Dec-16 14:57 
GeneralRe: not new(?) Pin
Gurigraphics1-Jan-17 3:46
Gurigraphics1-Jan-17 3:46 
Quote:
I like the idea of having boxes rather than flowing text. Although, this strongly reminds me of smalltalk and self - especially the "one-file-thing" and the "simply drag the already existing function". Or Perhaps I read too roughly? ^_^;

That's it! This idea is based in Stencyl/Google Blockly that are based in Scratch MIT Media Lab that is based in Squeak/Smalltalk.

The idea base is: "Everything is represented as objects - Including snippets of code".

What Plurality show of new?

1- "bidirecional-visual-to-text".

The ideia is use comments to split and create blocks. Example:

// HelloWorld, red
alert("Hello World!");


This create in visual tab, a block color red with name "HelloWorld" with the code below.

And also Multi-language like Google Blockly

Blocks can be translated and converted into other languages.
If there compatible blocks then can be exported:

HelloWorld block export to C++

#include <iostream>

int main()
{
	std::cout << "hello world!\n";
	return 0;
}


HelloWorld block export to PHP

<?php 
echo '<p>Hello World</p>'; 
?> 


However, this Multi-language is most useful only for multi-platform game development.

Lastly, I found this library that does exactly what this Editor need:

jQquery sortable lists[^]

modified 1-Jan-17 9:57am.

GeneralRe: not new(?) Pin
D4rkTrick2-Jan-17 2:24
professionalD4rkTrick2-Jan-17 2:24 
GeneralRe: not new(?) Pin
Gurigraphics2-Jan-17 4:27
Gurigraphics2-Jan-17 4:27 
GeneralRe: not new(?) Pin
Eddy Vluggen2-Jan-17 6:57
professionalEddy Vluggen2-Jan-17 6:57 
GeneralRe: not new(?) Pin
Gurigraphics2-Jan-17 10:49
Gurigraphics2-Jan-17 10:49 
QuestionWhere to start? - Program which allows multiple users on a network to add different inputs Pin
kmk51316-Dec-16 16:40
kmk51316-Dec-16 16:40 
AnswerRe: Where to start? - Program which allows multiple users on a network to add different inputs Pin
Jon McKee16-Dec-16 18:07
professionalJon McKee16-Dec-16 18:07 
AnswerRe: Where to start? - Program which allows multiple users on a network to add different inputs Pin
Gerry Schmitz18-Dec-16 6:44
mveGerry Schmitz18-Dec-16 6:44 
AnswerRe: Where to start? - Program which allows multiple users on a network to add different inputs Pin
jschell26-Dec-16 6:28
jschell26-Dec-16 6:28 
QuestionVirtualization To Make a Sandbox Pin
Richard Andrew x6416-Dec-16 14:38
professionalRichard Andrew x6416-Dec-16 14:38 
AnswerRe: Virtualization To Make a Sandbox Pin
Munchies_Matt17-Dec-16 0:15
Munchies_Matt17-Dec-16 0:15 
AnswerRe: Virtualization To Make a Sandbox Pin
Gerry Schmitz18-Dec-16 7:07
mveGerry Schmitz18-Dec-16 7:07 
AnswerRe: Virtualization To Make a Sandbox Pin
Nathan Minier21-Dec-16 3:31
professionalNathan Minier21-Dec-16 3:31 
AnswerRe: Virtualization To Make a Sandbox Pin
jschell26-Dec-16 6:37
jschell26-Dec-16 6:37 
QuestionCalling class function vs function getting class variables Pin
hpjchobbes7-Dec-16 14:04
hpjchobbes7-Dec-16 14:04 
AnswerRe: Calling class function vs function getting class variables Pin
Mycroft Holmes7-Dec-16 16:58
professionalMycroft Holmes7-Dec-16 16:58 
GeneralRe: Calling class function vs function getting class variables Pin
hpjchobbes7-Dec-16 17:15
hpjchobbes7-Dec-16 17:15 
GeneralRe: Calling class function vs function getting class variables Pin
Mycroft Holmes8-Dec-16 11:52
professionalMycroft Holmes8-Dec-16 11:52 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.