Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/thomasroessl/flowtutor
A graphical programming environment using flowcharts.
https://github.com/thomasroessl/flowtutor
c dearpygui education flowchart graphical-programming programming python
Last synced: 4 months ago
JSON representation
A graphical programming environment using flowcharts.
- Host: GitHub
- URL: https://github.com/thomasroessl/flowtutor
- Owner: thomasroessl
- License: lgpl-3.0
- Created: 2023-07-13T10:38:14.000Z (over 1 year ago)
- Default Branch: master
- Last Pushed: 2024-05-15T16:51:33.000Z (9 months ago)
- Last Synced: 2024-10-12T17:22:22.191Z (4 months ago)
- Topics: c, dearpygui, education, flowchart, graphical-programming, programming, python
- Language: Python
- Homepage:
- Size: 6.29 MB
- Stars: 18
- Watchers: 2
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
A graphical programming environment using flowcharts.## Prerequisites
The following programs have to be available on the system for FlowTutor to be able to run:
- [Python] 3.9, 3.10, 3.11, 3.12
- For C programs only:
- [GCC] - C-Compiler
- [GDB] - Debugger## Documentation
An overview of FlowTutors functionality can be found in the projects [Wiki]
## Running
FlowTutor is available through the Python Package Index:
```sh
python -m pip install flowtutor
```## Running C programs on macOS
> **Warning**
> As of June 2023 there exists a bug in MacOS/GDB, that prevents the debugging functionality of FlowTutor from functioning correctly.Flowtutor uses GDB for its C debugging functionality.
Modern Darwin kernels (used in macOS) restrict the capability to assume control over another process, which GDB needs to debug the program.
To give the correct permissions to GDB it needs to be [code signed].### 1. Create a certificate
Run the script `macos-setup-codesign.sh` from the `gdb-codesign` folder.
This sets up a certificate in the System Keychain and trusts the certificate for code signing.### 2. Sign and entitle the gdb binary
Execute the following command with `gdb-entitlement.xml` from the `gdb-codesign` folder:
```sh
codesign --entitlements gdb-entitlement.xml -fs gdb-cert $(which gdb)
```### 3. Reboot
This refreshes the system's certificates and code-signing data.
## Windows Installer Packages
The application is packaged with Pynsist for easier distribution on Windows.
[Python]:
[GCC]:
[GDB]:
[code signed]:
[Wiki]: