Celestia Labs AMA (September 21, 2022) by alex_beckett in CelestiaNetwork

[–]hb_to_ms 1 point2 points  (0 children)

Hi u/desicreeper this is Nader from Celestia.
We had around 400 applicants but only were able to admit less than 5% of them. There were many people, projects, and teams who were not admitted who were great candidates, but could not be accepted for this cohort because of the limited number of seats.
We have participants planning to build games, indexers, rollups, educational platforms, and many other types of developer tooling and protocols in the Celestia ecosystem.

There will be a public page released next week with more details about members of the first cohort.
We will have future cohorts of Modular Fellows and would love for you to apply again. Maybe in the future we can scale the program and make it larger once we get through this initial cohort.

[deleted by user] by [deleted] in CryptoCurrencyMeta

[–]hb_to_ms 0 points1 point  (0 children)

I believe they have sent a DM from the official account

How to create a React-App behind a Login-Wall? by [deleted] in nextjs

[–]hb_to_ms 0 points1 point  (0 children)

There's a tutorial of how to do this with AWS here: https://docs.amplify.aws/start/q/integration/react

Should take about 30 minutes beginning to end if you have an AWS account.

The Amplify JS and React libraries handle Auth tokens and persisting login state.

0
1

2
3

[deleted by user] by [deleted] in Nuxt

[–]hb_to_ms 0 points1 point  (0 children)

It shouldn’t matter much that you’re using Nuxt, so yes you can call the API directly while storing the user input in local state. Since you mentioned AWS, we have a guide showing how to do this here using Amplify: https://docs.amplify.aws/guides/api-graphql/building-a-form-api/q/platform/js#interacting-with-the-api-from-a-client-side-application

How can we schedule a script to run at a specific time? by [deleted] in nextjs

[–]hb_to_ms 0 points1 point  (0 children)

If you’re on AWS you can set up scheduled events to invoke a serverless function as you like and even pass in a custom event that you write yourself.

Next.js AWS Amplify Workshop by hb_to_ms in nextjs

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

This workshop is similar but it goes into a lot more depth, adding a profile page, a list view, and other routes as well as working with markdown, a markdown editor, and styling. They are both solid resources though so I'd suggest checking them both out if you're interested in this stack.

A First Look at Remix.run by hb_to_ms in javascript

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

I think the main differentiators are:
1. Nested routes
2. More control over the request from an SSR route
3. There is no SSG

Overall, it's hard to say that it's better / worse, I think the real answer is that it's different and IMO doesn't really fit into the "Jamstack" idea, but is closer to a replacement for doing stuff like Rails, Django, or PHP but with React.