• Activity
  • Votes
  • Comments
  • New
  • All activity
    1. What have you been watching / reading this week? (Anime/Manga)

      What have you been watching and reading this week? You don't need to give us a whole essay if you don't want to, but please write something! Feel free to talk about something you saw that was...

      What have you been watching and reading this week? You don't need to give us a whole essay if you don't want to, but please write something! Feel free to talk about something you saw that was cool, something that was bad, ask for recommendations, or anything else you can think of.

      If you want to, feel free to find the thing you're talking about and link to its pages on Anilist, MAL, or any other database you use!

      10 votes
    2. What programming/technical projects have you been working on?

      This is a recurring post to discuss programming or other technical projects that we've been working on. Tell us about one of your recent projects, either at work or personal projects. What's...

      This is a recurring post to discuss programming or other technical projects that we've been working on. Tell us about one of your recent projects, either at work or personal projects. What's interesting about it? Are you having trouble with anything?

      14 votes
    3. Tilweaks: A user style I made to "clean up" Tildes' interface

      This was originally made just for personal use, but I decided to clean it up and share it. Should support all built-in themes (Themes other than Dracula were afterthoughts and might not be as...

      This was originally made just for personal use, but I decided to clean it up and share it.

      • Should support all built-in themes (Themes other than Dracula were afterthoughts and might not be as polished. Especially light themes)
      • All changes are toggle-able

      Changes

      • Configurable font size
      • Remove sidebar background
        • Make the sidebar primary button clear (border only)
      • Add a border to the "main" element
      • Add extra spacing to various elements
        • Remove the alternating background from thread colors
      • Remove comment borders
        • Add depth indicators (dotted left border for children only)
        • Add comment backgrounds (to separate comments without borders)
      • Hide votes (disabled by default)

      Installation

      Configuration under Stylus

      1. Open the extension popup in when in tildes.net
      2. Click the cog next to Tilweaks
      3. Edit to your liking
      20 votes
    4. Who are your favourite game developers?

      So recently I’ve started getting into the back end of games and looking at the people behind the scenes and it’s got me to research different developers and their history and the games they have...

      So recently I’ve started getting into the back end of games and looking at the people behind the scenes and it’s got me to research different developers and their history and the games they have produced, so I’m wondering what are your favourite game developers and why?

      18 votes
    5. do quotes work as described in the docs?

      You can quote someone with a > at the start of the line. Subsequent quoted paragraphs will be merged into a single blockquote, even if there is a blank line between them. To prevent this and have...

      You can quote someone with a > at the start of the line.
      Subsequent quoted paragraphs will be merged into a single blockquote, even if there is a blank line between them. To prevent this and have each quote in its own separate block, include at least two blank lines between quoted paragraphs, or add something else between them such as text or a horizontal rule.

      5 votes
    6. Pew Research Center's political typology series

      1999 edition 2005 edition 2011 edition 2014 edition 2017 edition (Interactive version) It's really interesting and pretty useful to know how the 2 US parties are split and which voting blocks have...

      1999 edition

      2005 edition

      2011 edition

      2014 edition

      2017 edition (Interactive version)

      It's really interesting and pretty useful to know how the 2 US parties are split and which voting blocks have dissappeared and emerged over time and some blocks don't really fit all too well in the 2 parties (most notably the religious left). This also serves as a kind of model for what a multiparty US might look like.

      6 votes
    7. Fortnightly Programming Q&A Thread

      General Programming Q&A thread! Ask any questions about programming, answer the questions of other users, or post suggestions for future threads. Don't forget to format your code using the triple...

      General Programming Q&A thread! Ask any questions about programming, answer the questions of other users, or post suggestions for future threads.

      Don't forget to format your code using the triple backticks or tildes:

      Here is my schema:
      
      ```sql
      CREATE TABLE article_to_warehouse (
        article_id   INTEGER
      , warehouse_id INTEGER
      )
      ;
      ```
      
      How do I add a `UNIQUE` constraint?
      
      9 votes