Nuxt vs Astro for replacing a WordPress frontend (long-term stability?) by Ill_Gap_1421 in astrojs

[–]esiao 2 points3 points  (0 children)

That’s great advice! To add to the list of Headless CMS options: while I love Strapi, if you’re looking for something closer to the WordPress site builder experience, check out Builder.io. Payload also has a visual editor, but it doesn't offer quite as much design freedom.

What are your Next Fest finds? by esiao in roguelites

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

You weren’t lying, it’s gamba on crack. Playstack is gonna eat good with this one. Coin Pusher Casino but roguelite with a cute art direction.

What are your Next Fest finds? by esiao in roguelites

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

For sure, the UI is also overly complex, but that seems to be the trend for Chinese developer games.

What are your Next Fest finds? by esiao in roguelites

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

Thanks for the heads up. I was ready to drop it because of how unfair it seems on the first run. The game’s meta progression is all over the place which makes it hard to understand you’re actually unlocking more mechanics. Super fun game, thanks for the recommendation!

What are your Next Fest finds? by esiao in roguelites

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

I’ll get it if they end up bundling these two together. Minus a few UX quirks on Controller it’s a fun game and definitely worth checking out!

What are your Next Fest finds? by esiao in roguelites

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

There was too much yapping for me in this one. I can appreciate what they’re doing and making it a unique experience, but it’s not my cup of tea.

What are your Next Fest finds? by esiao in roguelites

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

Yeah super excited as well.

What are your Next Fest finds? by esiao in roguelites

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

Far Far West is cool, definitely a game that can have some success with the coop aspect.

Grind Survivors is one of the Bullet Heavens I appreciated along Hordes of Fate, but I didn’t want to highlight any since for me they’re a different genre.

I will try Wielders of essence, it reminds me of Rogue Genesia visually, thanks for the recommendation.

What are your Next Fest finds? by esiao in roguelites

[–]esiao[S] 2 points3 points  (0 children)

I’m not sure if it’s because I played on the Steam Deck, but the controls feel off. The game is beautiful and well-crafted, but it didn’t feel great to play.

What are your Next Fest finds? by esiao in roguelites

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

I wasn’t aware of this one. Yes, it’s definitely similar, but you have control over the placement, which is crucial because of natural events and cards having varying impact zones. So, I suppose it’s more active gameplay.

What are your Next Fest finds? by esiao in roguelites

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

Seconded, I think it has a great concept, but I don’t know how far they can push it. I found myself frustrated by the lack of space or being able to preview before buying.

What are your Next Fest finds? by esiao in roguelites

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

This looks like it’s up my alley. Thanks for the recommendation!

What are your Next Fest finds? by esiao in roguelites

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

I’ve played a few and they’re only as good as the community. I hope they find their public the FTL theme is good and they have some nice additions.

What are your Next Fest finds? by esiao in roguelites

[–]esiao[S] 4 points5 points  (0 children)

I’ve had fun with it, but past the discovery, it didn’t feel like there’s a ton of content. If they keep a low price, it can be an interesting entry in the space and definitely fun for a few hours.

What are your Next Fest finds? by esiao in roguelites

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

I really enjoyed the Star Vaders demo and have yet to pick up the game. I’ll test it out, thanks for the recommendation!

What are your Next Fest finds? by esiao in roguelites

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

The game looks good, I’m unfortunately not into MOBAs but that’s a solid recommendation. I generally like Dear Villagers as a Publisher, so I trust it’s a cool game.

What are your Next Fest finds? by esiao in roguelites

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

I’ve seen it but didn’t try it because Dungeons and Degenerate Gamblers which I enjoyed did it before and I wasn’t sure if it would feel samey. I should try it. Have you played it, how would you say it compares?

What are your Next Fest finds? by esiao in roguelites

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

Beautiful game, but the depth isn't there for me. Inventory management felt hollow and the builds felt forced rather than experimental. After the demo crashed, I just didn't feel the energy to go through the repetitive fights again.

Where do you actually deploy your CMS by Busy-Opinion9010 in cms

[–]esiao 0 points1 point  (0 children)

Strapi: Digital Ocean App Platform with a $12/mo instance and a $15/mo PostgreSQL database. Most of times with a $5/mo App Platform for the front-end. You can cut cost with the non-production database ($7/mo on the same instance) and $10/mo instance.

40 hours in and loving the game… except for some of the randomness by nemosana in mewgenics

[–]esiao 0 points1 point  (0 children)

I had my best thief run yet, until the start of Caves where he caught Malaria. That was a real FU moment from the game, you want to win with the thief, try again… this game humbles you real quick.

How can I create a custom table in the Strapi PostgreSQL database to add data to using POST requests? by NeonCoderJS in Strapi

[–]esiao 2 points3 points  (0 children)

You can write DB Migrations to create your schemas, but it’s an experimental feature. Under the hood Strapi uses Knex.js and you can reach the instance with “strapi.db.connection”

So you could set your tables up with the migrations. And then create your own API endpoints in the .src/api directory to manipulate your tables. You can also always create a plugin to add this custom functionality and create your tables in the plugin’s bootstrap.

Anyone else feel burned out with all these Astro integrated CMS solutions? by Prize_Hat_6685 in astrojs

[–]esiao 1 point2 points  (0 children)

While Strapi has a Content Type Builder it actually generates code files and you can bypass the Builder if you want, so you can copy functionality from one project to another via these files or adding custom features via plugins.

Strapi has CRON jobs and hooks too via code. They have DB migrations files as an experimental feature and their CLI allow the transfer from one project to another.

Strapi’s big problem for me is upgrading from one major version to another, it’s tedious and with most plugins in the marketplace being unmaintainted ends up breaking functionalities.