• Activity
  • Votes
  • Comments
  • New
  • All activity
    1. 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
    2. 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
    3. 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
    4. Budget smartphones - apparently there are good options. Opinions and recommendations?

      I just picked up a Nokia 3.1 for $120 in a bit of an emergency and I really like it. It's very light, Android One, very nice styling and again it's $120! I was shocked by this experience at this...

      I just picked up a Nokia 3.1 for $120 in a bit of an emergency and I really like it. It's very light, Android One, very nice styling and again it's $120!

      I was shocked by this experience at this price point. This thing is excellent for my use case, as a pre-paid EU phone as my lovely iPhone 6s Plus has only one Sim slot. Are there any other great budget phones out there?

      27 votes