- Wikipedia: Noctis (Web page)
- Noctis - Official site (Web page)
- Proteus - early prototype screenshots (Blog post)
- Gamasutra: The Making of Elite (Video)
- The Brilliance of Dwarf Fortress
- Interview with Tarn Adams (creator of Dwarf Fortress) (Slides) (Video)
This file contains 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
from dataclasses import dataclass | |
def hyperbolic_smoother(x, n = 10.0): | |
"""n determines how strongly smaller values will be magnified""" | |
return (n + 1) * x / (n * x + 1) | |
@dataclass | |
class Track: |
This file contains 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
-- Toggle redshift when viewing videos with mpv | |
-- When pausing redshift is reenabled (and disabled again when continuing) | |
-- If running | |
if os.execute("pgrep -x redshift >/dev/null") ~= 0 then | |
rs_enabled = true | |
else | |
rs_enabled = false | |
end |
This file contains 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
-- Toggle redshift when viewing videos with mpv | |
-- When pausing redshift is reenabled (and disabled again when continuing) | |
-- This script assumes that redshift is running | |
rs_enabled = true | |
function rs_toggle() | |
os.execute("pkill -x -USR1 redshift") | |
end |