• Activity
  • Votes
  • Comments
  • New
  • All activity
    1. Looking for a top down tactical wargame

      I've tried hundreds of searches (variations of this) on google and either I have no idea what to search for, or it doesn't exist. I'll keep it short, the best way to explain is that I'm looking...

      I've tried hundreds of searches (variations of this) on google and either I have no idea what to search for, or it doesn't exist.

      I'll keep it short, the best way to explain is that I'm looking for a game in the style of the Total War franchise, but focused (mostly) on the top down battle view:

      Example 1

      Example 2

      I'm not that interested in manually managing tens of regions, I don't want to 3d my way through a battle front while the soldiers gore eachother, I just want to focus on being a general that wins battles through tactics. Where I can apply strategies like Oblique Formation and False Gap to outmaneuver my enemies.

      Do you have any recommendations for me? Is there any game that even comes close to this? (apart from the Total War franchise - which I love by the way, but the games tend to last too long, and they're getting bigger and bigger with each release)

      17 votes
    2. Midweek Movie Free Talk

      Have you watched any movies recently you want to discuss? Any films you want to recommend or are hyped about? Feel free to discuss anything here. Please just try to provide fair warning of...

      Have you watched any movies recently you want to discuss? Any films 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
    3. My boss is being accused of sexual misconduct and I don't know what to do

      Hi all, I don't know where to turn on this. I work in a small company, my boss who is an amazing person and has given me so much and helped me really kick start my career has had some accusations...

      Hi all,
      I don't know where to turn on this. I work in a small company, my boss who is an amazing person and has given me so much and helped me really kick start my career has had some accusations over the past little while. But now I've heard a few stories that really show that he's done some shady stuff. My boss has been like a brother to me and is a close friend. I have no idea how to digest this and I have no idea who I could talk to, so I'm just posting here.

      I don't want to lose a friend, he's been nothing but amazing to me.

      Edit: thank you everyone. I'll keep reading the comments. I just need to reflect on this and I appreciate your discussions.

      Edit 2: There is proof enough to not deny things, inappropriate and agressive advances and groping stuff. Nothing good.

      40 votes
    4. The decline of username and password on the same page

      Web devs: what's up with this trend? For enterprise apps, I get it…single sign-on needs to detect what your email domain is to send you to your identity provider. For consumers, I feel like it's...

      Web devs: what's up with this trend? For enterprise apps, I get it…single sign-on needs to detect what your email domain is to send you to your identity provider. For consumers, I feel like it's gotta be one of these reasons:

      • Users don't know about the tab key being able to move to other fields on a page
      • Mobile users don't really have a tab key, despite there being "previous/next field" arrows on the stock iOS keyboard since its inception (Android users, help me out please)
      • Users tend to hit Enter after typing in their username, leading to a form submission with a blank password
      • Security, maybe? In the past I have sent a link and a password in separate emails or separate communication methods entirely. Are you hashing/salting these separately for better MITM mitigation?

      Did your UX team make a decision? Are my password managers forever doomed to need a "keyboard combo" value for every entry from now on?

      Non-devs: do you prefer one method over the other? If so, why?

      Tildes maintainers: selfishly, thanks for keeping these together :)

      71 votes
    5. Teach me about biryani

      I was watching this video. The auto-translated subtitles are not great, but I followed along a bit. We tried 15 types of Biryani It made me realise that in the UK I have access to a very limited...

      I was watching this video. The auto-translated subtitles are not great, but I followed along a bit.

      We tried 15 types of Biryani

      It made me realise that in the UK I have access to a very limited selection of biryani. From a supermarket it will look like this: https://www.iceland.co.uk/p/iceland-chicken-biryani-375g/87458.html. I'm missing so much knowledge about an enormous region that covers over a billion people.

      I'd be really interested to hear about biryani, especially regional variations with different ingredients. What things are essential and often missed? What makes a biryani great?

      I'd also love to hear more about delivery - those "handi" ceramic dum cooked to order pots look amazing. There's another video here of an "unboxing" - https://www.youtube.com/shorts/Q5OA4XiGl34 , and the makers have a video here too: https://www.youtube.com/watch?v=H6nE1Nla3u0

      20 votes
    6. Tildes Book Club - Spring schedule (Updated Feb 2, 2:19 UTC)

      The results are in, and Dispossessed was the clear favorite with many strong contenders. It looks like quite a few people are interested in participating. There was a tie for third place so we...

      The results are in, and Dispossessed was the clear favorite with many strong contenders. It looks like quite a few people are interested in participating.

      There was a tie for third place so we will start with four books.

      Edit
      We will discuss Cloud Atlas by David Mitchell in early March,
      Piranesi by Susanna Clarke in Mid April,
      The Dispossessed by Ursula le Guin in Late May
      And Project Hail Mary by Andy Weir at the end of June.

      We will discuss Project Hail Mary in early March
      Cloud Atlas in mid April
      The Dispossessed in late May
      and Piranesi at the end of June

      At that point I plan to hold a voting thread for fiction and a voting thread for nonfiction and discuss/vote on how frequently to read nonfiction. Please feel free to renominate your favorites that didn't get chosen.

      I'm looking forward to this. Thanks for participating.

      26 votes
    7. TV Tuesdays Free Talk

      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...

      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.

      7 votes
    8. Any other developers also strongly resistant to adding secondary data stores to their software?

      I'm currently building an MVP for a startup, solo. We've got Postgres pulling triple duty as the go-to database for all normal relational data, a vector database with pgvector, and a job queue...

      I'm currently building an MVP for a startup, solo. We've got Postgres pulling triple duty as the go-to database for all normal relational data, a vector database with pgvector, and a job queue (With the magic of SELECT ... FROM "Jobs" WHERE ... FOR UPDATE SKIP LOCKED LIMIT 1). Every time I go out looking for solutions to problems it feels like the world really wants me to get a dedicated vector store or to use Redis as a job queue.

      Back when I was a Rails developer a good majority of the ActiveJob implementers used Redis. Now that I'm doing NodeJS the go-to is Bull which can only serialize jobs to Redis. They back this with claims that I can scale to thousands of jobs per second! I have to assume this theoretical throughput benefit from using Redis is utilized by 0.01% of apps running Bull.

      So I ended up implementing a very simple system. Bull wouldn't have been a good fit anyway as we have both Python and Typescript async workers, so a simple system that I fully understand is more useful at the moment. I'm curious who else shares my philosophy.

      Edit: I'll try to remember to update everyone in a year with the real world consequences of my design choices.

      16 votes
    9. Has anyone else noticed a difference in their winters?

      I moved to a place with an "actual" winter just over a decade ago -- snow, freezing temperatures, etc. In the first couple of years, I got what felt like a genuinely solid winter. Lots of...

      I moved to a place with an "actual" winter just over a decade ago -- snow, freezing temperatures, etc. In the first couple of years, I got what felt like a genuinely solid winter. Lots of blisteringly cold days. Snow that fell in large amounts and stuck around for most of the season. I love winter, so this was great for me.

      In recent years, however, the winters have been milder and milder. When we do get snow, it's only around for a bit because days above freezing are now frequent enough that it's able to melt between snowfalls. Also, the snowfalls themselves are more intermittent. This year specifically we've actually had more rain than snow. I don't remember getting rain in January when I first moved here.

      It irks me a bit because the shift has been so stark and noticeable in such a short period of time. There's a part of me that thinks that it's not a big deal and maybe my first years here were unnaturally cold and snowy for the area, so what I'm seeing now is simply the other side of the mean, but then there's another part of me that feels like that's simply a comforting lie I can tell myself in the face of the obvious effects of climate change.

      Is there anyone else here that feels like they're missing their winters?

      56 votes
    10. What's a recent queer milestone you've reached?

      Inspired by this amazing post and the subsequent discussion about the need for more queer joy: What's a recent queer milestone you've reached/experienced in your life? It can be something big, but...

      Inspired by this amazing post and the subsequent discussion about the need for more queer joy:

      What's a recent queer milestone you've reached/experienced in your life?

      It can be something big, but it can also be something small but still meaningful. It can be an event (coming out!), a realization (oh so THAT'S who I am!), a feeling (dress go spinny!), a moment (holding hands!), a recognition (they used male pronouns!), or anything else that is distinctly queer and noteworthy.

      Share what it is, what you think about it, and why it's meaningful.

      41 votes