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
# This is the complete source code to Basic Gorillas: | |
# https://dragonruby.itch.io/basicgorillas | |
# | |
# You can tinker with this by getting a copy of DragonRuby Game Toolkit: | |
# https://dragonruby.org/ | |
# | |
# Amir Rajan wrote this game, catch him at https://twitter.com/amirrajan ! | |
class YouSoBasicGorillas | |
attr_accessor :outputs, :grid, :game, :inputs |
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
class ColorPalatte | |
attr_accessor :colors | |
def initialize clrs | |
clrs.each_with_index do |c, i| | |
clrs[i] = hex_to_rgb c | |
end | |
@colors = clrs | |
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
# Go to uBlock's options and paste in the following under the "My Filters" tab | |
https://abs.twimg.com/fonts/chirp-bold-web.woff | |
https://abs.twimg.com/fonts/chirp-heavy-web.woff | |
https://abs.twimg.com/fonts/chirp-regular-web.woff | |
https://abs.twimg.com/fonts/v2/chirp-bold-web.woff | |
https://abs.twimg.com/fonts/v2/chirp-heavy-web.woff | |
https://abs.twimg.com/fonts/v2/chirp-medium-web.woff | |
https://abs.twimg.com/fonts/v2/chirp-regular-web.woff |
To install in Firefox:
-
If it doesn't already exist, create a folder called
chrome
in your profile folder. The easiest way to find your profile folder is inabout:profiles
(there's a "Show in Finder" link for the folder on macOS). Be sure to choose the right profile is you have more than one. -
Put
userContent.css
above in thechrome
folder you just created. -
Load
about:config
in Firefox then settoolkit.legacyUserProfileCustomizations.stylesheets
to true. -
Quit and reopen Firefox, just for luck.
OlderNewer