This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env ruby | |
# gem install active_support | |
require 'active_support/inflector' | |
require 'active_support/core_ext/string' | |
# gem install webrick (only ruby3) | |
require 'webrick' | |
# gem install mechanize |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Add this file to ~/.julia/config/ (mkdir config if necessary) | |
try | |
using Coverage | |
catch e | |
@warn "Error initializing Coverage: trying install" exception = (e, catch_backtrace()) | |
using Pkg | |
Pkg.add("Coverage") | |
end |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using Luxor, Thebes, MathTeXEngine | |
function frame(scene, framenumber) | |
background("white") | |
sethue("black") | |
fontsize(15) | |
eased_n = scene.easingfunction(framenumber, 0, 1, scene.framerange.stop) | |
helloworld() | |
eyepoint(200, 200, 100) | |
setline(0.5) |
OlderNewer