Skip to content

Instantly share code, notes, and snippets.

View clort81's full-sized avatar
🏠
Working from home

Clort clort81

🏠
Working from home
View GitHub Profile
@wmcbrine
wmcbrine / saucer.bas
Created August 1, 2022 03:20
Saucer, a space duel (game for the CoCo)
10 CLS
20 CLEAR 50
30 M=RND(219)
40 N=RND(179)
50 V=0:W=0:SK=0
60 PMODE 4,1
70 SCREEN 1,1
80 PCLS
90 DIM A(14)
100 DIM Z(1)
@phiresky
phiresky / motioninterpolation.vpy
Last active October 31, 2025 01:50
Realtime motion interpolating 60fps playback in mpv
# vim: set ft=python:
# see the README at https://gist.github.com/phiresky/4bfcfbbd05b3c2ed8645
# source: https://github.com/mpv-player/mpv/issues/2149
# source: https://github.com/mpv-player/mpv/issues/566
# source: https://github.com/haasn/gentoo-conf/blob/nanodesu/home/nand/.mpv/filters/mvtools.vpy
import vapoursynth
core = vapoursynth.get_core()