├── .gitattributes ├── .github ├── ISSUE_TEMPLATE │ └── suggestion.yaml └── workflows │ └── lint.yaml ├── .tool-versions ├── code_of_conduct.md ├── contributing.md ├── eggbug.svg ├── license └── readme.md /.gitattributes: -------------------------------------------------------------------------------- 1 | ## GITATTRIBUTES FOR WEB PROJECTS 2 | # 3 | # These settings are for any web project. 4 | # 5 | # Details per file setting: 6 | # text These files should be normalized (i.e. convert CRLF to LF). 7 | # binary These files are binary and should be left untouched. 8 | # 9 | # Note that binary is a macro for -text -diff. 10 | ###################################################################### 11 | 12 | ## AUTO-DETECT 13 | ## Handle line endings automatically for files detected as 14 | ## text and leave all files detected as binary untouched. 15 | ## This will handle all files NOT defined below. 16 | * text=auto 17 | 18 | ## SOURCE CODE 19 | *.bat text eol=crlf 20 | *.coffee text 21 | *.css text 22 | *.htm text 23 | *.html text 24 | *.inc text 25 | *.ini text 26 | *.js text 27 | *.json text 28 | *.jsx text 29 | *.less text 30 | *.od text 31 | *.onlydata text 32 | *.php text 33 | *.pl text 34 | *.py text 35 | *.rb text 36 | *.sass text 37 | *.scm text 38 | *.scss text 39 | *.sh text eol=lf 40 | *.sql text 41 | *.styl text 42 | *.tag text 43 | *.ts text 44 | *.tsx text 45 | *.xml text 46 | *.xhtml text 47 | 48 | ## DOCKER 49 | *.dockerignore text 50 | Dockerfile text 51 | 52 | ## DOCUMENTATION 53 | *.markdown text 54 | *.md text 55 | *.mdwn text 56 | *.mdown text 57 | *.mkd text 58 | *.mkdn text 59 | *.mdtxt text 60 | *.mdtext text 61 | *.txt text 62 | AUTHORS text 63 | CHANGELOG text 64 | CHANGES text 65 | CONTRIBUTING text 66 | COPYING text 67 | copyright text 68 | *COPYRIGHT* text 69 | INSTALL text 70 | license text 71 | LICENSE text 72 | NEWS text 73 | readme text 74 | *README* text 75 | TODO text 76 | 77 | ## TEMPLATES 78 | *.dot text 79 | *.ejs text 80 | *.haml text 81 | *.handlebars text 82 | *.hbs text 83 | *.hbt text 84 | *.jade text 85 | *.latte text 86 | *.mustache text 87 | *.njk text 88 | *.phtml text 89 | *.tmpl text 90 | *.tpl text 91 | *.twig text 92 | 93 | ## LINTERS 94 | .csslintrc text 95 | .eslintrc text 96 | .htmlhintrc text 97 | .jscsrc text 98 | .jshintrc text 99 | .jshintignore text 100 | .stylelintrc text 101 | 102 | ## CONFIGS 103 | *.bowerrc text 104 | *.cnf text 105 | *.conf text 106 | *.config text 107 | .browserslistrc text 108 | .editorconfig text 109 | .gitattributes text 110 | .gitconfig text 111 | .htaccess text 112 | *.npmignore text 113 | *.yaml text 114 | *.yml text 115 | browserslist text 116 | Makefile text 117 | makefile text 118 | 119 | ## HEROKU 120 | Procfile text 121 | .slugignore text 122 | 123 | ## GRAPHICS 124 | *.ai binary 125 | *.bmp binary 126 | *.eps binary 127 | *.gif binary 128 | *.ico binary 129 | *.jng binary 130 | *.jp2 binary 131 | *.jpg binary 132 | *.jpeg binary 133 | *.jpx binary 134 | *.jxr binary 135 | *.pdf binary 136 | *.png binary 137 | *.psb binary 138 | *.psd binary 139 | *.svg text 140 | *.svgz binary 141 | *.tif binary 142 | *.tiff binary 143 | *.wbmp binary 144 | *.webp binary 145 | 146 | ## AUDIO 147 | *.kar binary 148 | *.m4a binary 149 | *.mid binary 150 | *.midi binary 151 | *.mp3 binary 152 | *.ogg binary 153 | *.ra binary 154 | 155 | ## VIDEO 156 | *.3gpp binary 157 | *.3gp binary 158 | *.as binary 159 | *.asf binary 160 | *.asx binary 161 | *.fla binary 162 | *.flv binary 163 | *.m4v binary 164 | *.mng binary 165 | *.mov binary 166 | *.mp4 binary 167 | *.mpeg binary 168 | *.mpg binary 169 | *.ogv binary 170 | *.swc binary 171 | *.swf binary 172 | *.webm binary 173 | 174 | ## ARCHIVES 175 | *.7z binary 176 | *.gz binary 177 | *.jar binary 178 | *.rar binary 179 | *.tar binary 180 | *.zip binary 181 | 182 | ## FONTS 183 | *.ttf binary 184 | *.eot binary 185 | *.otf binary 186 | *.woff binary 187 | *.woff2 binary 188 | 189 | ## EXECUTABLES 190 | *.exe binary 191 | *.pyc binary -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/suggestion.yaml: -------------------------------------------------------------------------------- 1 | name: Suggestion 2 | description: Help us improve with suggestions 3 | body: 4 | - type: markdown 5 | attributes: 6 | value: | 7 | Thanks for taking the time to fill out this suggestion form! 8 | - type: input 9 | id: suggestion 10 | attributes: 11 | label: Link to suggestion 12 | description: Please share a link to your suggestion 13 | placeholder: https://... 14 | validations: 15 | required: true 16 | - type: textarea 17 | id: description 18 | attributes: 19 | label: Describe your suggesiton 20 | description: How and why is your suggestion useful to this community? 21 | placeholder: I wish to see tool here becuase it is used for... 22 | validations: 23 | required: true 24 | -------------------------------------------------------------------------------- /.github/workflows/lint.yaml: -------------------------------------------------------------------------------- 1 | name: lint 2 | on: 3 | pull_request: 4 | push: 5 | branches: 6 | - main 7 | 8 | jobs: 9 | awesome-lint: 10 | strategy: 11 | fail-fast: false 12 | matrix: 13 | files: 14 | - "readme.md" 15 | runs-on: ubuntu-latest 16 | steps: 17 | - name: "checkout repo" 18 | uses: actions/checkout@v2 19 | with: 20 | fetch-depth: 0 21 | - name: asdf_install 22 | uses: asdf-vm/actions/install@v1 23 | - name: "linting: ${{ matrix.files }}" 24 | run: npx -y awesome-lint ${{ matrix.files }} 25 | awesome-bot: 26 | strategy: 27 | fail-fast: false 28 | matrix: 29 | files: 30 | - "readme.md" 31 | runs-on: ubuntu-latest 32 | steps: 33 | - name: "checkout repo" 34 | uses: actions/checkout@v2.0.0 35 | with: 36 | fetch-depth: 0 37 | - name: "setup ruby" 38 | uses: ruby/setup-ruby@v1 39 | with: 40 | ruby-version: 3.0.1 41 | bundler-cache: true 42 | - name: "install awesome-bot" 43 | run: gem install awesome_bot 44 | - name: "linting: ${{ matrix.files }}" 45 | run: awesome_bot --allow-redirect --white-list https://github.com/ineffyble/awesome-cohost ${{ matrix.files }} 46 | -------------------------------------------------------------------------------- /.tool-versions: -------------------------------------------------------------------------------- 1 | nodejs 16.5.0 2 | -------------------------------------------------------------------------------- /code_of_conduct.md: -------------------------------------------------------------------------------- 1 | 2 | # Contributor Covenant Code of Conduct 3 | 4 | ## Our Pledge 5 | 6 | We as members, contributors, and leaders pledge to make participation in our 7 | community a harassment-free experience for everyone, regardless of age, body 8 | size, visible or invisible disability, ethnicity, sex characteristics, gender 9 | identity and expression, level of experience, education, socio-economic status, 10 | nationality, personal appearance, race, caste, color, religion, or sexual identity 11 | and orientation. 12 | 13 | We pledge to act and interact in ways that contribute to an open, welcoming, 14 | diverse, inclusive, and healthy community. 15 | 16 | ## Our Standards 17 | 18 | Examples of behavior that contributes to a positive environment for our 19 | community include: 20 | 21 | * Demonstrating empathy and kindness toward other people 22 | * Being respectful of differing opinions, viewpoints, and experiences 23 | * Giving and gracefully accepting constructive feedback 24 | * Accepting responsibility and apologizing to those affected by our mistakes, 25 | and learning from the experience 26 | * Focusing on what is best not just for us as individuals, but for the 27 | overall community 28 | 29 | Examples of unacceptable behavior include: 30 | 31 | * The use of sexualized language or imagery, and sexual attention or 32 | advances of any kind 33 | * Trolling, insulting or derogatory comments, and personal or political attacks 34 | * Public or private harassment 35 | * Publishing others' private information, such as a physical or email 36 | address, without their explicit permission 37 | * Other conduct which could reasonably be considered inappropriate in a 38 | professional setting 39 | 40 | ## Enforcement Responsibilities 41 | 42 | Community leaders are responsible for clarifying and enforcing our standards of 43 | acceptable behavior and will take appropriate and fair corrective action in 44 | response to any behavior that they deem inappropriate, threatening, offensive, 45 | or harmful. 46 | 47 | Community leaders have the right and responsibility to remove, edit, or reject 48 | comments, commits, code, wiki edits, issues, and other contributions that are 49 | not aligned to this Code of Conduct, and will communicate reasons for moderation 50 | decisions when appropriate. 51 | 52 | ## Scope 53 | 54 | This Code of Conduct applies within all community spaces, and also applies when 55 | an individual is officially representing the community in public spaces. 56 | Examples of representing our community include using an official e-mail address, 57 | posting via an official social media account, or acting as an appointed 58 | representative at an online or offline event. 59 | 60 | ## Enforcement 61 | 62 | Instances of abusive, harassing, or otherwise unacceptable behavior may be 63 | reported to the community leaders responsible for enforcement at 64 | [INSERT CONTACT METHOD]. 65 | All complaints will be reviewed and investigated promptly and fairly. 66 | 67 | All community leaders are obligated to respect the privacy and security of the 68 | reporter of any incident. 69 | 70 | ## Enforcement Guidelines 71 | 72 | Community leaders will follow these Community Impact Guidelines in determining 73 | the consequences for any action they deem in violation of this Code of Conduct: 74 | 75 | ### 1. Correction 76 | 77 | **Community Impact**: Use of inappropriate language or other behavior deemed 78 | unprofessional or unwelcome in the community. 79 | 80 | **Consequence**: A private, written warning from community leaders, providing 81 | clarity around the nature of the violation and an explanation of why the 82 | behavior was inappropriate. A public apology may be requested. 83 | 84 | ### 2. Warning 85 | 86 | **Community Impact**: A violation through a single incident or series 87 | of actions. 88 | 89 | **Consequence**: A warning with consequences for continued behavior. No 90 | interaction with the people involved, including unsolicited interaction with 91 | those enforcing the Code of Conduct, for a specified period of time. This 92 | includes avoiding interactions in community spaces as well as external channels 93 | like social media. Violating these terms may lead to a temporary or 94 | permanent ban. 95 | 96 | ### 3. Temporary Ban 97 | 98 | **Community Impact**: A serious violation of community standards, including 99 | sustained inappropriate behavior. 100 | 101 | **Consequence**: A temporary ban from any sort of interaction or public 102 | communication with the community for a specified period of time. No public or 103 | private interaction with the people involved, including unsolicited interaction 104 | with those enforcing the Code of Conduct, is allowed during this period. 105 | Violating these terms may lead to a permanent ban. 106 | 107 | ### 4. Permanent Ban 108 | 109 | **Community Impact**: Demonstrating a pattern of violation of community 110 | standards, including sustained inappropriate behavior, harassment of an 111 | individual, or aggression toward or disparagement of classes of individuals. 112 | 113 | **Consequence**: A permanent ban from any sort of public interaction within 114 | the community. 115 | 116 | ## Attribution 117 | 118 | This Code of Conduct is adapted from the [Contributor Covenant][homepage], 119 | version 2.0, available at 120 | [https://www.contributor-covenant.org/version/2/0/code_of_conduct.html][v2.0]. 121 | 122 | Community Impact Guidelines were inspired by 123 | [Mozilla's code of conduct enforcement ladder][Mozilla CoC]. 124 | 125 | For answers to common questions about this code of conduct, see the FAQ at 126 | [https://www.contributor-covenant.org/faq][FAQ]. Translations are available 127 | at [https://www.contributor-covenant.org/translations][translations]. 128 | 129 | [homepage]: https://www.contributor-covenant.org 130 | [v2.0]: https://www.contributor-covenant.org/version/2/0/code_of_conduct.html 131 | [Mozilla CoC]: https://github.com/mozilla/diversity 132 | [FAQ]: https://www.contributor-covenant.org/faq 133 | [translations]: https://www.contributor-covenant.org/translations 134 | 135 | -------------------------------------------------------------------------------- /contributing.md: -------------------------------------------------------------------------------- 1 | # Contribution Guidelines 2 | 3 | Please note that this project is released with a [Contributor Code of Conduct](code_of_conduct.md). By participating in this project you agree to abide by its terms. 4 | 5 | ## PRs 6 | 7 | ALWAYS create a new branch with your proposed changes. Thank you! 8 | 9 | ## Adding an new Item 10 | 11 | - Try to fit your item into an existing sections. [Open a suggestion](https://github.com/ineffyble/awesome-cohost/issues/new) to start as discussion about any new sections. 12 | - Add a new item to the bottom of the list in a section. 13 | - If a duplicate item exists, discuss why the new item should replace it. 14 | - Check your spelling & grammar. 15 | - The item must follow this format: 16 | ``` 17 | - [item name](https link) - Description beginning with capital, ending in period. 18 | ``` 19 | -------------------------------------------------------------------------------- /eggbug.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | -------------------------------------------------------------------------------- /license: -------------------------------------------------------------------------------- 1 | [![CC0](https://i.creativecommons.org/p/zero/1.0/88x31.png)](https://creativecommons.org/publicdomain/zero/1.0/) 2 | 3 | Statement of Purpose 4 | 5 | The laws of most jurisdictions throughout the world automatically confer exclusive Copyright and Related Rights (defined below) upon the creator and subsequent owner(s) (each and all, an "owner") of an original work of authorship and/or a database (each, a "Work"). 6 | 7 | Certain owners wish to permanently relinquish those rights to a Work for the purpose of contributing to a commons of creative, cultural and scientific works ("Commons") that the public can reliably and without fear of later claims of infringement build upon, modify, incorporate in other works, reuse and redistribute as freely as possible in any form whatsoever and for any purposes, including without limitation commercial purposes. These owners may contribute to the Commons to promote the ideal of a free culture and the further production of creative, cultural and scientific works, or to gain reputation or greater distribution for their Work in part through the use and efforts of others. 8 | 9 | For these and/or other purposes and motivations, and without any expectation of additional consideration or compensation, the person associating CC0 with a Work (the "Affirmer"), to the extent that he or she is an owner of Copyright and Related Rights in the Work, voluntarily elects to apply CC0 to the Work and publicly distribute the Work under its terms, with knowledge of his or her Copyright and Related Rights in the Work and the meaning and intended legal effect of CC0 on those rights. 10 | 11 | 1. Copyright and Related Rights. A Work made available under CC0 may be protected by copyright and related or neighboring rights ("Copyright and Related Rights"). Copyright and Related Rights include, but are not limited to, the following: 12 | 13 | the right to reproduce, adapt, distribute, perform, display, communicate, and translate a Work; 14 | moral rights retained by the original author(s) and/or performer(s); 15 | publicity and privacy rights pertaining to a person's image or likeness depicted in a Work; 16 | rights protecting against unfair competition in regards to a Work, subject to the limitations in paragraph 4(a), below; 17 | rights protecting the extraction, dissemination, use and reuse of data in a Work; 18 | database rights (such as those arising under Directive 96/9/EC of the European Parliament and of the Council of 11 March 1996 on the legal protection of databases, and under any national implementation thereof, including any amended or successor version of such directive); and 19 | other similar, equivalent or corresponding rights throughout the world based on applicable law or treaty, and any national implementations thereof. 20 | 21 | 2. Waiver. To the greatest extent permitted by, but not in contravention of, applicable law, Affirmer hereby overtly, fully, permanently, irrevocably and unconditionally waives, abandons, and surrenders all of Affirmer's Copyright and Related Rights and associated claims and causes of action, whether now known or unknown (including existing as well as future claims and causes of action), in the Work (i) in all territories worldwide, (ii) for the maximum duration provided by applicable law or treaty (including future time extensions), (iii) in any current or future medium and for any number of copies, and (iv) for any purpose whatsoever, including without limitation commercial, advertising or promotional purposes (the "Waiver"). Affirmer makes the Waiver for the benefit of each member of the public at large and to the detriment of Affirmer's heirs and successors, fully intending that such Waiver shall not be subject to revocation, rescission, cancellation, termination, or any other legal or equitable action to disrupt the quiet enjoyment of the Work by the public as contemplated by Affirmer's express Statement of Purpose. 22 | 23 | 3. Public License Fallback. Should any part of the Waiver for any reason be judged legally invalid or ineffective under applicable law, then the Waiver shall be preserved to the maximum extent permitted taking into account Affirmer's express Statement of Purpose. In addition, to the extent the Waiver is so judged Affirmer hereby grants to each affected person a royalty-free, non transferable, non sublicensable, non exclusive, irrevocable and unconditional license to exercise Affirmer's Copyright and Related Rights in the Work (i) in all territories worldwide, (ii) for the maximum duration provided by applicable law or treaty (including future time extensions), (iii) in any current or future medium and for any number of copies, and (iv) for any purpose whatsoever, including without limitation commercial, advertising or promotional purposes (the "License"). The License shall be deemed effective as of the date CC0 was applied by Affirmer to the Work. Should any part of the License for any reason be judged legally invalid or ineffective under applicable law, such partial invalidity or ineffectiveness shall not invalidate the remainder of the License, and in such case Affirmer hereby affirms that he or she will not (i) exercise any of his or her remaining Copyright and Related Rights in the Work or (ii) assert any associated claims and causes of action with respect to the Work, in either case contrary to Affirmer's express Statement of Purpose. 24 | 25 | 4. Limitations and Disclaimers. 26 | 27 | No trademark or patent rights held by Affirmer are waived, abandoned, surrendered, licensed or otherwise affected by this document. 28 | Affirmer offers the Work as-is and makes no representations or warranties of any kind concerning the Work, express, implied, statutory or otherwise, including without limitation warranties of title, merchantability, fitness for a particular purpose, non infringement, or the absence of latent or other defects, accuracy, or the present or absence of errors, whether or not discoverable, all to the greatest extent permissible under applicable law. 29 | Affirmer disclaims responsibility for clearing rights of other persons that may apply to the Work or any use thereof, including without limitation any person's Copyright and Related Rights in the Work. Further, Affirmer disclaims responsibility for obtaining any necessary consents, permissions or other rights required for any use of the Work. 30 | Affirmer understands and acknowledges that Creative Commons is not a party to this document and has no duty or obligation with respect to this CC0 or use of the Work. -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- 1 | 2 |
3 | 4 | 5 | 6 | # Awesome Cohost [![Awesome](https://awesome.re/badge.svg)](https://awesome.re) [![lint](https://github.com/ineffyble/awesome-cohost/actions/workflows/lint.yaml/badge.svg)](https://github.com/ineffyble/awesome-cohost/actions/workflows/lint.yaml) 7 | 8 | 9 | 10 | An awesome list of things related to cohost. 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | [cohost](https://cohost.org) is a new social media platform built from the ground up by a small team of developers and designers who like sharing things on the internet. 19 | 20 |
21 | 22 | 23 | 24 | ## Contents 25 | 26 | - [Bots](#bots) 27 | - [Client customisation](#client-customisation) 28 | - [Post Generators](#post-generators) 29 | - [API Libraries](#api-libraries) 30 | - [Automation & Tools](#automation--tools) 31 | - [Tutorials & Guides](#tutorials--guides) 32 | - [CSS Crimes & Similar](#css-crimes--similar) 33 | - [Follow](#follow) 34 | 35 | 36 | 37 | ## Bots 38 | - [@coloroftheday](https://cohost.org/coloroftheday) - Bot that posts a new colour every day. 39 | - [@verge-ebooks](https://cohost.org/verge-ebooks) - Tech news from a parallel universe. 40 | - [@gamemagprintads](https://cohost.org/gamemagprintads) - Game history, one ad at a time. 41 | - [@randochrontendo](https://cohost.org/randochrontendo) - A random screenshot from the chronogaming project Chrontendo every 30 minutes. 42 | 43 | ## Client customisation 44 | - [Skeuohost](https://userstyles.world/style/5982/skeuohost) - Userstyle for Cohost. 45 | - [better comment userstyle](https://cohost.org/lexi/post/541722-babe-wake-up-new-use) - Better comment indent. 46 | - [Notification Names userscript](https://cohost.org/lexi/post/514085-hey-so-if-you-rememb) - Add usernames to notifications. 47 | - [Mutant Standard emoji](https://mutant.us.to/) - Use the Mutant Standard emoji set on Cohost. 48 | - [view source userscript](https://cohost.org/amgg/post/72548-view-source-userscri) - A userscript that adds a "view source" button to posts. 49 | - [Notification Popover userscript](https://cohost.org/blep/post/51879-waht-if-notification) - Adds a lil notification popover. 50 | - [Timeline Deduplicator](https://github.com/nex3/cohost-dedup/blob/main/cohost-dedup.user.js) - Deduplicate posts you've already seen on Cohost. 51 | - [Cohost97 userstyle](https://cohost.org/hellgnoll/post/52606-cohost97-beta-v0-9) - Styles cohost like the classic Microsoft operating system Windows 9(5?)(8?). 52 | - [Compact comments userstyle](https://userstyles.world/style/7582/compact-comments) - Use small avatars and more compact spacing for comments in wide view. 53 | 54 | ## Post Generators 55 | 56 | - [Backloggd formatter](https://nex3.github.io/cohost-backloggd/) - Create pretty cohost posts of [backloggd](https://www.backloggd.com/) reviews. 57 | - [Cohoard](https://a2aaron.github.io/Cohoard/) - Format chatlogs for Cohost. 58 | - [prechoster](https://cloudwithlightning.net/random/chostin/prechoster/) - A graph-based HTML generator to make fancy chosting easier. 59 | - [markdown PLUS](https://oat.zone/markdown-plus/) - An "alternative" to markdown for cohost which lets you use fucked-up text in your everyday posts. 60 | - [choll](https://choll.clown.dev/) - Cholls are polls for your chosts. 61 | - [bugpoll](https://a.ktrv.dev/) - Polls directly on Cohost. 62 | - [Letterboxd generator](https://nex3.github.io/cohost-letterboxd/) - Create pretty cohost posts of [Letterboxd](https://letterboxd.com/) reviews. 63 | - [Image grid generator](https://nex3.github.io/cohost-image-grid/) - Create image grids for your cohost posts. 64 | - [Syntax highlighter](https://nex3.github.io/cohost-highlight/) - Create posts with source code syntax highlighting. 65 | - [Codehost](https://codehost.wavebeem.com/) - Generate syntax highlighted code blocks for cohost. 66 | - [Inline details generator](https://yal.cc/tools/cohost/inline-details-generator/) - Generate inline disclosure elements that can be clicked to reveal extra content. 67 | 68 | ## API Libraries 69 | - [eggbug-rs](https://github.com/iliana/eggbug-rs) - A bot library for Cohost, providing an interface to create, read, edit, and delete posts. 70 | - [cohost.js](https://github.com/mogery/cohost.js) - Unofficial API for Cohost. 71 | - [cohost.py](https://github.com/valknight/cohost.py) - A python library for Cohost. 72 | 73 | ## Automation & Tools 74 | - [Twitter Crossposter](https://cohost.org/lexi/post/157283-okay-so-if-you-want) - Tweet your new Cohost posts. 75 | - [screencap bot](https://git.xeno.science/xenofem/screencap-bot/) - A configurable bot for posting randomly-chosen screenshots and/or audio clips from a collection of TV series/movies/podcasts/etc, as used by [@gundam-screencaps](https://cohost.org/gundam-screencaps) and [@fatt-excerpts](https://cohost.org/fatt-excerpts). 76 | 77 | ## Tutorials & Guides 78 | - [Escape characters](https://cohost.org/lexi/post/386344-cohost-tip-you-can) - How to post angle brackets and other special characters with escaping. 79 | - [Fixed backgrounds](https://cohost.org/lexi/post/368067-you-guys-seem-to-rea) - How to use fixed backgrounds for CSS Crimes. 80 | - [CSS AJAX](https://cohost.org/lexi/post/255262-yes-css-can-do-ajax) - Yes, CSS can do AJAX. Here's how. 81 | - [Custom 'Read More'](https://cohost.org/lexi/post/68227-i-have-the-power-of) - Create custom 'Read More' tags with CSS. 82 | - [Code syntax highlighting](https://cohost.org/lexi/post/54367-cohost-does-not-have) - Simple code syntax highlighting. 83 | - [css for css baby 1: stupid text tricks](https://cohost.org/lexyeevee/post/495441-css-for-css-baby-1) - So You Want To Know CSS. 84 | - [css for css baby 2: boxes and blocks and stuff](https://cohost.org/lexyeevee/post/507300-css-for-css-baby-2) - Part two of the series. 85 | 86 | ## CSS Crimes & Similar 87 | - [rope machine](https://cohost.org/blackle/post/42994-div-style-pointer) - Interactable rope machine. 88 | - [puzzle box](https://cohost.org/blackle/post/260204-div-style-width-60) - Interactable puzzle box. 89 | - [GIF Plays GBC](https://cohost.org/hell-labs/post/69069-gif-plays-gbc) - Shared Game Boy Color gameplay in a post. 90 | 91 | 92 | 93 | ## Follow 94 | 95 | 96 | 97 | Who else should we be following!? 98 | 99 | ## Contributing 100 | 101 | [Contributions of any kind welcome, just follow the guidelines](contributing.md)! 102 | 103 | ### Contributors 104 | 105 | [Thanks goes to these contributors](https://github.com/ineffyble/awesome-cohost/graphs/contributors)! 106 | --------------------------------------------------------------------------------