hacker1024

Results 105 issues of hacker1024

I have a `User` object, which is deserialized from JSON in an API response: ```dart @JsonSerializable() class User { final String authToken; final String username; final String profilePictureUrl; const User({...

**Is your feature request related to a problem? Please describe.** Consider the following structure for HTTP request information. The request body can potentially be binary data, and is stored as...

enhancement
question

**Is your feature request related to a problem? Please describe.** The API I'm using provides data like so: ```json { "generalData": {} "catInfo" {}, } ``` ```json { "generalData": {}...

enhancement

Here's my caddyfile (I have to use port 443 for other reasons, but this happens on any port): ``` pi:443 { tls off } proxy.website.com:443 { forwardproxy { basicauth username...

unplanned

**Describe the bug** The installer [doesn't show disks that contain the installation environment](https://github.com/elementary/installer/blob/f11c5a66d70021bac9c4d9973f7ea6db7f73c6f0/daemon/Daemon.vala#L58). I copied the contents of the installation ISO to a small partition on my SSD, and booted...

Priority: Wishlist

As far as I'm aware, there's no way to generate trailing commas at the end of constructor/function invocations/declarations. It looks like the emitter is hard-coded to leave them out. It'd...

This feature builds on the changes made in #34 to also perform the conversion of `List` to `List` in the background.

This PR adds a `HighlightBackgroundEnvironment` widget that can be added to the widget tree. `HighlightBackgroundEnvironment` uses a background isolate to perform expensive text processing functionality that `HighlightView` can access through...

At the moment, the HighlightView widget parses text in the build method. This is very inefficient. This PR implements a StatefulWidget instead, caching the parsing results across rebuilts.

As far as I'm aware, there's no way to retrieve files from iOS and Android. The functionality would be useful for things like media players, which need to provide the...