

A number of my repos are listed.
But the weird part is that it also lists a repo I don’t recognize. The repo does actually exist on my github account, but it’s marked as “ignored”, and the description says it was automatically exported from Google Code. The code seems to be a MacOS shareware file encryption tool called “BitClamp”, published circa 2008.
No idea how it got on my account.














A web page is a combination of a structured document and a separate stylesheet. The same structured document can be styled in radically different ways just by changing the stylesheet. This is how a website can offer different skins, light/dark mode, etc.
Consider this basic HTML document:
<html> <head><title>Test Page</title></head> <body> <p>This is a paragraph.</p> <ul> <li>This is an unordered bullet-point list item</li> <li>This is also a list item</li> </ul> </body> </html>And here’s a stylesheet to make the bullet points square:
ul { list-style-type: square; }Change the stylesheet and you change how the document is rendered. “Reader mode” is just a minimalist stylesheet built into the browser.