• Activity
  • Votes
  • Comments
  • New
  • All activity
    1. UserScript that hides votes like in the recent experiment

      For those who want to prolong the experiment, here is a userscript to help: // ==UserScript== // @name tildes // @version 2 // @grant none // @namespace tildes.net // @include https://tildes.net/*...

      For those who want to prolong the experiment, here is a userscript to help:

      // ==UserScript==
      // @name     tildes
      // @version  2
      // @grant    none
      // @namespace   tildes.net
      // @include     https://tildes.net/*
      // ==/UserScript==
      
      document.querySelectorAll('.is-comment-mine .comment-votes').forEach((v) => v.parentNode.removeChild(v));
      
      ['.btn-post-action[name="vote"]', '.btn-post-action[name="unvote"]'].forEach((sel) =>
        document.querySelectorAll(sel).forEach((b) => b.innerText = b.innerText.replace(/ \(.*/, '')));
      

      I am fairly sure that this syntax requires ES6, so if your browser is not compatible, you need to reimplement this using ES5. Should be straightforward but a bit more verbose.

      20 votes
    2. Linux gamers: let's help test Proton compatibility before the Steam summer sale

      I made this an "event" over on reddit, and I figured I'd also mention it here. The Steam summer sale is alleged to start on June 23rd, and I figured it would be nice if people could go into it...

      I made this an "event" over on reddit, and I figured I'd also mention it here.

      The Steam summer sale is alleged to start on June 23rd, and I figured it would be nice if people could go into it with current information on Proton compatibility for games so we can better know what to buy and avoid. As such, it would be great if we could all submit a bunch of ProtonDB reports this coming week.

      I plan to go through my library and test high-leverage games: either ones that lack reports or games whose reports are quite old. Let me know if you're wanting to join in the "fun!"

      14 votes
    3. Where do you buy microSD cards from?

      Amazon appears to have a severe problem with "co-mingled" stock for some items. eBay is pretty scary for some things, but at least you know it's eBay. Where do you buy microSD cards for a...

      Amazon appears to have a severe problem with "co-mingled" stock for some items.

      eBay is pretty scary for some things, but at least you know it's eBay.

      Where do you buy microSD cards for a reasonable price and to ensure genuine product?

      10 votes
    4. I Am Mother (2019)

      I Am Mother is a sci fi movie centered in a dystopian future with a novel twist. If you prefer neat, predictable endings, then this movie is probably not for you. What is particularly interesting,...

      I Am Mother is a sci fi movie centered in a dystopian future with a novel twist.

      If you prefer neat, predictable endings, then this movie is probably not for you.

      What is particularly interesting, is the movie is almost deliberately ambiguous, and it constantly challenges the usual assumptions you might make.

      The final reveal subtly explains away some of the elements that at first seemed a little jarring or confusing. Other aspects are not fully explained. This creates enough space to construct some very interesting back story theories, while ultimately leaving you guessing.

      9 votes
    5. I believe Google search is restricting what articles I can see in my searches, based on my location. What can I do?

      Whenever I search for information about something - especially about a news event - Google returns me a lot of results from Australian sites. Any foreign sites come further down the list,...

      Whenever I search for information about something - especially about a news event - Google returns me a lot of results from Australian sites. Any foreign sites come further down the list, sometimes even on the second page of results. I've never really paid much attention to this behaviour, beyond some occasional mild frustration at not being able to find local sources.

      However, this came to a head this week when I was searching for a local US-based news article about something I'd read in an Australian news site, so I could post that local US article here on Tildes (I always try to get as close to the source as possible). But, try as I might, I just could not find any good non-Australian articles about this news! It was almost like Google was deliberately blocking my attempts to read non-Australian sites. I mean, it's possible that this news wasn't reported outside Australia, but that's unlikely, seeing as it was Uber's announcement about trialling electric aircraft in Texas and Victoria. That had to get American coverage. But I struggled to find it in my searches.

      I then noticed something I've never noticed before: at the bottom of my Google searches, there's a small line which tells me my current location. It's as specific as my local council area, not just my state or the country.

      Is this location affecting what Google shows me in my searches? If so, how do I remove this restriction?

      For context: I use Chrome, but I only sign in when I'm accessing a Google service (usually the Calendar). After I've finished with the service, I sign out. So Google isn't tracking me as a person, it's just tracking my browser's search activity.

      EDIT: Thank you all. I've already set up DuckDuckGo as my default search engine, and am trying it out.

      16 votes
    6. Who are your LGBTQ heroes/role models?

      Who are the LGBTQ individuals you look up to or admire? In what ways do you find them inspiring or admirable? Has their example and influence helped you in your own life? If so, how? Don't feel...
      • Who are the LGBTQ individuals you look up to or admire?
      • In what ways do you find them inspiring or admirable?
      • Has their example and influence helped you in your own life? If so, how?

      Don't feel like you have to talk about someone famous: plenty of LGBTQ heroes are the people we know personally, and I would love to hear those kinds of stories. Also, feel free to include people who don't identify as LGBTQ but who still fit the criteria of a role model/hero for the community (e.g. Judy Shepard, Jonathan Larson, a supportive straight sibling, etc.).

      15 votes
    7. Do generic CLI to GUI wrappers exist?

      So I've been messing around with the webp encoder cli tool and I really wish I could quickly achieve a workflow more similar to photoshop's previews. Is there a GUI tool out there where I can...

      So I've been messing around with the webp encoder cli tool and I really wish I could quickly achieve a workflow more similar to photoshop's previews. Is there a GUI tool out there where I can specify the arguments for an CLI executable then it lets me adjust the values and run the command. Ideally it would automatically let me view the output file, and define presets would be great.

      10 votes