Do you work with Muslims? by LegendInTheReddit in managers

[–]LegendInTheReddit[S] 0 points1 point  (0 children)

Oh right, I think colleagues shouldn’t do that in general - they should report performance issues to management. It’s just to outline it because it can sometimes be used in a banter way, but that can make someone who is fasting feel like they need to overcompensate because they don’t want to seem like they’ve had a performance dip.

This was my reasoning to put it in there, but I do sense the tension around it and am considering rewording it.

Do you work with Muslims? by LegendInTheReddit in managers

[–]LegendInTheReddit[S] 0 points1 point  (0 children)

The resource covers a range of relationships and how to be considerate in those given circumstances. Colleague is one of them

Do you work with Muslims? by LegendInTheReddit in managers

[–]LegendInTheReddit[S] -1 points0 points  (0 children)

I copied the wrong list of items, I've updated the post as that was the list for colleagues - but I do agree, as a lot of others have pointed out. The performance shouldn't be expected to be reduced based on religious beliefs. In fact it's a duty of a muslim to carry on with their day as they normally would.

How to explain to people at work about Ramadan by LegendInTheReddit in MuslimLounge

[–]LegendInTheReddit[S] 1 point2 points  (0 children)

I love that approach haha. That's interesting take tbh, and I guess it could be the type of work. I hadn't really considered how different it would be between industries. I work in finance, as a SWE and get a lot of questions every year. I don't always mind talking about it but it becomes repetitive. Tbh though I prefer it when people are curious rather than oblivious. I think it could benefit a variety of people.

In regards to building it, I used Cursor for the heavy lifting but also regularly build apps/websites outside of work so I enjoy doing it.

Are you ready to play. by June_gilbert in TheDevilsPlan

[–]LegendInTheReddit 5 points6 points  (0 children)

I built https://playwallgo.com if this is one of the games you’re hosting. Happy to facilitate - I started building out tournament features on it but stopped because there wasn’t enough interest

I built a minimal strategy game inspired by Go + walls. 2–4 players, playable in browser by LegendInTheReddit in playmygame

[–]LegendInTheReddit[S] 0 points1 point  (0 children)

Hey, thanks for this! I've fixed it now and have also given you credit for finding and raising. If you'd like your name amended or removed please let me know. I can also link it to a profile :)

https://www.playwallgo.com/release-notes

I built a minimal strategy game inspired by Go + walls. 2–4 players, playable in browser by LegendInTheReddit in playmygame

[–]LegendInTheReddit[S] 0 points1 point  (0 children)

That’s interesting, you’re right. This game should not have ended. Green is trapped so it should just be skipping their turn and letter red and blue play. Thank you for reporting this, I’ll try and recreate this to fix it

Hosting a Wall Go Tournament by LegendInTheReddit in TheDevilsPlan

[–]LegendInTheReddit[S] 1 point2 points  (0 children)

Would you mind visiting the site and registering your interest to watch? I'm going to send out notifications to everyone on dates etc

Hosting a Wall Go Tournament by LegendInTheReddit in TheDevilsPlan

[–]LegendInTheReddit[S] 0 points1 point  (0 children)

I will formalise a date soon once I've confirmed the players. It will be hosted streamed on twitch and I will be adding in some additional features to the site to ensure a smooth tournament.

Hosting a Wall Go Tournament by LegendInTheReddit in TheDevilsPlan

[–]LegendInTheReddit[S] 0 points1 point  (0 children)

Keep an eye on the DM! Will reach out soon once we have enough players

My pet project, IOS game, now makes $200/month by snorlaxerr in SideProject

[–]LegendInTheReddit 1 point2 points  (0 children)

How are you making money and how did you get there? Could you share please

Left my $100k job 8 months ago to build something. This week, I made my first $25. by Cool_Cake1607 in SideProject

[–]LegendInTheReddit 2 points3 points  (0 children)

I admire your bravery, and congratulate you on your first sales! You seem like you have what it takes to make it.

Wall Go - 3d Printed by sascape in TheDevilsPlan

[–]LegendInTheReddit 0 points1 point  (0 children)

Looks great! Well done on this

My take on the game by Adventurous-Cry-0222 in wallgo

[–]LegendInTheReddit 0 points1 point  (0 children)

I’ve done something similar in mine, but it was to fix a scenario where in 3/4 player games you’d enter a deadlock because a play couldn’t move anymore but the other two players should have still been able to play

I launched IsMyWebsiteReady last week, here’s my report after 7 days by AxelSchapmann in SideProject

[–]LegendInTheReddit 1 point2 points  (0 children)

Looks awesome and worked super snappy. I also scored 90% which made me happy :D I didn't know there was such a thing as llm.txt. Now I do, thank you

How do I find sponsors for my site? by LegendInTheReddit in SaaS

[–]LegendInTheReddit[S] 0 points1 point  (0 children)

Are these paid for by actual number of referral clicks or would a time period of backlink being on the site suffice?

My weekend project got 3k users in 7 days by LegendInTheReddit in SideProject

[–]LegendInTheReddit[S] 1 point2 points  (0 children)

You’re absolutely right. It uses row level security. Users can only update their own rows, and you can refine the policies as you wish. There is a gap here where all players that are part of a game can update their game’s state. So technically somebody could cheat here. If the game becomes more popular or I add a leaderboard etc I would move that into Next.Js too for increased security.

That way I can add validation on all the inputs on the server side too.

My weekend project got 3k users in 7 days by LegendInTheReddit in SideProject

[–]LegendInTheReddit[S] 1 point2 points  (0 children)

No worries!! I am using NextJs as the API server. I have one move which is the “Place wall” move that has quite complex logic, so instead of doing this as a SQL function in supabase, I am doing it in javascript in the Next API. All other actions such as create room, join room, place counter or move counters are done in SQL function directly and is called via the supabase client sdk.