• Menu
    • New
    • Load Demos
    • Load from Device
    • Save to Device
    • Cookies
    • About EdScratch
    • Terms of Use
    • Help
  • Save
  • Edison V2
    • Switch to Edison V3
    • Which version do I have?
  • Program Edison
  • Menu
    • New
    • Load Demos
    • Load from Device
    • Save to Device
    • About EdScratch
    • Terms of Use
    • Help
  • Program

Onyx Source © 2026

Create Variable

Alphanumeric characters only and must begin with a letter.

Rename Variable - [var name]

Alphanumeric characters only and must begin with a letter.

Variables

Variable Name
Action
loading

Save to Device

Save to Device

Sorry but Save to Computer is only supported on Apple devices with an iOS version of 13 or higher.

...

Program Edison

Before clicking the 'Program Edison' button below:

1. Connect Edison to your computer's headphone jack using the EdComm cable.
2. Check that your computer's volume is at maximum.
3. Press the round (record) button on Edison one time.

There seems to be a network issue accessing the compiler.

Program Edison - ERROR

...

Load Demos

Load from Device

Please select an EdScratch save file.
All EdScratch save files are file type .ees.

About EdScratch

Copyright 2018 Microbric Pty Ltd

The EdScratch app was developed using the Scratch Blocks code base developed by MIT. Scratch Blocks was built on the Blockly code base developed by Google.

Contributions and credits:
Edison firmware by Bill Hammond, Circuitworks
Edison token assembler developed by Brian Danilko, Likeable Software
EdScratch app built by Ben Hayton, Microbric
User management system built by Sean Killian, Killian Web Development

Help

EdScratch programming language

For educational resources, further information on warning messages and detailed tutorials on programming with EdScratch, visit the EdScratch page on the Meet Edison website.

Connectivity issues

To ensure that your program can be compiled and sent to the Edison robot, it is a good idea to check your connection with the EdScratch compiler.

Compiler output type

To be sent to the Edison robot, your program must be compiled by the EdScratch compiler. The EdScratch compiler can create two types of outputs and automatically chooses which type to create for you based on what it detects about your device.

If your programs are not downloading successfully, you can manually switch the compiler output type.

Need additional help? Please feel free to contact us.

Troubleshooting - Connection

If the test above has the result "NO SERVER FOUND" then a firewall may be blocking access to the compiler.

To rectify this, ask your network administrator to whitelist these addresses:

  • api.edisonrobotics.net
  • wavs.edisonrobotics.net
Back to Help

5a82f65b-9a1b-41b1-af1b-c9df802d15db <WORKING × 2026>

Web applications use random tokens as unique transaction trackers or temporary secure handles for user sessions. Because the values are highly unpredictable, they prevent malicious players from guessing valid records via a brute-force approach. 3. Microservice Request Tracking (Correlation IDs)

In the early days of software engineering, organizing data was relatively straightforward. Applications relied heavily on sequential integers (1, 2, 3, 4...) generated by a central database to identify records. However, as the world shifted toward cloud computing, microservices, and distributed databases, sequential numbers broke down.

Because Version 4 UUIDs rely on randomness rather than centralized coordination, developers often ask: What are the chances that two systems will accidentally generate 5a82f65b-9a1b-41b1-af1b-c9df802d15db at the same time?

This means the probability of generating this specific identifier was $1$ in $2^122$, or approximately $1$ in $5.3 \times 10^36$.

const uniqueId = crypto.randomUUID(); console.log(uniqueId); // Output format: xxxxxxxx-xxxx-4xxx-xxxx-xxxxxxxxxxxx Use code with caution. 5a82f65b-9a1b-41b1-af1b-c9df802d15db

This public link is valid for 7 days and shares a thread, including any personal information you added. This link or copies made by others cannot be deleted. If you share with third parties, their policies apply. Can’t copy the link right now. Try again later.

(e.g., Chrome, Excel, a specific enterprise tool).

) unique values. To put this into perspective, you would need to generate 1 billion UUIDs every single second for approximately 85 years just to have a 50% chance of experiencing a single duplication (known as a "collision"). This mathematical safety margin makes it safe to generate keys offline without checking a central registry. Use Cases in Modern Software Engineering

Unlike Version 1 UUIDs (which rely heavily on the precise time and the physical network card's MAC address), a Version 4 UUID utilizes cryptographic pseudo-random number generators. Out of the 128 bits in the system, 122 bits are entirely random, resulting in a staggering possible unique combinations. Common Applications of UUIDs in Enterprise Technology Web applications use random tokens as unique transaction

: Look at the first character of Group 3 ( 41b1 ). The number 4 dictates that this is a UUID Version 4 . This means all bits outside of the version and variant properties are entirely randomly generated using a cryptographically secure pseudo-random number generator (CSPRNG).

When an enterprise software system uses microservices, a single user action might trigger a cascade of dozens of requests across separate API gateways, authentication servers, and payment processors. System administrators pass a UUID like 5a82f65b-9a1b-41b1-af1b-c9df802d15db through the HTTP headers as a . If an error occurs midway through the pipeline, developers can search log aggregators for that specific string to trace the entire lifecycle of that exact request. 3. Secure Session Tokens and Idempotency Keys

(4 characters): The first 1-3 bits here define the UUID variant (in this case, the standard RFC 4122/OSF variant).

There are five main UUID versions (1 through 5). Each serves a different purpose: Microservice Request Tracking (Correlation IDs) In the early

P(n)≈1−e−n22Xcap P open paren n close paren is approximately equal to 1 minus e raised to the negative the fraction with numerator n squared and denominator 2 cap X end-fraction power is the number of generated IDs. is the total possible combinations ( 21222 to the 122nd power

import java.util.UUID; System.out.println(UUID.randomUUID().toString()); Use code with caution.

Do you need assistance setting up a for your own software project? Share public link

| Feature | UUID (e.g., 5a82f65b-...) | Auto-increment Integer | |---------|---------------------------|------------------------| | Global uniqueness | Yes, across any system | No, only within one database table | | Generation without coordination | Yes, offline/independent | No, needs central sequence | | Predictability | Low (random) | High (sequential) | | Scalability | Excellent for distributed systems | Poor for sharded architectures | | URL-safe representation | Yes (hyphens optional) | Yes | | Index performance | Slower (wider, random) | Faster (narrow, sequential) |

Cookies

We use Google Analytics to measure how visitors use this web app so we can improve it based on user needs. For instance, which options visitors use most often, and if they get error messages from the web app. These cookies don't collect information that identifies a visitor.

We do not allow Google to use or share the data about how you use this site and all information these cookies collect is aggregated and therefore anonymous. It is only used to improve how the web app works. This cookie is stored for a period of one year.

Accept cookies
This web app uses cookies to measure how the app is used and to make improvements to its features. By clicking "Accept", you consent to the use of cookies for this purpose.