• Activity
  • Votes
  • Comments
  • New
  • All activity
    1. What are you reading these days? #24

      What are you reading currently? Fiction or non-fiction, any genre, any language! Tell us what you're reading, and talk a bit about it. Notes Sorry for posting late this time round. I had an...

      What are you reading currently? Fiction or non-fiction, any genre, any language! Tell us what you're reading, and talk a bit about it.

      Notes

      • Sorry for posting late this time round. I had an intense week, and was basically too lazy to post yesterday.

      • I will not include a list of past topics in the topic text anymore, given it is redundant with the listing in the wiki. Below you'll find a link to the relevant section in the relevant wiki page instead. If you think this is a bad change, PM me about it; if a lot of you don't like it I might end up reverting this.

      • Have a nice weekend!

      Previous topics

      Previous topics are listed in the wiki.

      17 votes
    2. Unofficial Weekly Discussion #1 - Suggestions/ideas/concerns for future unofficial weekly discussions

      Since @Deimos has stated he will likely not be restarting the tradition of the Official Daily Tildes Discussions, which is something I and a number of other users greatly enjoyed and miss, I have...

      Since @Deimos has stated he will likely not be restarting the tradition of the Official Daily Tildes Discussions, which is something I and a number of other users greatly enjoyed and miss, I have decided to attempt to take on the responsibility of continuing them unofficially (with his blessing). And since these are not official (so won't be in ~tildes.official, which everyone is subscribed to and probably shouldn't unsubscribe from), I will only be doing them weekly instead of daily, and we now have topic tag filtering (so unofficial weekly discussion can be filtered out), hopefully the people who found the official daily discussions annoying can more easily ignore/hide these unofficial ones.

      With the explanation out of the way, on to the topic for this week:


      Suggestions/ideas/concerns for future unofficial weekly discussions

      I thought it would be appropriate to have the first one of these be a bit of an open-ended, meta-meta discussion on the future of these topics. And to kick things off:

      • What would everyone here like to see discussed in these topics in the future? Are there any particular site features (planned, suggested or theoretical), policies (tagging, moderation, etc), or other meta issues/subjects you would like to be the topic in future discussions?

      • What would you like us to try to achieve with these discussions? Should we have any specific goals in mind, or should they just be fun brainstorming/theory-crafting/naval-gazing sessions?

      • Does anyone have any suggestions for me with regards to how I should handle these discussions? Is there anyone out there who would like to help me with these in some capacity going forwards?

      • Does anyone have any concerns regarding these unofficial discussions, and if so, can you think of any ways we can try to address them?

      The floor is open, and I am all ears. :)


      Tildes Official Docs : Donate to Tildes | Tildes Gitlab : Issues Board

      22 votes
    3. Tildes User Script: Drag and drop usernames in order to mention them in your comments

      It is was a tedious task to mention users: copy, type, paste. This script makes it a single step: drag and drop any username on to the comment you're composing, and tada! It's there. Here is the...

      It is was a tedious task to mention users: copy, type, paste. This script makes it a single step: drag and drop any username on to the comment you're composing, and tada! It's there.

      Here is the script:

      // ==UserScript==
      // @name     tildesDragNDropUsernameForMention
      // @version  1
      // @grant    none
      // @namespace   tildes.net
      // ==/UserScript==
      
      var userLinks = document.querySelectorAll('a.link-user');
      
      var dragstartHandler = function (event) {
        var text = event.target.innerText;
        if(!text.startsWith('@')){
          text = "@" + text;
        }
        event.dataTransfer.setData("text", text);
        event.dataTransfer.dropEffect = 'copy';
      }
      
      userLinks.forEach(function (each) {
        each.setAttribute('draggable', true);
        each.ondragstart = dragstartHandler;
      });
      

      Patches welcome!

      Edit: remove useless code

      9 votes
    4. Combining searches and filters

      The lack of ability to combine search functions on Tildes is becoming more and more of a pain point for me. I can filter for one tag or search for one word, but that's it. I can't narrow the...

      The lack of ability to combine search functions on Tildes is becoming more and more of a pain point for me. I can filter for one tag or search for one word, but that's it. I can't narrow the search in any way. I can't combine searches and filters and groups:

      • I can't search for a word within a group.

      • I can't search for a word within a set of topics filtered by a tag.

      • I can't filter by two separate tags at the same time.

      • I can't search for two separate words at the same time.

      As Tildes is growing larger, the ability to search better is becoming more necessary.

      Is there any possibility of bringing forward the work on searches so that some of these combinations can be enabled?

      10 votes