Skip to content

Instantly share code, notes, and snippets.

View sapjax's full-sized avatar
hibernating

sapjax sapjax

hibernating
  • 13:44 (UTC +08:00)
View GitHub Profile
@NelloKudo
NelloKudo / tft_linux_waydroid_guide.md
Last active May 9, 2026 16:30
How to play Teamfight Tactics (TFT) on Linux (Waydroid)

Playing TFT on Linux using Waydroid

Just like many other League addicts, ever since the Vanguard incident, TFT has been a no-go....

except it isn't, since the Android version works just as fine, after some tweaks!

Screenshot From 2025-01-02 22-05-49


@paulkaplan
paulkaplan / colorTempToRGB.js
Last active January 30, 2026 12:31
Color Temperature to RGB
// From http://www.tannerhelland.com/4435/convert-temperature-rgb-algorithm-code/
// Start with a temperature, in Kelvin, somewhere between 1000 and 40000. (Other values may work,
// but I can't make any promises about the quality of the algorithm's estimates above 40000 K.)
function colorTemperatureToRGB(kelvin){
var temp = kelvin / 100;