Jonas Finnemann Jensen

Results 199 issues of Jonas Finnemann Jensen

This adds: * Bash completion * Renames internal functions to be prefixed `_` so they don't show up in `dv` * `dvm use ` will show list of installed versions...

Might it not be nice to offer declaring a `Codec` to convert to/from JSON for `MyType` ```dart import 'package:json_annotation/json_annotation.dart'; part 'example.g.dart'; @JsonCodec() class Person { String name; @JsonKey(name: 'date-of-birth', nullable:...

State: help wanted
Type: enhancement

Starting Dart 2.15 the command `dart pub tokens add` can be used to add authentication for use with 3rd party package repositories. This is documented here: https://github.com/dart-lang/pub/blob/master/doc/repository-spec-v2.md Feel free to...

So playing with attach streams... specifically for `docker exec`, I've found that you can't end the stdin stream... The `HttpDuplex.end()` [implementation](https://github.com/apocas/docker-modem/blob/f5c47890e7f42bd933074299d41481649d1b3641/lib/http_duplex.js#L42-L45) breaks the TCP stream - not just closing this...

needs inspection

We implement json-e in python, js and in some future other languages. These all encoding strings differently. Meaning that string slicing like: `myString[2:]` have to be encoding aware. We can't...

It would be nice if in node there was a sandbox rendering mode. Something like: ```js const jsone = require('json-e'); let result = jsone.render(template, context, { sandboxed: true, timeout: 1500,...

Lang: JS

@Jeffail, this is an opinionated proposal, if you don't like it please close it immediately. There is no reason to do this if there are lots of valid use-cases for...

Instrumenting `store.Fetch` I saw that leaps called `store.Fetch` a lot. Fixing the `flush_period_ms` to 60s helped a lot. I guess if you're using the file system 500ms might be sane...

bug

Looking at the clientside API, it's really hard to: - see why you a join failed not allowde, internal error, or document doesn't exist - It's also impossible to create...

bug

Using `package:grpc` version `3.0.2`, stack trace from `pub.dev` which uses `package:grpc` through `package:appengine`. ``` Error: gRPC Error (code: 14, codeName: UNAVAILABLE, message: Error making call: Null check operator used on...

type-bug