GameTank: Open-source, 8-bit console live on CrowdSupply
crowdsupply.com2 pointsby nick_g1 comments
tbody tr.athing:has(.title .titleline a[href*="twitter.com"]),
tbody tr.athing:has(.title .titleline a[href*="twitter.com"]) + tr,
tbody tr.athing:has(.title .titleline a[href\*="twitter.com"]) + tr + tr
{
display: none;
}
This selects for any `tr` which has an anchor to a url with twitter.com somewhere in it (with some layers in between) and the two `tr` which follow. Note that this is pretty naive and could have some false positives with links such as https://example.com/blog/a-post-about-twitter.com and such, you could be more careful with the attribute selector if you'd like
I won't go into technical details of the console here. You can find more information about it on it's website [0] or it's github repo[1]. You can check the console out with its emulator[2], which can run in your browser with the game listed here[3]. I also wrote a post about developing a game for the GameTank[4], which might give an idea of what it's like to make a game for the system.
[0] https://gametank.zone/ [1] https://github.com/clydeshaffer/gametank [2] https://github.com/clydeshaffer/GameTankEmulator/ [3] https://gametank.zone/games [4] https://nickgirardo.com/posts/avhg-thoughts.html