• Activity
  • Votes
  • Comments
  • New
  • All activity
    1. Anyone else feeling completely exhausted this week? What's making you so tired?

      2023 has been one of our busiest years in a decade for me and my partner. We moved house, experienced big career changes, and tackled responsibilities that kept rolling in. The pent up energy from...

      2023 has been one of our busiest years in a decade for me and my partner. We moved house, experienced big career changes, and tackled responsibilities that kept rolling in. The pent up energy from COVID years helped us get through it, and I'm proud of how much we've gotten done this year.

      Now suddenly I feel like we're so tired, especially this week, after Thanksgiving. Thanksgiving was super low key, we had a video chat with family because some nieces and nephews were sick with flu, so we're not tired from celebrating, it must be something else. It could be the shorter days, like two or three hours less sunlight than a month ago.

      We've even gotten emotional and bickered over random petty things, which we usually don't, and I think that boils down to the tiredness too.

      Speaking of the flu, there are people getting sick around us at work and the neighborhood, so I'll bet our immune systems are working hard and making us tired too.

      What about you all? What's making you tired? What have you had to give up on because you don't have the energy to deal with it?

      44 votes
    2. Any Star Citizen folks here? I'm a new player with a barely passable rig, looking for tips to make play bearable...

      Howdy, citizens! So, after begging, borrowing and stealing, I've managed to piece together what I believe to be a barely capable rig so that I can get into playing this incredible looking game,...

      Howdy, citizens!

      So, after begging, borrowing and stealing, I've managed to piece together what I believe to be a barely capable rig so that I can get into playing this incredible looking game, but I'm running into a performance issue that makes it pretty unplayable.

      Here's my rig:
      AMD A-10 6800k @ 4.1 GHz
      32 GB Ram
      128 GB SanDisk SSD (for the game only, OS is on a similar size Kingston)
      GTX 960 for the graphics.

      Last night I tried running the game from my normal HD, which is a 1tb platter. This did not go well. Just moving my character around in the initial apartment was torture, and using anything in the room was an exercise in frustration to the point that the room ended up looking like a brawl had happened in it before I made it out, with coffee cups and water bottles all over the floor.

      So, after I read a few pointers online, I salvaged the SanDisk from a different PC and began reinstalling on that. Today I hope to be able to move around smoothly enough to actually play, but aside from setting every option to its lowest, are there any other little tricks I can use to get it more playable?

      17 votes
    3. How would you organize a global Rock, Paper, Scissors tournament?

      A friend and I were bantering about how we should organize a RPS tournament, where the LOSER advanced and was ultimately kicked in the bum by the "winner" of the final round, and also given $10 as...

      A friend and I were bantering about how we should organize a RPS tournament, where the LOSER advanced and was ultimately kicked in the bum by the "winner" of the final round, and also given $10 as a pity for being the "greatest loser".

      This quickly morphed into daydreams of a global event, culminating in the grand finals at the Mandalay Bay, with coverage by ESPN 12, sponsorship deals, trading cards ("Joe is known for his southpaw stance and shooting from his off-hand which greatly throws off his opponent." and per-year statistics of Win % by rock, paper, and scissors); the whole nine yards.

      But it got us thinking... in today's age, would it be difficult to organize a simple RPS tournament GLOBALLY? What technologies would you use? Could you approach it 100% digitally? How would you verify the loser for advancement?

      Let's even say someone was willing to put up $20k or even $100k to actually fly winners from each continent or major population region and put them up at the Mandalay Bay (btw - that hotel just came to mind because it was the first to come to mind in Las Vegas) for a 1-day event. Would that change anything?

      RPS because the absurdity of it and the zero cost to entry.

      We await your thoughts...

      21 votes
    4. Fortnightly Programming Q&A Thread

      General Programming Q&A thread! Ask any questions about programming, answer the questions of other users, or post suggestions for future threads. Don't forget to format your code using the triple...

      General Programming Q&A thread! Ask any questions about programming, answer the questions of other users, or post suggestions for future threads.

      Don't forget to format your code using the triple backticks or tildes:

      Here is my schema:
      
      ```sql
      CREATE TABLE article_to_warehouse (
        article_id   INTEGER
      , warehouse_id INTEGER
      )
      ;
      ```
      
      How do I add a `UNIQUE` constraint?
      
      4 votes
    5. TV Tuesdays Free Talk

      Warning: this post may contain spoilers

      Have you watched any TV shows recently you want to discuss? Any shows you want to recommend or are hyped about? Feel free to discuss anything here.

      Please just try to provide fair warning of spoilers if you can.

      5 votes
    6. Day 4: Scratchcards

      Today's problem description: https://adventofcode.com/2023/day/4 Please post your solutions in your own top-level comment. Here's a template you can copy-paste into your comment to format it...

      Today's problem description: https://adventofcode.com/2023/day/4

      Please post your solutions in your own top-level comment. Here's a template you can copy-paste into your comment to format it nicely, with the code collapsed by default inside an expandable section with syntax highlighting (you can replace python with any of the "short names" listed in this page of supported languages):

      <details>
      <summary>Part 1</summary>
      
      ```python
      Your code here.
      ```
      
      </details>
      
      12 votes
    7. What does it mean to friend someone online?

      Recently my daughter (third grade) has started learning to type at school. It's a Montessori program, so it's a pretty low tech environment overall, which I mention because I don't necessarily...

      Recently my daughter (third grade) has started learning to type at school. It's a Montessori program, so it's a pretty low tech environment overall, which I mention because I don't necessarily expect them to have a nuanced view of technology issues.

      One of the typing programs they use is nitrotype.com, which adds a competitive gameplay element. However, it also has mechanism to friend another player. Friends can only communicate with stock phrases, so there's not too much "Internet leakage" beyond being able to choose a username.

      I set it up for my daughter on her Linux Chromebook (I whitelist things I want her to have and everything else is blocked at DNS). Seeing her interact with it the first time, I realized that she spends as much time "adding friends" as doing the typing.

      On its face, this activity is pretty harmless. But I am worried about the patterns it might be creating for her. I'm worried about her uncritically engaging with the dopamine hit of getting a new friend. Or how it shapes her idea of how many friends she has or where idea of her self worth comes from. Or what she thinks friends are.

      So after that long preamble, here are some questions:

      • How would you explain "friends" in this context?
      • Would you distinguish them from other kinds of friends, either real or virtual?
      • Would you attach a moral component to the activity? E.g. that it is good/bad or helpful/harmful
      • How would you frame it to the teacher? Not so much in terms of whether or not they should do it in the classroom, but what kinds of conversations should they be having about the friends experience?
      • If I'm asking the wrong questions, what questions should I be asking instead?

      I'm really interested in seeing the perspectives people have on this. My own ideas are a bit murky, but I will put them down as a comment.

      37 votes
    8. What podcasts are you listening to?

      First off, hello, I'm new here, and I hope this is an okay place to ask...what podcasts are you all into? Here's some of my favorites: Dispatches from Myrtle Beach: Link from Good Mythical Morning...

      First off, hello, I'm new here, and I hope this is an okay place to ask...what podcasts are you all into?

      Here's some of my favorites:

      Dispatches from Myrtle Beach:
      Link from Good Mythical Morning has a conversation with his father. It's a strange mix of funny, heartwarming, raunchy, and endearing.

      The Newest Olympian:
      Mike Shubert from the Potterless podcasts reads the Percy Jackson books (I tried reading along with the podcast because I'd never read them, but couldn't put the books down, so I'm ahead of the podcast now). It's a funny podcast regardless if you've read the books.

      RadioLab and the new season of RadioLab's More Perfect podcast
      If you've never listened to radio lab, just pick any episode. They're interesting and weird and you'll learn stuff. They're just good. The new hosts are still finding their way, but it's still good, so maybe start with some of the older episodes.

      Judge John Hodgman

      • He settles stupid disputes between people...e.g., "Is a hotdog a sandwich" (No.)

      Song Exploder

      • Even if I've never heard of the song I listen. It's about how songs are made, and it's super interesting.

      99% Invisible

      • it's about recognizing all the fascinating things in the world around us that we pass by every day without noticing. Always read the plaque.

      Oh No, Ross and Carrie

      • they do non-sciencey things and then discuss from a science perspective. (E.g., joining a religion, going to flat earth meetings, visiting psychics, getting holistic medical treatments, etc)

      This American Life
      just interesting stories about people and things in life?

      The Memory Palace
      super cool podcast...usually pretty short that takes things from history and tells the story in just a unique and interesting way.

      Science Friday
      deep dive into science news for the week

      Behind the Bastards
      all about the worst people in history.

      Sawbones: A Marital Tour of Misguided Medicine
      Hilarious podcast about medical history

      The Adventure Zone
      The McElroy family plays dnd and other role play games

      The Moth
      people tell personal stories to crowds of people.

      The Daily
      New York Times's podcast

      Wait Wait Don't Tell Me
      news comedy gameshow

      60-Second Science
      as described

      Good Job Brain
      pub trivia podcast

      A Hotdog is a Sandwich (but it's not)
      Good Mythical Kitchen's Josh and Nicole debate food things

      Dead Pilots Society:
      really interesting. They take scripts from failed TV pilots and hire actors to do table reads of the script. Every other week is an interview with the script's writers too, so you can listen to those if interested or just the table reads if not.

      Brainstuff:
      just interesting tidbits. Short podcasts.

      I'd love to hear your recommendations!

      Edit: Thank you all for all the recommendations! I'm still reading all the posts and adding them to my list to give them a shot!

      60 votes
    9. Does anyone have recommendations for physics simulation software? (E.g. Algodoo, Simulo, Physion, etc.)

      I just got into watching physics simulation videos on youtube, stuff like marble races, marble battles, Multiply Or Release, and various other simulation content. Absolutely enthralling stuff for...

      I just got into watching physics simulation videos on youtube, stuff like marble races, marble battles, Multiply Or Release, and various other simulation content. Absolutely enthralling stuff for someone like me who enjoys simply watching an environment do its thing.

      I wanted to get into making my own sims/scenarios and was wondering if you all on tildes had some recommendations. I've been trying algodoo and it seems very nice but I've heard its mostly abandonware and theres some features I find lacking. So I wanted to look into options for my little tinkering. I understand that there may not be a perfect one but I'd love to have some options to try and tinker in, and my research has led me to lots of them that seem at first look to be purely for academic purposes.

      To crystallize my desires into a definite paragraph:
      I'm looking for physics sim software recommendations to make my own marble races and other simulated 'games'. I don't mind having to learn it from scratch(including scripting language). I dont care if its paid or free. Ease of use is great but Non-essential since it can likely be learned over time. Preferrably not abandonware, or at least feature-rich if development has been completed. and lastly, performance is definitely important since I'll likely be building some grand designs as I settle in.

      15 votes
    10. Join the Tildes Advent of Code leaderboard!

      In the comments of the previous AoC post @first-must-run asked if there is a private leaderboard for Tildes, and I didn't manage to find one, so I decided to share my invite code so that we can...

      In the comments of the previous AoC post @first-must-run asked if there is a private leaderboard for Tildes, and I didn't manage to find one, so I decided to share my invite code so that we can track our progress together.

      Please LMK if there is already an existing leaderboard from a previous year.

      The join code is 2183006-a14e4b86, you can join here.

      16 votes