• Activity
  • Votes
  • Comments
  • New
  • All activity
    1. Users thoughts on groups?

      As of right now of course, users can not create their own groups, however this may change in the future as is stated here. What do the users think about this? Although tildes is similar to reddit,...

      As of right now of course, users can not create their own groups, however this may change in the future as is stated here.

      What do the users think about this? Although tildes is similar to reddit, it's obviously not got the same goals in mind, and I think it makes sense to keep groups up to the admins.

      13 votes
    2. Ephixa - Dreamstate (2018)

      It's difficult to describe how much I adore Ephixa's style ever since he came back to making music. It's mostly future house, with catchy basses and melodies, along with some nostalgic and kinda...

      It's difficult to describe how much I adore Ephixa's style ever since he came back to making music. It's mostly future house, with catchy basses and melodies, along with some nostalgic and kinda trance-y vibes.

      His latest release: Ephixa - Dreamstate

      Other songs like this:

      Ephixa - Skyforth

      • I have great nostalgic memories listening to this in the middle of the night on a road trip across Canada :)

      Ephixa & Laura Brehm - Losing You

      • Laura Brehm is also one of my favourite singers, and I think the vocals work beautifully in this track

      Ephixa & Laura Brehm - Deja Vu

      • 👌

      Ephixa & Bossfight - Subside

      • This song is pretty different from the other ones. It's much heavier, and it has the most addicting bass I've ever heard. Also got me into Bossfight, another great artist
      4 votes
    3. Suggestion: Filter topics by ones I've participated in?

      Probably most appropriate for the "Activity" tab. I would love to be able to click some kind of toggle that only showed topics that I've started and topics that I've commented in. Not sure how...

      Probably most appropriate for the "Activity" tab.

      I would love to be able to click some kind of toggle that only showed topics that I've started and topics that I've commented in. Not sure how taxing this would be on the server, but figured I'd throw it out there for consideration. If it's been suggested before, sorry. No search function yet!

      14 votes
    4. Good open source projects for beginners to contribute to?

      I'm looking for a project to contribute too. I'm not that experienced with programming, so I want something that isn't too complex. I'm also looking for a fairly young project. Big, mature...

      I'm looking for a project to contribute too. I'm not that experienced with programming, so I want something that isn't too complex. I'm also looking for a fairly young project. Big, mature projects don't really have much that a newbie can work on.

      27 votes
    5. At what point is a post too old?

      I wanted to make another post asking about podcast recommendations. I last asked this 3 months ago, is it worth just reviving discussion on that post, or at this point is it better to just make a...

      I wanted to make another post asking about podcast recommendations. I last asked this 3 months ago, is it worth just reviving discussion on that post, or at this point is it better to just make a new post?

      I know Tildes values long-lasting discussion, but when a post is that old, isn't there value in starting over, especially since there are a lot of new people who haven't answered before and might benefit from a bit more visibility on their answers?

      23 votes
    6. What group is most appropriate for talking about game development?

      ~games would seem to be more about gaming rather than development. I can see ~comp being the better option but it seems to be more about programming in general. There's also ~hobbies, which is...

      ~games would seem to be more about gaming rather than development. I can see ~comp being the better option but it seems to be more about programming in general. There's also ~hobbies, which is perhaps the best place when talking about amateur stuff which can include game development, but not necessarily.

      I'm mostly curious to see if there is a community of game developers here

      13 votes
    7. If a campaign gets fully derailed, how should the DM/players handle it?

      In the latest DnD 5e session, we basically invalidated about 10 sessions of prep, due to jumping over a lot of plot points. Should the DM have railroaded us a bit, or was it a good decision to...

      In the latest DnD 5e session, we basically invalidated about 10 sessions of prep, due to jumping over a lot of plot points.

      Should the DM have railroaded us a bit, or was it a good decision to just let us say fuck it, and do what we want?

      21 votes
    8. Which headphones do you recommend below 100€?

      I'm looking into the ATH-M40X, which seems to be the best below 100€, but i would like to know other tilders opinion :) EDIT: preference to over ear and portable (portable is not a key feature...

      I'm looking into the ATH-M40X, which seems to be the best below 100€, but i would like to know other tilders opinion :)

      EDIT: preference to over ear and portable (portable is not a key feature that i'm looking, but it would be nice to be easy to carry around)

      17 votes
    9. Programming Challenge: Two Wizards algorithm challenge

      I'm running out of ideas, if you have any, please make your own programming challenge. This challenge is about designing algorithm to solve this problem. Let's have game field of size x, y (like...

      I'm running out of ideas, if you have any, please make your own programming challenge.


      This challenge is about designing algorithm to solve this problem.

      Let's have game field of size x, y (like in chess). There are two wizards, that are standing at [ 0, 0 ] and are teleporting themselves using spells. The goal is to not be the one who teleports them outside of the map. Each spell teleports wizard by at least +1 tile. Given map size and collection of spells, who wins (they do not make any mistakes)?

      Here are few examples:


      Example 1

      x:4,y:5

      Spells: { 0, 2 }

      Output: false

      Description: Wizard A starts, teleporting both of them to 0, 2. Wizard B teleports them to 0, 4. Wizard A has to teleport them to 0,6, which overflows from the map, so he loses the game. Because starting wizard (wizard A) loses, output is false.

      Example 2

      x:4,y:4

      Spells: { 1,1 }

      Output: true

      Example 3

      x:4,y:5

      Spells: { 1,1 },{ 3,2 },{ 1,4 },{ 0,2 },{ 6,5 },{ 3,1 }

      Output: true

      Example 4

      x:400,y:400

      Spells: {9,2},{15,1},{1,4},{7,20},{3,100},{6,4},{9,0},{7,0},{8,3},{8,44}

      Ouput: true


      Good luck! I'll comment here my solution in about a day.

      Note: This challenge comes from fiks, programming competition by Czech college ČVUT (CTU).

      15 votes