• Activity
  • Votes
  • Comments
  • New
  • All activity
    1. What have you been listening to this week?

      What have you been listening to this week? You don't need to do a 6000 word review if you don't want to, but please write something! If you've just picked up some music, please update on that as...

      What have you been listening to this week? You don't need to do a 6000 word review if you don't want to, but please write something! If you've just picked up some music, please update on that as well, we'd love to see your hauls :)

      Feel free to give recs or discuss anything about each others' listening habits.

      You can make a chart if you use last.fm:

      http://www.tapmusic.net/lastfm/

      Remember that linking directly to your image will update with your future listening, make sure to reupload to somewhere like imgur if you'd like it to remain what you have at the time of posting.

      8 votes
    2. What did you do this week (and weekend)?

      As part of a weekly series, these topics are a place for users to casually discuss the things they did — or didn't do — during their week. Did you accomplish any goals? Suffer a failure? Do...

      As part of a weekly series, these topics are a place for users to casually discuss the things they did — or didn't do — during their week. Did you accomplish any goals? Suffer a failure? Do nothing at all? Tell us about it!

      11 votes
    3. Offbeat Fridays – The thread where offbeat headlines become front page news

      Tildes is a very serious site, where we discuss very serious matters like performance, emiru and crown jewels. Tags culled from the highest voted topics from the last seven days, if anyone was...

      Tildes is a very serious site, where we discuss very serious matters like performance, emiru and crown jewels. Tags culled from the highest voted topics from the last seven days, if anyone was paying attention.

      But one of my favourite tags happens to be offbeat! Taking its original inspiration from Sir Nils Olav III, this thread is looking for any far-fetched offbeat stories lurking in the newspapers. It may not deserve its own post, but it deserves a wider audience!

      20 votes
    4. What creative projects have you been working on?

      This topic is part of a series. It is meant to be a place for users to discuss creative projects they have been working on. Projects can be personal, professional, physical, digital, or even just...

      This topic is part of a series. It is meant to be a place for users to discuss creative projects they have been working on.

      Projects can be personal, professional, physical, digital, or even just ideas.

      If you have any creative projects that you have been working on or want to eventually work on, this is a place for discussing those.

      9 votes
    5. Controllers that work well with CachyOS?

      Pretty much the title. I want to move away from OEM 1st party controllers due to quality and inevitable joystick drift. I have an 8bitdo Ultimate, but it's not working for me on CachyOS. Anyone...

      Pretty much the title. I want to move away from OEM 1st party controllers due to quality and inevitable joystick drift. I have an 8bitdo Ultimate, but it's not working for me on CachyOS.

      Anyone else have experience with good quality controllers on Linux? The Flydigi Vader Pro 5 caught my attention, and I am a pretty competitive person for certain games (mainly Halo 3 and Halo Infinite), and like tight controls for platformers and souls-like games as well.

      Edit: I primarily used my controllers wireless, especially on the living room PC. I am more okay with wired on my personal computer.


      Found a solution!!

      Edit as of Tuesday, October 28th 2025: https://www.reddit.com/r/linux_gaming/comments/1iceer5/8bitdo_controller_fixes_for_linux_my_impressions/

      Fixes for 8BitDo controllers running under Linux.

      sudo mkdir /etc/udev/rules.d
      
      sudo nano /etc/udev/rules.d/99-8bitdo-xinput.rules
      
      ACTION=="add", ATTRS{idVendor}=="2dc8", ATTRS{idProduct}=="3106", RUN+="/sbin/modprobe xpad", RUN+="/bin/sh -c 'echo 2dc8 3106 > /sys/bus/usb/drivers/xpad/new_id'"
      
      sudo udevadm control --reload
      

      Change Product ID according to your controller:

      Product ID 8BitDo Ultimate/Ultimate C 2,4Ghz: 3106

      Product ID 8BitDo Ultimate 3-Mode 2,4Ghz: 200f / alternate Product ID: 201b

      Product ID 8BitDo Ultimate 2C 2,4GhZ: 310a

      14 votes
    6. Fitness Weekly Discussion

      What have you been doing lately for your own fitness? Try out any new programs or exercises? Have any questions for others about your training? Want to vent about poor behavior in the gym? Started...

      What have you been doing lately for your own fitness? Try out any new programs or exercises? Have any questions for others about your training? Want to vent about poor behavior in the gym? Started a new diet or have a new recipe you want to share? Anything else health and wellness related?

      6 votes
    7. What are creepy, spooky or scary places you've been?

      It's spooky month again! I've asked in the past for people to share scary, creepy and unexplained stories in October. But I figure the community doesn't grow enough to guarantee new people with...

      It's spooky month again! I've asked in the past for people to share scary, creepy and unexplained stories in October. But I figure the community doesn't grow enough to guarantee new people with new stories every year. So this year I'll mix it up:

      What are some of the creepiest, spookiest and scariest places you've been?

      Can be genuinely scary with a personal story attached. Can just be a spooky haunted house exhibit. Can be a place you just found really creepy for no specific reason. It could be as big as a historic mansion with a macabre background, as simple as abandoned buildings, could be that weird attic room with a lock on the outside of the door...

      So share away!

      33 votes
    8. Does anyone use AppleScript on macOS?

      I heavily utilize ChatGPT to generate .ics files to populate my Apple Calendar with various events, but I have been wanting to upgrade my time management and also use the Reminders app. I recently...

      I heavily utilize ChatGPT to generate .ics files to populate my Apple Calendar with various events, but I have been wanting to upgrade my time management and also use the Reminders app.

      I recently used ChatGPT to help me populate a Trello board with tasks associated with a project I am working on, but I was getting annoyed with having my workflow split across Apple Calendar and Trello. I exported my Trello board as a CSV and was trying to have ChatGPT turn it into a file I could import into Reminders, but as it turns out, this is not easy.

      .ics files do contain syntax for reminders tasks with due dates that populate the Apple Calendar, but generating an .ics file with only reminders tasks and importing into Calendar doesn’t actually work. Calendar recognizes that the .ics contains Reminders tasks and opens Reminders to import the tasks, but Reminders returns an error because it doesn’t support import, it only supports export to Calendar.

      I found that Reminders has a Reminders.scpt dictionary file within the .app package that details .applescript commands that can create new tasks, so I fell into the world of AppleScript. The issue with AppleScript is that it was created in the 80s and hasn’t been updated since 2013. It has no native CSV support and is pretty clunky.

      AppleScript does have text file support, so I was able to have ChatGPT convert my CSV into a .txt that I could parse with AppleScript. This allowed me to automate the creation of tasks in the Reminders app from my Trello CSV, but it was annoying and I still feel like there must be a better way.

      Does anyone here use AppleScript regularly and know its full capabilities?

      Also, are there any good resources out there for learning more about AppleScript? The Apple documentation is very out of date and it seems like more of a legacy language than something Apple regularly maintains.

      14 votes
    9. What's a quantum computer?

      I keep seeing this term but I have no idea what it means ? and what does it actually mean in practice. for example, what it can actually do, it seems to only be used for algorithms and such. not...

      I keep seeing this term but I have no idea what it means ?

      and what does it actually mean in practice. for example, what it can actually do, it seems to only be used for algorithms and such. not personal computing. I assume I don't understand because I'm unfamiliar with Quantum mechanics

      35 votes