Alexander
Alexander
Something that might be a good addition to this is allowing certain filters to be applied by default, perhaps by allowing: ``` view_filters: - label: "Example label" field: "example_field" pattern:...
That's very true. In principle, this suggestion is about letting users quickly and easily recover from small, anticipated errors: you *probably* don't want to be recovering from an OOM error...
Dart could also take some inspiration from Swift with its [`try?`](https://docs.swift.org/swift-book/documentation/the-swift-programming-language/errorhandling#Converting-Errors-to-Optional-Values) expression, which converts throws into nulls, allowing: ```dart final int example = try? int.parse("123") ?? 0; ```
> I'm fully behind the idea, but it needs workshopping on the keyword (or symbol?) to use for it. May I suggest `default`? ```dart // This may be confusing to...
> Full fledged checked exceptions are hated by many (and loved by many for some reason) I'd wager that the hate for checked exceptions is largely, if not mostly, a...
> With union types ([#83](https://github.com/dart-lang/language/issues/83)) you can write something around the lines of: > > String | FormatException parseIntStrict(String input) {} Those kinds of union types would probably not be...
Just updated my [PistomQueue](https://github.com/Protonull/PistomQueue), which is *almost* what you're asking for here, except it *is* still a standalone queue server, but takes very few resources to run. Since the queue...