• Activity
  • Votes
  • Comments
  • New
  • All activity
    1. What's your favorite theme on Tildes?

      I adore the available themes and it makes browsing quite pleasing to do. Currently I'm in a fight between Solarized Dark and Dracula. I'm curious though if there's a clearly preferred theme here...

      I adore the available themes and it makes browsing quite pleasing to do. Currently I'm in a fight between Solarized Dark and Dracula. I'm curious though if there's a clearly preferred theme here or if people are using all kinds of stuff.

      Some previous threads on themes (some are about themes in general and aren't Tildes specific):

      28 votes
    2. Is anyone else anxious about using the bookmark feature on Tildes?

      Maybe it's just because I've lost my bookmarks so many times, one way or another. I now avoid using website-specific bookmarks, you never know when the website could shut down or you could lose...

      Maybe it's just because I've lost my bookmarks so many times, one way or another. I now avoid using website-specific bookmarks, you never know when the website could shut down or you could lose the bookmarks some other way. not saying Tildes will shut down; I'm sure it won't be any time soon, but I still can't get myself to use it even though it's so convenient ☹️ does anyone else feel the same way ?

      22 votes
    3. How to search and switch between Tildes groups in Firefox using bookmarks

      I just wanted to share a handy feature in Firefox that can be used to create shorthanded keywords. For instance, you could make it so that typing "t ~books" brings you to...

      I just wanted to share a handy feature in Firefox that can be used to create shorthanded keywords. For instance, you could make it so that typing "t ~books" brings you to "https://tildes.net/~books". Or "ts banana" that brings you to Tildes search engine, searching for "banana".
      I've been using a similar trick on another browser I use for years (Qutebrowser), but lately I've been using Firefox more and a post on the Ferdiverse reminded me that I could do this in Firefox as well.

      Instructions

      • In FIrefox, open the Bookmark Manager. (Keyboard shortcut: Ctrl+Shift+O , alt: Burger-menu in the upper right > Bookmarks > Manage Bookmarks)
      • Select a folder where you want to save your bookmark
      • Go to "Organise > Add Bookmark"
      • Enter whatever name you like.
      • In the URL textbox, enter the static part of the url you want to use. Replace the part that can change (like the page name or the search term with this: "%s"
      • Optionally, add tags seperated by a comma in the tags textbox.
      • At last, choose a keyword. This is the word that replaces the static part of the URL when you use the bookmark. For example, I use "t" for the community-switching and "ts" for searching.
      • Save you bookmark and try it out. When you now type just the letter "t" in your URL-bar and press enter, it should bring you to the home page. When you type "t ~books" , it should bring you to the books community page.

      You can use this feature with any website, so I encourage you to play around with it :)

      14 votes
    4. Question on sorting for new comments on old posts

      Apologies if this is the wrong place to ask this question, but is there a way to search which would list comments made on any topic in chronological order regardless of how old the original post...

      Apologies if this is the wrong place to ask this question, but is there a way to search which would list comments made on any topic in chronological order regardless of how old the original post was made? Meaning, even if a post was one of the first on Tilde, if someone commented within it in the last few minutes, it would be displayed before a newly created post that hadn't had a comment in several hours.

      I tried all of the sorting options and didn't seem to find one that performed this function. Any assistance would be appreciated.

      7 votes
    5. How to contribute a theme to Tildes

      Want to contribute a theme to Tildes but don't know where to start? Let's fix that. Before we start, get yourself a development environment setup and do a quick read through of the general...

      Want to contribute a theme to Tildes but don't know where to start? Let's fix that.

      Before we start, get yourself a development environment setup and do a quick read through of the general development info to get acquainted with how Tildes works (or at least the HTML and CSS section).

      For this walkthrough I'll be using tildexample as the example name for the theme, but if you decide to contribute a theme for real, make sure it uses the proper name of your theme. :P

      Step 1: Sassy _Sass

      Open the Tildes codebase using your text editor of choice and navigate to the themes directory at tildes/scss/themes. Then create a copy of _default.scss at _tildexample.scss. The default White theme is the canonical source of all colors used, so it's the best place to start from.

      Below is an annotated example of all the things you need to change in your new theme file.

      Annotated example theme
      // Add a small description of the theme here with maybe a link to its website.
      // Check the other themes for examples. https://example.org/tildexample
      
      // Change the theme variable to $theme-tildexample
      // ↓ ↓ ↓ ↓ ↓ ↓ 
      $default-theme: (
        // A whole bunch of color definitions, edit as your theme demands.
        // ...
      );
      
      // Append ".theme-tildexample" to the body selector.
      // ↓ ↙
      body {
        // Don't forget to update the theme variable here too.
        //                  ↓ ↓ ↓ ↓ ↓ ↓ ↓
        @include use-theme($default-theme);
      }
      
      @include theme-preview-block(
        // Change the text to tildexample.
        // ↓ ↓
        "white",
        // And again update the theme variable here.
        //       ↓ ↓ ↓ ↓ ↓ ↓ ↓
        map-get($default-theme, "foreground-primary"),
        map-get($default-theme, "background-primary")
        //       ↑ ↑ ↑ ↑ ↑ ↑ ↑
      );
      

      Once that's done, head to tildes/scss/styles.scss and at the bottom of the file add your theme import:

      @import "themes/tildexample";
      

      Step 2: Hardcoding a TheMe coLor

      Boy that title is a stretch just to say, we need to add 2 lines to the HTML base template.

      Inside the tildes/tildes/templates/base.jinja2 file is a section of if/elif/elif/elif/... statements to set the theme color meta element. Add yourself an elif block and add your theme color.

      For this you probably want to use the background-primary color you used in your theme definition. I've used #ff00dd below because it spells food. I'm such a jokester.

      {% elif request.current_theme == "tildexample" %}
      <meta name="theme-color" content="#ff00dd">
      {% endif %}
      

      Step 3: Snakey Wakey

      Finally the last step is to grab your trusty pungi and give it a blow.

      Head to tildes/tildes/views/settings.py and find the THEME_OPTIONS constant. Here you want to add the theme class you used in body.theme-<this part> and a proper name that will be shown in the theme dropdown.

      THEME_OPTIONS = {
          "white": "White",
          # Many other themes...
          "tildexample": "Tildes Theme Example",
      }
      

      Once that's all been done, check it out in your development site and see if it works.

      Now git!

      Commit. Push. Merge request. Have some water. Deimos reviews, merges and deploys your theme. Job's done.

      26 votes
    6. Where to ask Tildes dev questions?

      If I have a quick Tildes dev question, where should I ask it? For an example that is not actually just an example, but the actual question which drove me to post, where can I found logging output?...

      If I have a quick Tildes dev question, where should I ask it?

      For an example that is not actually just an example, but the actual question which drove me to post, where can I found logging output? Specifically, if I want to print out something every time a request comes in, how should I do so?
      18 votes
    7. Tildes CSS and Android accessibility

      Hi all. On my Pixel phone I have the accessibility option for font size and display size turned up a notch or two but noticed that not all of the text in Tildes adheres to this. Some front page...

      Hi all. On my Pixel phone I have the accessibility option for font size and display size turned up a notch or two but noticed that not all of the text in Tildes adheres to this. Some front page topic text is bigger, some of them remain small.

      Is this something that can be quickly tested and fixed if it's a bug? It might drive poor sighted people away from the site.

      I'm assuming it's not me, as my Pixel 7 is quite new .... but I am on the Android beta program.

      Can anyone else try and see if it's a localised issue or more global?

      I can post screen shots of needed but not sure what image sharing sites you prefer to use in here!

      Edit:

      Fixed with a chrome flag....

      the text-scaling is being replaced by the "Accessibility Page Zoom" feature (currently hidden behind the feature flag in chrome://flags)

      23 votes
    8. Tildes Userscript: Tildezy

      Updated: June 29th 2023 Hello folks, Like many of the other people that have been around lately, I'm new to Tildes, I've been browsing it without an account since last Monday or so while waiting...

      Updated: June 29th 2023

      Hello folks,

      Like many of the other people that have been around lately, I'm new to Tildes, I've been browsing it without an account since last Monday or so while waiting for an email response (thanks @Deimos), and in that time I've been working on a little tool to add some QOL features I thought would make my experiences with the site feel better.

      I didn't plan on sharing it initially, because I didn't think I'd be able to get the javascript into a usable state, and I'm not fond of sharing my code in general, as I always get a big wave of impostor syndrome whenever I do, "What if they look at my messy code and see how silly I do some things", that sort of thing. But with Tildes I want to try to correct some of my internet behaviours, for years I've generally stayed as a lurker, never commenting or sharing content of my own, so, hello there, hopefully, I stick to my guns and you see more of me.

      Onto the script itself, currently, I've built five main features into it all of them being rather minor on their own, I did do bug testing on everything and couldn't find anything else, but if you notice anything please feel free to report it to me or post an issue on the repo. It's easy to miss bugs when you've only got one set of eyes.

      Tildezy Github

      The GitHub contains installation instructions if you've never used a userscript before, and contains some images showing off each feature described below.

      Comment Collapser The comment collapser was built because, with my shakey hands, I had a few times when I would click someone's name instead of the [-] beside it. With this feature *Triple* clicking anywhere on a comment, be it text or header, will collapse it as if you used the [-] button. It's set to 3 clicks as sometimes I double-click to begin copying a line and didn't want the conflict, but it can be changed to any amount of clicks on line 132

      https://github.com/TeJayH/Tildezy/blob/main/Tildezy.user.js#L132

      Group Stars/Favourites Allows you to click a ☆ beside each ~group on the Tildes homepage to *favourite* it, moving it to the top of the list. Supports as many or as few favourites as you'd wish.
      Scroll to Top Button Adds a button pinned in the top right of every Tildes thread that sends you back to the top of the page. No more scrolling or reaching for the home key
      Open Comments in New Tab Replaces the default function of a posts "x comments" to open the page in a new tab instead of the current tab
      User Colors This one is the thing that I made the entire script for, an entirely useless feature but one I love for silly reasons. Replaces the stock username color with a randomized one based on a hash made from the user's username. So everyone gets assigned their own color which will always be their color anywhere you see them. This one helps multi-person conversations flow better in my head
      New Comment Traveller Gives you navigation buttons either beside the Collapse Replies/Expand all buttons when scrolled up, or pinned in the top right when scrolled past those buttons. Navigation buttons jump quickly between each new comment in a thread.
      Markdown Buttons Adds a selection of various buttons under every comment box that automatically insert markdown for you. No more forgetting which bracket style goes first for a clickable URL.
      Settings Not really a *feature* on its own, but it exists. Adds a "Tildezy Settings" beside the Log In/Username button in the top right of the header, which opens a settings window to enable/disable any and all features of the script. Features can also be disabled by modifying lines 26-41 in the script, allowing you to hard toggle everything *including the settings itself* off should you wish.

      https://github.com/TeJayH/Tildezy/blob/main/Tildezy.user.js#L26-L41

      Hopefully, someone gets some use out of this with me, I look forward to chatting with you all.

      EDIT
      Refactored the code and added a new comment traveller feature based on some of the comments below.

      EDIT 2
      Up to 1.3.0, we've got markdown buttons now, see comment explaining the change or check out the github readme

      120 votes
    9. Invite system

      Hey everyone! Can I get a rundown on how to earn an invite link? I've got a friend who is interested in migrating off of Reddit and I'd like to be the one to invite him :)

      12 votes
    10. Should bylines be more prominent in the topic posts?

      I've noticed we've gotten in the habit of using the author.[name] tagging convention on articles and blogs and I think this is a great idea. But to me it just seems more important than having to...

      I've noticed we've gotten in the habit of using the author.[name] tagging convention on articles and blogs and I think this is a great idea. But to me it just seems more important than having to see it as just a tag amidst all the other tags. Right now we put the site name and favicon in a prominent spot whenever we post a link, and I get that this is much easier to extract reliably from just scraping the page than the bylines tend to be. But I wonder if any author.[name] tag could get promoted to a special spot in the "Article: X words" element?

      Of course this does leave the question of what to do about multiple authors, but I think the usual convention in academia is to list the first author who appears on the list as the primary author.

      I assume this has been discussed before, but when I tried searching for it the abundance of topics with "author" tags made it so I couldn't find anything. ¯\_(ツ)_/¯

      10 votes
    11. How would you feel about a PC building/tech deals group?

      Yeah that's the question. I was thinking of the possibility of posting deals here. But it might just eat up the other tech content here. That's not my goal, but I'd like to start a PC...

      Yeah that's the question. I was thinking of the possibility of posting deals here. But it might just eat up the other tech content here. That's not my goal, but I'd like to start a PC building\support\tech deals tilde.

      22 votes
    12. How does the "collapse old comments when I return to a topic" feature work?

      I have the "collapse old comments when I return to a topic" setting turned on, but I can't quite figure out how it works. For example, when open a new topic for the first time and scroll through...

      I have the "collapse old comments when I return to a topic" setting turned on, but I can't quite figure out how it works. For example, when open a new topic for the first time and scroll through the comments, the next time I open the topic, they're all still open.

      Does anyone have more details about how this feature works or how I should be using it?

      Thank you!

      19 votes
    13. Self-hosting Tildes?

      Any how to that explains how to selfhost Tildes? I checked gitlab page, but it doesn't explain how? I would love to start a local community in my native language based on Tildes.

      26 votes
    14. Tildes post please ignore (no seriously, use the ignore feature!)

      A lesser known feature of Tildes that is VERY useful: You can ignore any topic on Tildes! There are two ways to do it: From the main page, click Actions ▼ then Ignore this post From the topic...

      A lesser known feature of Tildes that is VERY useful:

      You can ignore any topic on Tildes! There are two ways to do it:

      • From the main page, click Actions ▼ then Ignore this post

      • From the topic itself, click Ignore

      The topic will leave your feed, never to be seen again (unless you want to or made a mistake, in which case you can see it under Your ignored topics on your user page and remove it from your ignore list).

      Use this to cut down on clutter from your feeds by eliminating high-activity topics you are not interested in.

      It will also mute notifications from that topic as well, so it’s a good way of disengaging from a conversation if you wish.

      I saw a few longtime users in other threads who were unaware of this feature until today, so I figured I’d make the PSA.

      Go ahead everyone, try it on this post!

      Ignore it, PLEASE!

      86 votes
    15. Lazy userscript

      Just a hack job, but I'd seen some comment about it being inconvenient to ignore posts so I made a quick userscript (tested with Tampermonkey on Firefox) that adds hotkeys for...

      Just a hack job, but I'd seen some comment about it being inconvenient to ignore posts so I made a quick userscript (tested with Tampermonkey on Firefox) that adds hotkeys for bookmarking/ignoring/voting on a post. It can also navigate to the link or comments or prev/next pages (/). Only implemented for posts 1-9 at the moment.

      Ex:

      i+2 ignores and hides the 2nd post (or restores, if ignored)

      ? shows a summary of hotkeys

      // ==UserScript==
      // @name         Tildes
      // @namespace    http://tampermonkey.net/
      // @version      0.1
      // @description  Quickie convenience hotkeys for tildes.net
      // @author       TT
      // @match        *://tildes.net/*
      // @icon         https://www.google.com/s2/favicons?sz=64&domain=tildes.net
      // @grant        none
      // @require      https://unpkg.com/hotkeys-js/dist/hotkeys.min.js
      // ==/UserScript==
      (function () {
          "use strict";
          let Action;
          (function (Action) {
              Action[Action["Invalid"] = 0] = "Invalid";
              Action[Action["Bookmark"] = 1] = "Bookmark";
              Action[Action["Comments"] = 2] = "Comments";
              Action[Action["Ignore"] = 3] = "Ignore";
              Action[Action["Open"] = 4] = "Open";
              Action[Action["Vote"] = 5] = "Vote";
          })(Action || (Action = {}));
          const regex = /tildes\.net(\/~(?<group>\w+))?/gi;
          let match = regex.exec(document.location);
          //In a group if I wanted to support hotkeys there?
          if (match.groups.group) {
              //alert(match.groups.group);
          }
          else {
              addArticleNumbers();
              addMainHotkeys();
          }
          //Route
          function routeAction(action, event, handler) {
              event.preventDefault();
              //Grab index.  Zero-index?
              let indexText = handler.key.substring(2);
              let index = parseInt(indexText) - 1;
              if (isNaN(index))
                  return;
              actOnArticle(action, index);
          }
          function actOnArticle(action, index) {
              //Get article for index
              let article = document.querySelector(".topic-listing").children[index].children[0];
              //Do the thing
              switch (action) {
                  case Action.Bookmark:
                      if (article.style.borderStyle === 'solid')
                          article.style.borderStyle = 'none';
                      else
                          article.style.borderStyle = 'solid';
                      article.querySelector('button[data-ic-put-to$="bookmark"]').click();
                      break;
                  case Action.Comments:
                      article.querySelector(".topic-info-comments a").click();
                      break;
                  case Action.Ignore:
                      //Hide vs blank?
                      if (article.style.visibility === "hidden")
                          article.style.visibility = "visible";
                      else
                          article.style.visibility = "hidden";
                      // article.style.display = 'none';
                      article.querySelector('button[data-ic-put-to$="ignore"]').click();
                      break;
                  case Action.Open:
                      article.querySelector(".topic-title a").click();
                      break;
                  case Action.Vote:
                      article.querySelector(".topic-voting").click();
                      break;
              }
          }
          function addArticleNumbers() {
              let titles = Array.from(document.querySelectorAll(".topic-title a"));
              for (let i = 1; i <= titles.length; i++) {
                  let title = titles[i - 1];
                  title.text = i + " - " + title.text;
              }
          }
          function addMainHotkeys() {
              //Set up handlers
              const handleBookmark = (event, handler) => routeAction(Action.Bookmark, event, handler);
              const handleComments = (event, handler) => routeAction(Action.Comments, event, handler);
              const handleIgnore = (event, handler) => routeAction(Action.Ignore, event, handler);
              const handleOpen = (event, handler) => routeAction(Action.Open, event, handler);
              const handleVote = (event, handler) => routeAction(Action.Vote, event, handler);
              hotkeys("shift+/", (e, h) => alert(getHelpText()));
              //Page nav
              hotkeys("left", (e, h) => Array.from(document.querySelectorAll(".pagination a")).find((e) => e.textContent == "Prev").click());
              hotkeys("right", (e, h) => Array.from(document.querySelectorAll(".pagination a")).find((e) => e.textContent == "Next").click());
              for (let i = 1; i <= 9; i++) {
                  hotkeys("b+" + i, handleBookmark);
                  hotkeys("c+" + i, handleComments);
                  hotkeys("i+" + i, handleIgnore);
                  hotkeys("o+" + i, handleOpen);
                  hotkeys("v+" + i, handleVote);
              }
          }
          function getHelpText() {
              return `
          ←/→ = navigation
          b = Bookmark, i = Ignore, v = Vote,
          c = Open comments, o = Open link,
      
          Action+[1-9] calls that action on the corresponding article`;
          }
      })();
      
      13 votes
    16. Under what group would, for example, cars or motorcycles go?

      For many they are considered ~hobbies so ~hobbies.cars and ~hobbies.motorcycles would be a logical place. I don't know if ~transport would be a suitable main category for this since then trucks,...

      For many they are considered ~hobbies so ~hobbies.cars and ~hobbies.motorcycles would be a logical place. I don't know if ~transport would be a suitable main category for this since then trucks, tractors, trains and boats could also go there without bloating hobbies' sub-groups too much.

      I'd like to hear your input on this, cheers.

      23 votes
    17. Do you think there should be more customization of user profiles on Tildes? If so, what should be added?

      When talking about adding new features to tildes, many people talk about adding more ways to customize your profile, since right now we only have the username and the user bio. The most common way...

      When talking about adding new features to tildes, many people talk about adding more ways to customize your profile, since right now we only have the username and the user bio. The most common way other sites do this is by having profile pictures, but considering tildes is text based that wouldn't work out well.
      Another way of doing this would be signatures. Not only would that distinguish tildes from reddit and HN, but it would be text based and look ok on the tildes layout. But what do you guys think? Would it be neccessary?

      Edit: u/TooFewColours said this and i think it seems good. I've also heard about allowing your username to be a certain font:

      I'd be opposed to profile pictures, but maybe simply being able to choose a single colour that decorates your profile page in a simple way would be a cute addition. Given the colours in the logo, I think it would be on-brand.

      32 votes
    18. Prevalence of AI generated text in Tildes

      I've recently noticed that some particular users, who post/comment quite often, frequently contribute with high quality content across an impressive spectrum of themes. These posts/comments...

      I've recently noticed that some particular users, who post/comment quite often, frequently contribute with high quality content across an impressive spectrum of themes. These posts/comments usually go into great detail, an approach suitable of a "semi-expert", that honestly baffles me.

      This lead me to think that Tildes users might be using AI language models to aid in the writing of their posts/comments. This possibility is quite disheartening since I found Tildes to be an extraordinarily engaging community, with a distinct human element that I haven't seen in other bigger forums. The possibility of a significant portion of Tildes content being generated by AI makes this sentiment a mere illusion.

      So here are my questions:

      1. Is there any reasonable way of determining which posts were written with the aid of AI?
      2. Is the Tildes community okay with the content being generated partly, or entirely, by AI?

      Please forgive me if I'm being a cynic, I've spent too much time in forums with significantly lower quality content than Tildes.


      Edit 1: Just wanted to cite this paper to somehow justify my uneasiness when it comes to writing texts with AI in command. As I've commented below, LLMs might get in the way of learning the person's true idea/opinion.


      Edit 2: As I've said in the comments below, I had no intention of accusing any particular user with this post. Clearly, I've failed to convey my intent so I'll try to clarify my original idea a bit more:

      Because I'm new to Tildes and haven't got any other forum experience besides Reddit, I was amazed with how much and how fast some users post extremely high quality content, since this was certainly not the norm in Reddit. As with many other online platforms, spammers armed with AI can be a difficult problem to deal with, so I've made this post with the intent of starting a discussion about this matter and to understand the Tildes community stance. My relatively negative view of the use of AI is due in part to my experience with such spammers in the past. Forgive me if I've assumed the worst...

      From the little time I've spent in Tildes, I'm quite sure the community grew to know each other and I'm hopeful that my post will not cause undue witch hunts. And I've also learned that because people got to know each user's stylistic voice, it's fairly easy to spot a possible AI spammer.

      Thank you for the insightful discussion so far !

      62 votes
    19. Username similarity?

      I tried to register here the other day with my preferred username, which was taken, so I replaced an S with a 5 as I've done in the past. Now I realize that might have been a bit deceptive -...

      I tried to register here the other day with my preferred username, which was taken, so I replaced an S with a 5 as I've done in the past. Now I realize that might have been a bit deceptive - someone reading my comment might think it's coming from the other user or vice-versa, and I don't want to be that guy. What's the vibe here about that? Should I invite myself under a new name once I'm approved for invitations, or keep this username? I'd just DM the other user if that was an option on tildes.

      edit: Thanks, all! I'll keep it until/unless the other user feels strongly about it.

      15 votes
    20. How do Tildes users feel about an OP that takes part in their own thread?

      Bit of an odd question but one I'm becoming a little self conscious of. I posted a thread earlier today on ~LGBT asking people to share their experiences of coming out. Because it's a somewhat...

      Bit of an odd question but one I'm becoming a little self conscious of.

      I posted a thread earlier today on ~LGBT asking people to share their experiences of coming out. Because it's a somewhat sensitive topic and sharing your experiences can be a little vulnerable I've been taking part and interacting with everyone who's shared their experience.

      Im being sure to try and actually contribute, bring my perspective and continue the conversation, and importantly thank people for being open about something that can be difficult.

      My problem is that I worry that this is a habit I'm bringing over from Reddit that's perhaps not suitable for Tildes, but I'm not sure?

      I generally see it as a good thing when an OP takes active part in a discussion they started, but maybe it's more of a hindrance here?

      I'm not sure how I feel, and I'd like to get the opinions of other regular users on what would be appropriate?

      Edit: I should specify and make it clear in my case I'm talking about actively replying to most or all top level comments. Not necessarily replies but still a fair number. I worry about crossing a line into just contributing to noise.

      45 votes
    21. [SOLVED] Wiki edit history no longer synced with GitLab. (Yes, Tildes has its own built-in wiki!)

      For those who are new to Tildes: This site has quite a number of wiki pages which are maintained by volunteers (except the ~tildes.official wiki pages, which are the official documentation). Many...

      For those who are new to Tildes:
      This site has quite a number of wiki pages which are maintained by volunteers (except the ~tildes.official wiki pages, which are the official documentation). Many of these community pages are now out of date, so it's a good time for people to poke around and make some changes.
      For more information, including how to gain wiki editing privileges, see the announcement post from 2019.

      A bit of advertising:
      For those who don't know, I have been maintaining the Customizing Tildes page since 2020. It is the official successor of the Awesome Tildes project and has numerous suggestions for improving the Tildes experience using userscripts, userstyles, and uBlock Origin's filtering capabilities. Feel free to drop a message if there's something that needs to be added to the wiki.


      The Actual Problem

      Changes to the wiki are no longer syncing with the GitLab repository. The last commit on GitLab is from 2021!

      19 votes
    22. Suggestion: Make megathreads more prominent

      So while megathreads are a thing, I think we can really benefit from making them more prominent. Because right now there are two topics about the Titan submersible on my front page (and two more...

      So while megathreads are a thing, I think we can really benefit from making them more prominent. Because right now there are two topics about the Titan submersible on my front page (and two more if I go to the second page), multiple surveys about movies, and at least one new thread per day about the current reddit fiasco. It's getting a bit cluttered.

      So my proposal: make megathreads more prominent.

      • Give designated megathreads a colored border or some other simple decoration to make them grab the eye and stand out.
      • Pin some megathreads so they show at the top of their respective tildes, especially if they relate to ongoing or developing events. I don't think this is necessary for all megathreads like recurring ones, but it will help cut down clutter. (Note: I did check, and this is indeed on Gitlab. Deimos left a comment three years ago that code was made, just hadn't been merged into Tildes yet due to not being needed at the time.)
      • A little more advanced: for ongoing events, maybe have some way that multiple people can edit a post with updates on new developments or links. That way even if the original poster is offline when some big event happens, someone can update it or add new links.
        • Related to above: have a pinned comment on such megathreads to help collect links and such. This would probably be the ideal editable comment rather than the original post.
      • To help cut down on the survey threads that typically just ask for lists without much discourse (e.g. "favorite X movie"): Have recurring survey megathreads asking the most common such questions, possibly each week or every other week
        • You could either cycle through different questions each time (particularly in movies where you can just go through the different genres), or just collate the most common questions
        • Also, have a list somewhere of previous times a question has been asked, and then have a "cool down" period before a question can be asked again. Maybe a wiki-style list that people can edit and add links to previous threads?

      Of these suggestions, I think the first two would be the most effective and also the simplest to implement. Adding some visual indicator for a megathread would be a simple CSS change, and apparently the code already exists for pinning threads. Just a couple thoughts!

      47 votes
    23. Feature(?) request: Free talk thread

      The ? means, it doesn’t really need to be coded. Technically I could just do it. But i wanted to check in first. I really like the community here, amd sometimes want to share or ask something...

      The ? means, it doesn’t really need to be coded. Technically I could just do it. But i wanted to check in first.

      I really like the community here, amd sometimes want to share or ask something really small. I can and have started a whole thread for it, but we might be better served by a short comment in a larger thread.

      What do yall think?

      13 votes
    24. Anchor text at the top to reply without scrolling?

      Edit — thanks to all who replied and educated me on this. I thought I'd do this rather than pollute the thread with single thank you posts while I learn the ropes here. Hi, I'm brand new here so...

      Edit — thanks to all who replied and educated me on this. I thought I'd do this rather than pollute the thread with single thank you posts while I learn the ropes here.


      Hi,

      I'm brand new here so this could well be answered and I'm just being stupid. Very probable tbh!

      I'm on a macbook and iphone and one thing I noticed was it's a bit of a trek scrolling down to comment. Not that I've done that much.

      Now I love, really love, the lightweight and speedy nature of this site (and incidentally looking forward to brushing up on my Markdown) and am hoping that with the influx feature bloat doesn't happen but would a small anchor text link somewhere up top be in order to quickly get to the comment field?

      Let me know how idiotic I am and why or.. if I'm lucky.. how much of a genius I am!

      Thanks,

      Rodney

      6 votes
    25. Turning off reply notifications would be a really nice feature

      I didn't see it in feature requests or planned features. Has there been discussion on this before? For the most part, I want to receive notifications of replies to my topics. But recently I made a...

      I didn't see it in feature requests or planned features. Has there been discussion on this before?

      For the most part, I want to receive notifications of replies to my topics. But recently I made a topic that took off a bit and many days later there are replies still dropping through. At this point I would prefer to stop getting notifications and or would be great to have a button on the topic to disable replies most for that one.

      30 votes
    26. SEO for niche topics

      Hi All, As yet another reddit transplant (YART) I've been watching the drama on that other platform and reflecting on what the most important aspects of successful online discussions are for me....

      Hi All,

      As yet another reddit transplant (YART) I've been watching the drama on that other platform and reflecting on what the most important aspects of successful online discussions are for me.

      One of the things that I value(d) most about reddit was the ability to use the keyword reddit in DuckDuckGo or Google searches to help me find more relevant and helpful content about a variety of niche subjects. So far, it seems to me like Tildes has some potential to fill this role based on its emphasis of thoughtful text content. Also, these types of searches add credibility to a site when random internet browsers stumble across a thread discussing their exact question.

      One thought that I had along these lines was that people who care about this type of thing could make a concerted effort to transport content from reddit and other sites to be shared here. I don't think it would be appropriate to just copy and paste text without adding at least a bit of original thoughts or context. However, I often find myself researching niche products or ideas to such an extent that I could write up a nice summary of all my findings. A post like that could be a nice crash course to others or a fun way to introduce people to ideas they didn't know about.

      Would people here be interested in consciously doing this type of thing? We could all make nice amalgamations of information we think is important as we independently research topics and post them here to boost discussion and boost Tildes threads in web search results.

      18 votes
    27. Announcing Tildes Shepherd, a WebExtension with interactive guided tours for Tildes

      Hello everyone! A few days ago I mentioned I was working on a new WebExtension for Tildes. Since the tidal wave of users has flooded the Spectrian plains of Tildes, I came up with this idea for...

      Hello everyone! A few days ago I mentioned I was working on a new WebExtension for Tildes.

      Since the tidal wave of users has flooded the Spectrian plains of Tildes, I came up with this idea for having interactive guided tours of the interface to explain how Tildes works and why certain things are the way they are. Well, a basic version with two (count 'em, two!) tours is here! An introduction tour as an example of what to expect and some extra info. And a homepage tour going over everything you can find there.

      Firefox users, you can install Tildes Shepherd today! Chromium-based browser users, you will have to wait a while or switch to Firefox, sorry. ;)

      As you will see in the introduction tour after installing the extension, if you have any questions or feedback, you can message @Community or comment in this topic. It's very likely I made some mistakes in what's already there so even if it's just a typo, let me know!

      As far as other tours goes, I have some planned and am open to anyone creating their own. Even if you have no programming knowledge whatsoever, if you can come up with a tour by taking screenshots and drawing over it in your favorite image editor I'd be more than happy to turn that into code for you. The most time-consuming part of creating tours so far has been finding out all the information and then condensing it into something readable, the coding aspect has been pretty easy.


      If you're new to Tildes and like what you see, please consider donating! A fundraiser was started by @talklittle and a number of goals have already been reached, with 2 more goals remaining at 500 donors. So if you want that to happen, donate! Thank you! <3

      52 votes
    28. Observations on needed features and issues now that the site has gotten busier

      Now that the site has gotten a little busier, I’ve noticed a few shifts in how I've engaged with the site and jotted down notes on things that I've noticed might be nice to have. We already have a...

      Now that the site has gotten a little busier, I’ve noticed a few shifts in how I've engaged with the site and jotted down notes on things that I've noticed might be nice to have. We already have a "what don't you like" thread I know, but this is more like "what didn't I notice when the place was a lot quieter" sort of thing.
      



      Edit bumps for megathreads

      I recently created a megathread for the Apple VisionPro reviews. But I realized that if I continuously edit in new reviews as they come in, the thread won’t bump. I’d need to actually post each time a new review comes in AND edit it into the self-post. It might be nice if I could choose to bump a self-post if I’m making a substantive edit to the content. Though I can see the opportunities for abuse here so I wonder if there’s a more elegant solution for it besides just occasionally posting when there are updates.

      Following/Subscribing to Topics

      Yes topics get bumped as conversation happens in them, but with the level of activity we have right now I’m having trouble keeping up with conversations I’m actually invested in following. Bookmarks are good, but there’s two issues. One is that they’re hidden in a folder off to the side. So it’s easy to forget to check them. Two is that they’re currently serving dual purposes, they can either be for saving specific topics because I think they’re good enough that I might want to reference them again or they can be because I want to keep up with the conversation in them.
      I’d be interested in separating the functions a little bit. I’d like to be able to bookmark topics as a “save” function but also “subscribe” to topics to get alerted up top when there are new posts the same way I am alerted to stuff in my inbox. Alternatively, just having an “unread” count next to the bookmarked topics link and sorting the list of bookmarks by acitivity might do it.



      A Drafts section

      This post right now I mostly composed in a note-taking app because it’s a collection of random thoughts I had while using the site the past couple of weeks but didn’t want to post until I had time to marinate on them. Being able to save drafts directly in Tildes would have been a nice feature. It would also be good for replies since it gives you a chance to be like “Hmmm, do I really want to engage with this conversation right now?”



      “Shortlisted” groups

      The list of groups is a bit long, especially when you’re scrolling it on mobile. People might not (and probably don’t) actually care about all of them. It might be nice if we could “star” a group to have it show up higher on the list or have all non-starred groups in a collapsed list.

      Choosing groups from the new post view instead of posting from the groups view

      Since groups are currently being treated more like “super-tags” than separated communities, I wonder if it wouldn’t be better to designate the group in a dropdown menu above the tag bar when we’re posting instead of needing to go into a group to create a new post. In some cases, I might think a self-post belongs in one group but by the time I’m done writing I realize this ~humanities post is really more of a ~life post. This will, of course, depend on the outcome of the “treating groups more as separate entities” discussion.



      Subscribed topic tags

      Filtered topic tags is a nice feature because it’s one interaction mode that serves dual uses. You can both remove a selected class of content from your main feed but then you can also navigate into it to see ONLY that content. This basically lets you use it alternatively as a “favorites” option instead of an anti-favorites option. (I guess this is less of a feature suggestion and more of an observation for a non-obvious use of the function.) We could, maybe, separate out the list of filtered topics by why you’re filtering. Either “I don’t want to see this stuff” or “I want to be able to specially focus on this stuff.”

      Built-in invite request form

      Currently to get an invite you have to ask on Reddit or something. Maybe we should have a page where people can request invites within Tildes so we aren’t reliant on having to pick-up flotsam from other social media platforms. The downside, of course, is that you can’t vet people. So this invite path would probably be the lowest priority and only handed out during quiet periods where noxious posters can be handled quickly.



      “Only New” filter for comments


      I mentioned this issue with the Arc browser that makes it so the “collapse all old replies” function breaks if I open it in a background tab. Maybe it might be nice to also have this as a button I can trigger next to the Collapse replies and Expand all buttons. Or, if it doesn’t over-complicate the UI, maybe even a way to “collapse all before [datetime]” with the last session time pre-filled in. Or perhaps more like a clock that you can wind backwards in 30 minute or 1 hour increments.



      Rethinking time-limit on Exemplary labels


      I think it’s crucial that these remain a rare commodity, but with the current volume of good posts the 8 hour limit is feeling mighty constraining. Although previously the time limit didn’t feel like a constraint at all because there legitimately wasn’t much to label. Not sure if this should actually change or not, maybe the time limit can stretch or compress based on how active the site has been over the past X hours.



      Add a “Funny” modifier to the “Joke” label

      The effect on sorting should be the exact same and it should be invisible to everyone, but I just think it would be fun and would also encourage people to label jokes as such (trick folks into narcing basically). Maybe when there is a reputation system in place it can be used to adjust how big of a negative weight your joke posts get. Funnier people get dinged less.

      Rethinking the necroposting warning

      With more people here there are more active conversations and topics seem to remain active a lot longer. In topics like the one for questions from new users it’s so active it feels kind of silly to see the “this topic is over X old” warning. We do want to encourage maintaining conversations as long as they’re going so maybe we should suppress this warning on active topics (like ones that have had more than 5 posts in the past 3 days).

      Improved search

      
I know search is hard, but it is difficult to find old stuff. I’ve been trying to dig up examples of old posts or previous conversations on things when answering questions and I’m often trying to wrack my brain for specific phrases from conversations a year or more ago. It just doesn’t work for this. Discord search works pretty well and gives you modifiers for who posted, where, around when. I get the potential for abuse here, but maybe enable this kind of deep search for my own post history and nobody else’s?



      Mark direct messages as unread

      Exactly what is says on the tin. Sometimes people ask you something and you need to come back to it later.



      Tag cloud

      Knowing what to tag things as is intimidating for newbies and old heads alike. There need to be mechanisms to make this more approachable. I think perhaps if, underneath the tag bar we just displayed a “word cloud” of the common tags sized according to frequency it might help get people started. The word cloud would have to be per group and maybe refreshed per day based on a rolling-sample of the last 100 posts.

      Put a vote button on the bottom of the post for self-posts.

      Seriously, do you realize how much scrolling I have to do to go back up and upvote kfwyre when he posts something like this? It's especially a hassle on mobile.

      87 votes
    29. Quote-only orphan comments: useful context or noisy clutter?

      Some of you may have noticed that the threads under some topics include a comment which consists only of some paragraphs quoted from the article posted in the topic, posted by the same user who...

      Some of you may have noticed that the threads under some topics include a comment which consists only of some paragraphs quoted from the article posted in the topic, posted by the same user who posted the topic. (I’m choosing not to link to any examples, because I don’t want to single anyone out for special attention, in case they feel persecuted by this.)

      @cfabbro and I were discussing this in a quiet corner of an old thread, and we came to the conclusion that this was a topic which should be discussed by more than just us two, in the hope of finding a Tildes-wide consensus about a consistent way to treat those quote-only orphan comments.

      The Context

      These quote-only comments are a side-effect of a deliberate feature of Tildes. When you create a topic there are three fields to be completed. The combination of fields you complete determine the type of topic you’re making.

      • Title All topics must have a title. This is compulsory.

      • Link A field for a URL linking to an article or video or other off-site content. This is optional.

      • Text A field for adding text to your post. This is optional.

      If you complete:

      • Link but not Text - this creates a simple link topic: the topic consists only of an off-site link.

      • Text but not Link - this creates a simple text topic: the topic consists only of user-provided text.

      • Link and Text - this produces a complex link topic: the topic consists of an off-site link plus user-provided text. However, the user-provided text is not incorporated into the actual topic, but is split off into a stand-alone comment.

      Some people who post links also like to include a relevant quote to summarise the article they’re posting, to let readers know what the article is about before they click the off-site link. But, as above, this quote gets split off as a stand-alone comment. It is no longer part of the post. It becomes an orphaned comment consisting only of the quote.

      The Question

      Given that these quote-only orphan comments exist, the question arises: how should we treat them?

      It has been observed that there are two diametrically opposed approaches to this:

      • Some people vote on them, seeing them as useful summaries of the posted article, providing some context for the discussion.

      • Some people label them as ‘Noise’, seeing them as pointless extracts from the article, cluttering up the discussion thread.

      In one recent extreme case, a quote-only orphan comment had both 16 votes and was collapsed due to ‘Noise’ labels.

      This is creating some confusion among newcomers to Tildes (as well as some of the old-timers). How are they supposed to vote/label these comments? Well, there’s no clear precedent for them to follow.

      @cfabbro and I decided to put it to all of you. Maybe by discussing this, we can come up with a consistent treatment for these comments.

      So what do you think about these quote-only orphan comments? Are they useful context or noisy clutter? Should we be giving them votes or labelling them as noise?

      37 votes
    30. Handling text reposts (recurring subjects)

      While browsing over the past little while I have noticed that I starting to see "text reposts". I did a quick search and saw that link reposts have been discussed in the past, but I didn't come...

      While browsing over the past little while I have noticed that I starting to see "text reposts".
      I did a quick search and saw that link reposts have been discussed in the past, but I didn't come across something in relation to text posts.

      To make it a bit more clear what I mean, a recent example:

      Generally speaking I don't mind reposts, certainly with "ask" topics new insights can be gained over time and different people might give different answers. At the same time I do think that the landscape around note taking software hasn't drastically changed in a week.

      To be clear, I am not saying that the OP of the most recent topic did anything wrong either. Even if you remember to check if a question has been asked before (I ironically almost forgot myself in this case) you might not find it.

      But I am wondering if more could be done to surface previous discussions. Not to specifically prevent these sorts of reposts but also to surface potentially valuable information of previous discussions.

      Something that does come to mind is having a mechanism that uses the title someone is typing as (part of) a search query in the same space. Matching topics could then be shown before submission.

      Or if we care more about making previous discussions accessible give the OP after submission the option to also link to previous topics around the subject. Interlinked topics is something that would be interesting to explore, basically borrowing from the "other discussions" tab idea but make it "similar discussions".

      I'm curious to see what others think about it.

      16 votes
    31. Filtering site domains on Tildes

      When I learned about filtered tags I thought this is an underated feature I missed on Reddit, and save me so much hassle of screening content I am not interested. I think filter sites or specific...

      When I learned about filtered tags I thought this is an underated feature I missed on Reddit, and save me so much hassle of screening content I am not interested.

      I think filter sites or specific domains would make my homepage so much cleaner, like filtering all BBC and CNN posts, what do you think?.

      13 votes
    32. How to delete a Tildes account?

      I DM’d Deimos already, but maybe the community can help, too: I want to completely delete my account but don’t find anything anywhere. Can anyone point me in the direction?

      15 votes
    33. Does Tildes need a new icon?

      I was just thinking about it. Tildes' current icon looks like a /r/wallstreetbets graph, haha. I think we could use a nice mascot that's based on a cute animal of some sort. :) Would love to hear...

      I was just thinking about it. Tildes' current icon looks like a /r/wallstreetbets graph, haha. I think we could use a nice mascot that's based on a cute animal of some sort. :)

      Would love to hear our community's thoughts on this, thank you! :)

      22 votes
    34. Tagging proposal: .wiki suffix

      There have been recent posts that reflect in-depth knowledge and significant effort to provide comprehensive information on a topic (examples here and here). Yes, it's possible to bookmark these...

      There have been recent posts that reflect in-depth knowledge and significant effort to provide comprehensive information on a topic (examples here and here).

      Yes, it's possible to bookmark these posts for individual reference. However, Tildes doesn't have a pinning feature given the current very loose organization of subjects/interest communities.

      In that absence, I'd like to suggest a globally used ".wiki" sub-tag appended to topics, to narrow search results to highly informative entries on a subject.

      Please let me know your thoughts on this.

      I'd go ahead and add the .wiki sub-tag to a couple of entries myself, but I've lost tagging privileges after a long stretch of inactivity. Please consider that I'm interested in volunteering again.

      21 votes
    35. Feature request: Filter out sites

      I see we can filter by topic tags (https://tildes.net/settings/filters), and that's nice. What I'd also like to be able to do is filter out by site:somedomain.com. I went to look at the tildes...

      I see we can filter by topic tags (https://tildes.net/settings/filters), and that's nice.

      What I'd also like to be able to do is filter out by site:somedomain.com.

      I went to look at the tildes source code, but, in my brief visit, it didn't strike me as something I could quickly cobble a pull request together for.

      The main thing I want this for is to filter out YouTube. Nothing wrong with other people liking Tildes recommendation of YT videos, but I come to Tildes for things to read, not things to watch.

      11 votes
    36. Feature: “Spoiler” text

      I was typing a comment in a gaming thread and I wanted to say something that may have been a spoiler. As I was looking through the formatting doc, I noticed it had a ton of different things you...

      I was typing a comment in a gaming thread and I wanted to say something that may have been a spoiler. As I was looking through the formatting doc, I noticed it had a ton of different things you could do, but I couldn’t find a way to hide something behind a spoiler—I was wondering if there was a way to add a “spoiler” text feature.

      Essentially this , but block out the word or phrase (I just wanted a reason to use one of the formatting options, honestly).

      Thanks!

      22 votes
    37. Half-baked proposals for architectural changes to Tildes groups and tags

      This is a place to post your ideas about what to do about Tildes groups and tags. I'm going to write about some problems (as I see them) and save my ideas about solutions for the comments. The...

      This is a place to post your ideas about what to do about Tildes groups and tags. I'm going to write about some problems (as I see them) and save my ideas about solutions for the comments.

      The taxonomy problem

      We have tags and groups and they are somewhat arbitrary. A tag could be a group someday. A group can be downgraded to a tag if it's not used much.

      Topics can have multiple tags, but they can be in only one group (and its ancestor groups).

      It's hard to pick the right group. An example: a post about animals could go in ~enviro (for wildlife), ~hobbies (for pets), or ~science (for a scientific study). So where do you put news article about a scientific study of the effects of house cats on wildlife?

      Adding ~animals seems like it would be a good thing because now you have an obvious place to find all the posts about animals. Animal lovers rejoice! But from a taxonomy point of view, it makes things worse, because now you have another place where you could logically put an article and another place to go looking for it. More groups means more edges and more edge cases. It's enough to make you wish for crossposts.

      The competition problem

      Tags are better for taxonomy, so why not just have tags? Because classifying topics isn't the only thing we want to do. As Deimos wrote about, eventually we'd like to have somewhat more independent communities, closer to subreddits but hopefully without their downsides. It would be nice if subreddits that wanted to migrate to Tildes could actually do it. We also want to have a good mix of topics on the front page, while allowing some groups to have a lot more posts than others.

      I'll start with an analogy: if a school has only one sport that matters, the people who are good at that sport win socially, and other people don't have as much of a chance. But if you have multiple sports and clubs that people care about, there are more ways to win at something. I don't believe pretending everyone is a winner works all that well, but more ways to win promotes diversity and creates useful social ambiguity.

      The front page of Tildes is the most visible and has limited space. That creates an all-against-all competition between topics. We also have groups with their own leaderboards, but they are lesser competitions and it's unclear if they matter yet. (I'm using them more, though.) Meanwhile, each topic has an independent leaderboard for its comments that doesn't conflict with any other game. (Maybe that's why I like megathreads?)

      I haven't been thinking of Tildes in terms of leaderboards, but maybe it can explain why old-timers are often reluctant to post topics? We aren't really trying to win, but we have ideas about fair play. When there's only one game anyone cares about, we don't want to drown out other worthy topics by entering too many contestants. We're also a bit reluctant to enter anything that's too specialized into the competition, because it doesn't "deserve" the attention. It's not a worthy contestant and it's just gonna lose.

      Also, sometimes this isn't a game you want to win. Entering a controversial topic into a competition can get you unwanted attention, and that's often no prize at all. When a game isn't one you wanted to enter, getting attention is more like losing than winning.

      For the front page, I expect this problem will get worse with more people. Entering the competition brings more attention than before.

      Note: thinking of a topic listing as a leaderboard for a game is only an analogy and I don't mean to promote competitiveness. They weren't designed to be leaderboards and I think we'd like to see design changes that reduce competitiveness. There are known downsides to competition that we don't want, like "cheating" to win with "unworthy" strategies and the rules-lawyering and jealousy that come with that.

      Ideas?

      Some rules for this "game": Please post one proposal per comment. If you have multiple independent ideas, you can post them separately, but post them together if they're interrelated.

      44 votes
    38. Women of Tildes, do we want or need a designated women's space?

      I'm relatively new here, and excited about the community. My question stems from learning that the usual way communities evolve here is by having specific topic information repeatedly surface in...

      I'm relatively new here, and excited about the community. My question stems from learning that the usual way communities evolve here is by having specific topic information repeatedly surface in more general category forums. If we do not create a women's community here, comparable to the one that already exists for lgbt, will we be less likely to create topics related to women's issues? Can we predict how it will evolve?

      What do you think?

      137 votes
    39. Why doesn't Tildes display a user's social score or karma on their profile page?

      I've noticed that tildes is somewhat different than other social networks in that it doesn't display a user's karma, neither on profile page or on the handle. On other networks, you'll always see...

      I've noticed that tildes is somewhat different than other social networks in that it doesn't display a user's karma, neither on profile page or on the handle. On other networks, you'll always see something like pyeri [100] at almost every place where pyeri posts.

      Is there any thought process behind this design decision? Do you think judging users by their social score might lead to "class conflicts" of sorts which might erupt in flame wars or something? Or do you think high karma will reach their heads and make them more narcissistic while a lower score will make them prone to imposter syndrome!

      But on the flip side, this karma score acts as a kind of street cred indicator. What the community thinks about a particular user is public and known to the community in the natural and organic course of content creation which is quite desirable.

      34 votes
    40. Considering image posts on Tildes

      Hi all, I'm a recent reddit refugee who is very happy with my transition here. I like the spirit of the community a whole lot and am a fan of the admin approach, which is designed to promote...

      Hi all, I'm a recent reddit refugee who is very happy with my transition here. I like the spirit of the community a whole lot and am a fan of the admin approach, which is designed to promote engagement and deep content and prevent a shallow (advertiser-friendly) scrolling experience.

      A the philosophy page on content says:

      In-depth content (primarily text-based) is the most important

      and

      In general, any changes to the site that will cause "shallower" content to gain an advantage should be considered very carefully.

      I agree with this fully. My thoughts, though, are that there are definitely forms of image post that are not just memes or jokes, and do lead to deeper discussion.

      For instance, if somebody has created some art and would like to post it for feedback (or just to share), this feels more like a discussion topic than a 'quick scroll' post. I feel that this kind of image post is 'pro community'. Somebody is posting something they care about and want to discuss.

      On reddit, a sub I always liked was ImaginaryMonsters, where people post cool pictures of monster art and discuss them (either original art or properly credited). This is for people who want to admire and discuss artwork. Again, I don't think this necessary falls into the category of 'shallow content'.

      So, what am I suggesting?

      I think it would be good for the site to actively promote the posting of the right kind of image content in the right places.

      My angle is, essentially:

      • Some image content does promote depth of discussion.
      • This type of content may be quite vital for certain wedges of the community, especially moving forwards as the site grows (and making creatives feel more welcome).
      • Rules regarding self-promotion already exist in the Code of Conduct.
      • Because of how the web works, it would make sense to have limited embedding of certain images in at least thumbnail format (but it needn't show the full image in the feed like other scrollable 'content' sites). .
      • Creating certain groups/subgroups specifically for posting certain types of images doesn't need to be seen as a slippery slope, if the rules are clear.
      • There is even the possibility of purging image posts that don't have n amount of engagement within a specific time, so as not to end up with clutter.

      I should point out two things:

      • I am aware that images can already be posted as links on the site, and I applaud the reasoning for the overall tentative approach. Here, I'm talking about some select subgroups of the site that are specifically for certain types of image posting.
      • I don't necessarily think I'm right. I am new here and making observations - I'm thinking about things I'd like personally - I know I don't have all the information to understand the full impact of such things here, but I am interested in knowing what other people think.

      So, do you have an opinion on this? Thanks for reading!

      Edit:

      I just wanted to point out a couple of things based on responses.

      • When I mention image posts, I'm not talking about image hosting - that's a whole can of worms - the site already allows links. I'm just talking about image links (with maybe some QoL surrounding that).
      • I wasn't totally clear above, I'm not suggesting image posts everywhere, or even necessarily a whole new post type. My first thoughts were about one or two specific, limited subgroups with specific purposes.
      • Those concerned about moderation, I understand that angle, but I am keeping in mind this recent post by @Deimos, where they talk about expanding moderation, or even handing it off to individual communities, subreddit style:

      If the activity stays at this level or keeps increasing, we will probably need to add more moderators soon.

      • Those concerned about feeds being overrun by images, there were thoughts about this from Deimos in the same post:

      I think we should probably take advantage of this current high activity level to try moving the groups towards being more independent spaces. This would involve switching away from the current "opt-out" approach to an "opt-in" one, and would probably need updates to a few different sections of the site to support it.

      • I also think it's worth mentioning my thoughts above do not preclude having some minimum text requirement along with every image. I agree about not encouraging shallow content, and am attempting to focus on exactly where that line lies.
      • Finally, I do want to make it clear I'm not coming here as a new person trying saying "nice site, change it like this!" - which I think some people may have taken this as (I had one or two single-sentence responses). I genuinely like what I've seen so far because of what it is, but am also aware things may well be changing in some other ways already (as per the post I linked). Sorry if this seems like 'another reddit user trying turn us into reddit' - this is not my intent whatsoever, I am just interested in specifically how it could be done in a Tildes way. I am glad it started a half-decent discussion though!
      55 votes
    41. What is the best way to provide small bits of feedback about Tildes?

      I have a small suggestion for a change to Tilde's mobile design and I'm apprehensive about posting a whole new thread here since it's relatively insignificant. This makes me wonder in general what...

      I have a small suggestion for a change to Tilde's mobile design and I'm apprehensive about posting a whole new thread here since it's relatively insignificant. This makes me wonder in general what the best way is for me and others to submit ideas or issues without creating the clutter of a lot of threads.

      Would it be appropriate to create somewhat specific feedback threads? E.g. one for design issues and suggestions, one for feature suggestions, one for general bug reports, etc.? At the end of the day, I just want to let someone know about my suggestion without creating noise.

      17 votes
    42. What's the best way to make non-English posts on Tildes? Can you? Should you?

      I'm guessing that it might just be that Tildes is an English only site, but as an avid language learner, I'd love to have a place to see and post non-English discussions. Is there a best practice...

      I'm guessing that it might just be that Tildes is an English only site, but as an avid language learner, I'd love to have a place to see and post non-English discussions.

      Is there a best practice for making a non-English discussion? Is it simply not allowed? Is it allowed but discouraged?

      18 votes