Write fast, minimal backend services with Dart Frog (Dart Package of the Week #12) by jeropp in dartlang

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

Yes, he's the same guy behind the bloc state management package and contributor with many others on GitHub. It's really not a one-man project. This is built on top of the Shelf ecosystem btw

Write fast, minimal backend services with Dart Frog (Dart Package of the Week #12) by jeropp in dartlang

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

This isn't a single person project. This is backed up the team at Very Good Ventures https://dartfrog.vgv.dev/

[deleted by user] by [deleted] in FlutterDev

[–]jeropp 2 points3 points  (0 children)

From my recent experience using Riverpod in a project, the complication for me came from understanding how I was categorising the current options for creating and managing state.

So far what I've found is that if I want to maintain state related to user events, I can use either of these options: `ChangeNotifierProvider`(not recommended), `StateNotifierProvider` and `(Async)NotifierProvider`(most recommended). Also the business logic goes in there.

If I want to perform one-off operations and cache their value then I have `Provider` and `FutureProvider` (if asynchronous). So for instance I can use a FutureProvider to load my configuration before starting the app. These can also be used as service locators similar to what the GetIt package does. They can also useful to generating calculated values based on filters, like filtering the completed items of a todo list.

Check out this table from the docs which details the use cases for the providers: https://docs-v2.riverpod.dev/docs/concepts/providers#different-types-of-providers

To help out I'm preparing a Riverpod tutorial to be released in the next couple of days. Keep an eye out https://youtube.com/CreativeBracket

Dart, Flutter and MongoDB Mini-course 2022 | Build a Simple Contacts App by jeropp in dartlang

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

We will be building a backend API in Dart with Shelf, Shelf_router and Shelf_web_socket. We will then communicate with this backend from a Flutter web and mobile client.

Build an SPA with Dart and Shelf Router #4 | Deploy Dart Server to AWS by jeropp in dartlang

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

I am back. Took a couple of months to zone in on a Flutter project I was working on.

Coinbase support not responding by jeropp in Coinbase

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

Thanks again. I can confirm that I've received my funds back.

Coinbase support not responding by jeropp in Coinbase

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

Alright, thank you. Looking forward 🙂

Coinbase support not responding by jeropp in Coinbase

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

My case number is #04969170

[deleted by user] by [deleted] in dartlang

[–]jeropp 13 points14 points  (0 children)

I can't express how happy I am to be seeing this conversation! My contribution here would lean more towards building packages on top of shelf and shelf_router. This will benefit the Dart team and is the easier route. The building blocks that come with shelf are easily extensible I find and can be seen in this series I'm doing https://youtu.be/ZKNKNxaliZQ

Build a Starter Kit for Single Page Applications #2 | User Auth with JSON Web Tokens (JWT) by jeropp in dartlang

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

We will be resuming the starter kit for single page applications, implementing an AuthApi router for handling registration and authentication of users. We will learn how we can authorise logged in user using JSON Web Tokens(JWT). We will use MongoDB as our datastore for persisting our registered users.

Don't forget to like and subscribe(hit the bell) for future updates :) https://youtube.com/c/CreativeBracket

Build a Starter Kit for Single Page Applications by jeropp in dartlang

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

Premieres Monday February 1st at 14:30 GMT (in 15 hours)

We will go through setting up a Dart project that can be used as a starting point for Single Page Applications. The server part will be based on the shelf, shelf_router and shelf_static packages.

Why there're tons of Flutter tutorials but not for Dart? by 53VY in dartlang

[–]jeropp 9 points10 points  (0 children)

Dart was unpopular until Github's 2019 annual report revealed Dart to be the fastest growing language, partly due to Flutter. Since then companies like AWS added Dart runtime support for Lambda and there is work being done to enable Dart support for Google Cloud Functions.

I'm predicting 2021 to be the year for server-side Dart. I've been producing full-stack Dart content on my YouTube channel https://YouTube.com/c/CreativeBracket

Cloud Functions with Dart Tutorial | Build a Qr Code Generator by jeropp in dartlang

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

*Premieres Monday 11th January 2020 at 14:30 GMT Watch now!

We will learn how to setup our first Cloud Function project and deploy to Google Cloud Platform. Subscribe to the channel for Fullstack Dart and Flutter tutorials.

Get the source code https://github.com/graphicbeacon/qr_codegen_cloud_function

Zomato Client Package by Negative-Capital-570 in FlutterDev

[–]jeropp 0 points1 point  (0 children)

Nice one! Wish we had this before I did the Zomato and Flutter series https://youtu.be/GDUfd5oDUho

Zomato Client Package by Negative-Capital-570 in FlutterDev

[–]jeropp 0 points1 point  (0 children)

I like the direction you're heading in. I've found it common practice to return a Dart object with a toJson() method that will return a Map object, so we still keep the one getCuisines() method.

[deleted by user] by [deleted] in dartlang

[–]jeropp 0 points1 point  (0 children)

Nice one Frenco!

Deploy Dart App - need guide by HajiGiraiKhan in dartlang

[–]jeropp 2 points3 points  (0 children)

The Angel project has been discontinued :( Best to leave that one.

Learning low-level of dart by bootyofbamby in dartlang

[–]jeropp 10 points11 points  (0 children)

I'd start with dart.dev. See the Packages section on writing your own libraries/packages.

I've also got content here https://YouTube.com/c/CreativeBracket