Science Score: 26.0%
This score indicates how likely this project is to be science-related based on various indicators:
-
○CITATION.cff file
-
✓codemeta.json file
Found codemeta.json file -
✓.zenodo.json file
Found .zenodo.json file -
○DOI references
-
○Academic publication links
-
○Academic email domains
-
○Institutional organization owner
-
○JOSS paper metadata
-
○Scientific vocabulary similarity
Low similarity (7.4%) to scientific vocabulary
Last synced: 10 months ago
·
JSON representation
Repository
nothing to do
Basic Info
- Host: GitHub
- Owner: IMMBLm
- License: mit
- Language: Jupyter Notebook
- Default Branch: main
- Size: 359 MB
Statistics
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
- Releases: 0
Created over 1 year ago
· Last pushed 10 months ago
Metadata Files
Readme
Changelog
Contributing
Funding
License
Code of conduct
Citation
Codeowners
Security
Governance
Roadmap
Authors
Notice
Maintainers
Copyright
README
=== Basic Information
Author : Zac Brown
Date : 11.20.2009
License : BSD License
SimpleVM was written for the purpose of demonstrating some
basic techniques in implementing simple virtual machines.
It stemmed from my time spent in a programming languages course
and the professor asked me to teach a couple classes on basic
virtual machines.
This code isn't intended to be used for production systems however
with some more work, its feasible that it could be used as such. It
has a couple major weaknesses right now, mainly lack of any way to
allocate memory and/or garbage collection with objects as well as
a linear search style for looking up line numbers for jump labels.
These are largely due to lack of time to fix these deficiencies.
=== Caveats
* New lines indicate the end of an operation, you can't have multiple
operations on the same line, so nothing like "IPUSH 5 IPUSH 5 IADD".
It would need to be:
IPUSH 5
IPUSH 5
IADD
* Character operations
* CPUSH doesn't need any quotes or apostrophes surrounding a character.
ie: "CPUSH c" would push the character 'c' on the stack.
* Its possible that I'll add char type arithmetic/bitwise operations
at some later time, but it doesn't really make much sense for now.
* No manual memory management for now so there's no real reason to have the
LOAD/STOR operations. They'll remain till I've decided they need to go
for good.
* Array operations
* No way to modify an array after its created right now.
* Arrays cannot be nested yet.
Owner
- Login: IMMBLm
- Kind: user
- Repositories: 1
- Profile: https://github.com/IMMBLm
GitHub Events
Total
- Push event: 1,489
- Create event: 2
Last Year
- Push event: 1,489
- Create event: 2
Dependencies
.github/workflows/ci-plus.yml
actions
- actions/checkout v3 composite
- actions/setup-python v4 composite
requirements.txt
pypi
- certifi ==2024.7.4
- chardet ==5.2.0
- charset-normalizer ==3.3.2
- idna ==3.7
- numpy ==2.0.1
- pandas ==2.2.2
- python-dateutil ==2.9.0.post0
- pytz ==2024.1
- requests ==2.32.3
- six ==1.16.0
- tzdata ==2024.1
- urllib3 ==2.2.2
Cargo.lock
cargo
- aho-corasick 1.1.2
- autocfg 1.1.0
- bit-set 0.5.3
- bit-vec 0.6.3
- bitflags 1.3.2
- cfg-if 1.0.0
- crossterm 0.26.1
- crossterm_winapi 0.9.1
- fancy-regex 0.13.0
- getrandom 0.2.12
- itoa 1.0.10
- libc 0.2.153
- lock_api 0.4.11
- log 0.4.20
- memchr 2.7.1
- mio 0.8.10
- parking_lot 0.12.1
- parking_lot_core 0.9.9
- ppv-lite86 0.2.17
- proc-macro2 1.0.78
- quote 1.0.35
- rand 0.8.5
- rand_chacha 0.3.1
- rand_core 0.6.4
- redox_syscall 0.4.1
- regex-automata 0.4.5
- regex-syntax 0.8.2
- ryu 1.0.16
- scopeguard 1.2.0
- serde 1.0.196
- serde_derive 1.0.196
- serde_json 1.0.113
- signal-hook 0.3.17
- signal-hook-mio 0.2.3
- signal-hook-registry 1.4.1
- smallvec 1.13.1
- syn 2.0.48
- unicode-ident 1.0.12
- wasi 0.11.0+wasi-snapshot-preview1
- winapi 0.3.9
- winapi-i686-pc-windows-gnu 0.4.0
- winapi-x86_64-pc-windows-gnu 0.4.0
- windows-sys 0.48.0
- windows-targets 0.48.5
- windows_aarch64_gnullvm 0.48.5
- windows_aarch64_msvc 0.48.5
- windows_i686_gnu 0.48.5
- windows_i686_msvc 0.48.5
- windows_x86_64_gnu 0.48.5
- windows_x86_64_gnullvm 0.48.5
- windows_x86_64_msvc 0.48.5
Dockerfile
docker
- golang latest build
ROS/Dockerfile
docker
- jupyter/minimal-notebook latest build
build.gradle
maven
pom.xml
maven
package-lock.json
npm
- 1714 dependencies
package.json
npm
- prisma ^3.14.0 development
- @fastify/static ^5.0.2
- @fastify/websocket ^5.0.0
- @prisma/client ^3.14.0
- @testing-library/jest-dom ^5.16.4
- @testing-library/react ^13.2.0
- @testing-library/user-event ^13.5.0
- bcryptjs ^2.4.3
- dotenv ^16.0.1
- fastify ^3.29.0
- jsonwebtoken ^8.5.1
- passport ^0.6.0
- react ^18.1.0
- react-dom ^18.1.0
- react-router-dom ^6.3.0
- react-scripts 5.0.1
- web-vitals ^2.1.4
Gemfile
rubygems
- combustion >= 0
- minitest >= 5
- pg >= 0
- propshaft >= 0
- rails ~> 8.0.0
- rake >= 0