Git Product home page Git Product logo

blokken's Introduction

Blokken

Blockly-based programming environment.

Blokken screenshot

Getting started

Clone the repository or download all files and open index.html.

Features

  • Programming: drag blocks from the Blocks menu to the workspace. Execute the program with the green or red run button.
    • The green run button steps through the code.
    • The red run button continuously executes the code. Interrupting an infinite loop is not possible. Save the program to avoid losing it.
  • Navigation: Zoom and center.
  • View the corresponding JavaScript code.
  • Save the current program to an .xml file and load a program from xml
  • Change the language.

About

Blokken is based on Blockly, a library for visual programming by Google.

Blokken is no longer actively used by its original maintainer. However, it can still be used and contributions through pull requests are accepted.

blokken's People

Contributors

pcordemans avatar

Watchers

James Cloos avatar  avatar

blokken's Issues

JavaScript code tab readability

Code generation contains highlight function calls. These should be pruned for readability.

var n, parameter1, parameter2, resultaat;

/**
 * Deze functie beschrijven...
 */
function faculteit(n) {
  highlightBlock('r;5JLpZ(C:y?CKFx8Q$');
  highlightBlock('04O]]sb_+R}MGhA@_OK?');
  if (n == 0) {
    return 1;
  }
  highlightBlock('b:(QCaq@H0lEyU0:}m#3');
  resultaat = 1;
  highlightBlock('eXl+%WX8*i/h%xIQQ;;/');
  while (!(n == 1)) {
    highlightBlock('wPC:QiZ/P_vz9#c.IqG6');
    resultaat = n * (n - 1);
    highlightBlock('$.24~^KWITI8q={Iu7R{');
    n = n - 1;
    highlightBlock('eXl+%WX8*i/h%xIQQ;;/');
  }
  return resultaat;
}

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.