https://github.com/joelius300/dmath_hslu_scripts
DMATH helper scripts for Micropython 2014 on ndless
https://github.com/joelius300/dmath_hslu_scripts
Last synced: 27 days ago
JSON representation
DMATH helper scripts for Micropython 2014 on ndless
- Host: GitHub
- URL: https://github.com/joelius300/dmath_hslu_scripts
- Owner: Joelius300
- License: mit
- Created: 2022-06-02T14:23:42.000Z (almost 3 years ago)
- Default Branch: main
- Last Pushed: 2023-01-04T07:56:57.000Z (over 2 years ago)
- Last Synced: 2024-10-06T06:23:02.373Z (7 months ago)
- Language: Python
- Homepage:
- Size: 39.1 KB
- Stars: 1
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
## DMATH Python Scripts HSLU
Micropython 2014 scripts for DMATH, designed for the (black) TI-Nspire™ CX CAS I (not tested on the (red) successor II).
### Rename all to .tns
To create .tns files for the TI (with zsh) use:
```bash
autoload zmv
zmv '(*.py)' '$1.tns'
```To reverse it use:
```bash
zmv '(*.py).tns' '$1'
```Or in bash (e.g. git bash for windows):
```bash
for f in *.py; do mv -- "$f" "$f.tns"; done
```To reverse it:
```bash
for f in *.tns; do mv -- "$f" "${f%.tns}"; done
```### Disclaimer
Use at your own risk; it may not be allowed anymore or contain errors. Even though it's public now, this was just hacked together for personal use in one semester and if you expect more, you'll be disappointed.
License: MIT