/explore

Click through on any links that interest you or select the planets on the right to continue exploring the Outer Web.
You are here

pragtob.wordpress.com
| | github.com
6.2 parsecs away

Travel
| | Are We Fast Yet? Comparing Language Implementations with Objects, Closures, and Arrays - smarr/are-we-fast-yet
| | nirvdrum.com
6.2 parsecs away

Travel
| | Technical articles by Kevin Menard. Topics include Ruby, Java, machine learning, and general computing.
| | eregon.me
3.4 parsecs away

Travel
| | In this blog post we benchmark many Ruby versions and the latest Ruby Just-in-Time compilers (JITs) on the newest Ruby benchmark suite, yjit-bench. As a teaser, the geometric mean speedups compared to CRuby 3.1 on these 14 benchmarks are: MJIT 1.26x, YJIT 1.39x, JRuby 1.86x and TruffleRuby 6.23x. Read on to find more about the benchmarks and gain insights on these speedups. This blog post is also available on Medium.
| | raphael.medaer.me
34.0 parsecs away

Travel
| If you are a front-end or a fullstack developer, you maybe already imported CSS files from a Javascript or a Typescript file. For instance: import styles from "./styles.css" A few months ago it would not have been possible out of the shelf. Indeed you would need a bundler (such as WebPack, Rollup,...) to "inline" the CSS file as a string in your Javascript file. Nowadays it's possible thanks to the "CSS Modules" (to not confuse with the homonym open-source project).