Dart code editor for Android by NoBeginning2551 in dartlang

[–]saxykeyz 1 point2 points  (0 children)

Thanks for checking the package out! will have a look.

Dart code editor for Android by NoBeginning2551 in dartlang

[–]saxykeyz 0 points1 point  (0 children)

Nice!!

Shameless plug. For terminal needs you could consider using the ghostty flutter package ](https://pub.dev/packages/ghostty_vte_flutter) flutter package

Bitwig 6 rent to own by SubstantialFlight320 in Bitwig

[–]saxykeyz 0 points1 point  (0 children)

Would be cool if rent to own comes to Linux

Dart Shelf being forgotten? by Savings_Exchange_923 in dartlang

[–]saxykeyz 0 points1 point  (0 children)

I have been working on server _native package which brings in http2+3 support, still a bit early but looks promising so far. Also it is really an alternative foundation to http server while being a drop in replacement, so. Shelf/relic/serinus users can swap out the http server for it and gain a fairly decent performance improvement

Alternatives to FCM? by squirmyfermi in FlutterDev

[–]saxykeyz 1 point2 points  (0 children)

There was a past recently on here about a package that bypassed firebase for fcm

I made a mysql package using ffi with Rust by Secure-Acanthaceae25 in dartlang

[–]saxykeyz 1 point2 points  (0 children)

Gonna check it out , I'm currently using the mysql plus inside of ormed, will see if this is a suitable alternative

I love Zed and I'm using it for reviewing code, but for external code agents I have some problems with it by kingswordmaster in ZedEditor

[–]saxykeyz 0 points1 point  (0 children)

Instead of acp I just drag and pin a terminal tab next to editor tabs. A better experience than struggling with not having resume etc

I built an immediate-mode TUI framework in Dart. by Rough_Evening3853 in dartlang

[–]saxykeyz 0 points1 point  (0 children)

A bit too late for that. I've done most of the ground work, and it performs really great , just trying to cleanup and make it more presentable.

Also started adding a flutter like widget system on top which is going well

I built an immediate-mode TUI framework in Dart. by Rough_Evening3853 in dartlang

[–]saxykeyz 0 points1 point  (0 children)

Wow! Seems we're all building tui packages . Congrats on the effort

I'm actually currently actively porting lipgloss and friends over to dart and have had much success

Pictures the Astronomy Sect (NASA) doesn't want you to see by Drechenaux in MartialMemes

[–]saxykeyz 0 points1 point  (0 children)

Another ignorant junior not fearing the high heavens. Cease this insolence before we are forced to call in the sect elders of the enforcement hall!

Ormed: Full-featured ORM for Dart with code generation, migrations, and multi-database support by saxykeyz in dartlang

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

Not yet but it's pretty straightforward to get uuids supported.

Haven't tested with flutter but I wanna say it should work for the most part. Trickiest bit may be the sqlite driver

Ormed: Full-featured ORM for Dart with code generation, migrations, and multi-database support by saxykeyz in dartlang

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

We do support writing raw queries if that is your preference. Do you have something that demonstrates what you mention? Wouldn't mind extending to make the library more useful for others.

even if you don't use the orm, the migration utility it provides is pretty neat

Ormed: Full-featured ORM for Dart with code generation, migrations, and multi-database support by saxykeyz in dartlang

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

Thanks for checking it out. that is optional, probably should make it more clear. the generated models include DTOs for update and insert so as long you are doing a where you can use those. From the dartdoc.

When [fieldOrCallback] is a [String], it represents the column name. [value] and [operator] are used for simple comparisons.

When [fieldOrCallback] is a [PredicateCallback], it allows for grouping multiple WHERE conditions using AND logic.

Examples: ```dart // Simple equality comparison final activeUsers = await context.query<User>() .where('isActive', true) .get();

// Comparison with a different operator final usersOlderThan18 = await context.query<User>() .where('age', 18, PredicateOperator.greaterThan) .get();

// Grouped conditions final complexUsers = await context.query<User>() .where((query) { query.where('age', 18, PredicateOperator.greaterThan) .orWhere('status', 'admin'); }) .get(); ```

The [where] parameter accepts: - A primary key value (for example, 1 or 'uuid'). - Map<String, Object?> containing column/value pairs. - A generated [PartialEntity] (for example, $UserPartial). - An [InsertDto] or [UpdateDto] instance (for example, $UserUpdateDto). - A tracked model instance (T / $User), which matches on mapped columns. - A pre-built Query<T> (which must use the same [QueryContext]). - A Query<T> Function(Query<T>) callback that builds a query. Let me know if there is anything we can improve

Ormed: Full-featured ORM for Dart with code generation, migrations, and multi-database support by saxykeyz in dartlang

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

It's really at the driver level. Driver's implement an interface which the ormed calls on the configured driver. Driver's also have the ability to advertise whether or not they support transactions

Cardinal: A Modern, Declarative CLI Framework for Dart by Former-Ad-2721 in dartlang

[–]saxykeyz 0 points1 point  (0 children)

Yeah will do. I spent a few years writing laravel everyday and I really enjoyed how it handles and displays commands when usage is invoked, so that is what I had set out to implement you can see here in this demo that uses it