Skip to content

Instantly share code, notes, and snippets.

@Andrew-Chen-Wang
Andrew-Chen-Wang / TOP_SUBREDDITS
Last active September 25, 2022 16:34
Top subreddits from redditlist.com
['announcements', 'funny', 'AskReddit', 'gaming', 'aww', 'Music', 'pics', 'worldnews', 'science', 'movies', 'todayilearned', 'videos', 'news', 'Showerthoughts', 'Jokes', 'food', 'askscience', 'IAmA', 'EarthPorn', 'gifs', 'nottheonion', 'books', 'DIY', 'explainlikeimfive', 'LifeProTips', 'Art', 'space', 'sports', 'mildlyinteresting', 'Documentaries', 'gadgets', 'tifu', 'memes', 'photoshopbattles', 'UpliftingNews', 'GetMotivated', 'dataisbeautiful', 'listentothis', 'history', 'television', 'philosophy', 'InternetIsBeautiful', 'Futurology', 'WritingPrompts', 'OldSchoolCool', 'personalfinance', 'nosleep', 'creepy', 'TwoXChromosomes', 'wallstreetbets', 'technology', 'wholesomememes', 'AdviceAnimals', 'interestingasfuck', 'Fitness', 'politics', 'WTF', 'lifehacks', 'oddlysatisfying', 'relationship_advice', 'Minecraft', 'travel', 'NatureIsFuckingLit', 'facepalm', 'Whatcouldgowrong', 'pcmasterrace', 'nextfuckinglevel', 'leagueoflegends', 'BlackPeopleTwitter', 'me_irl', 'bestof', 'dankmemes', 'Unexpected', 'Tinder', 'd
@JoeyBurzynski
JoeyBurzynski / 55-bytes-of-css.md
Last active February 24, 2026 14:08
58 bytes of css to look great nearly everywhere

58 bytes of CSS to look great nearly everywhere

When making this website, i wanted a simple, reasonable way to make it look good on most displays. Not counting any minimization techniques, the following 58 bytes worked well for me:

main {
  max-width: 38rem;
  padding: 2rem;
  margin: auto;
}
@redlotus
redlotus / docstrings.py
Created October 2, 2017 04:34
Google Style Python Docstrings
# -*- coding: utf-8 -*-
"""Example Google style docstrings.
This module demonstrates documentation as specified by the `Google Python
Style Guide`_. Docstrings may extend over multiple lines. Sections are created
with a section header and a colon followed by a block of indented text.
Example:
Examples can be given using either the ``Example`` or ``Examples``
sections. Sections support any reStructuredText formatting, including