
Security News
Astral Launches pyx: A Python-Native Package Registry
Astral unveils pyx, a Python-native package registry in beta, designed to speed installs, enhance security, and integrate deeply with uv.
= KoiVM
KoiVM is an extremely simple prototype Virtual Machine written in Ruby. It was created with learning in mind and is written so that it is easy to understand and play with.
=== Examples
The standard 'Hello world!', KoiVM style:
require 'koi' include KoiVM
VM.new.run [ PUSH_STRING, "Hello World!\n", PRINT ]
#=> Hello world!
And an old-school 'Blast off' example:
require 'koi' include KoiVM
VM.new.run [ PUSH_INT, 11, PUSH_INT, 1, SUBTRACT, DUP, TO_STRING, PRINT, PUSH_STRING, ", ", PRINT, DUP, PUSH_INT, 0, EQUAL, JUMP_UNLESS, -13, PUSH_STRING, "Blast Off!\n", PRINT ]
#=> 10, 9, 8, 7, 6, 5, 4, 3, 2, 1, 0, Blast off!
=== Author & Credits
Author:: {Aaron Gough}[mailto:aaron@aarongough.com]
Copyright (c) 2010 {Aaron Gough}[http://thingsaaronmade.com/] ({thingsaaronmade.com}[http://thingsaaronmade.com/]), released under the MIT license
FAQs
Unknown package
We found that koi-vm demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Astral unveils pyx, a Python-native package registry in beta, designed to speed installs, enhance security, and integrate deeply with uv.
Security News
The Latio podcast explores how static and runtime reachability help teams prioritize exploitable vulnerabilities and streamline AppSec workflows.
Security News
The latest Opengrep releases add Apex scanning, precision rule tuning, and performance gains for open source static code analysis.