Eric Fung

Results 12 issues of Eric Fung

On [Line 32](https://github.com/dlew/android-subscription-leaks/blob/master/app/src/main/java/net/danlew/rxsubscriptions/LeakingActivity.java#L32): ``` 32 // This is a hot Observable that never ends; 33 // thus LeakingActivity can never be reclaimed 34 mSubscription = Observable.interval(1, TimeUnit.SECONDS) 35 .subscribe(new Action1()...

re: https://github.com/Gurpartap/AESCrypt-ObjC/blob/master/NSData%2BCommonCrypto.m#L177 The method name says AES256, but the algorithm identifier uses AES-128. The key being passed in is also the output from SHA-256, so it's a 256-bit key. Mismatches?

It seems to me that the SimpleSectionAdapter should be listening for changes on the wrapped adapter. That is, if the underlying adapter's data changes, then SimpleSectionAdapter should know to update...

I'm trying to set up a brand new Python based project, and have a minimal dev environment right now, just Python 3.8.4 and pip. After adding this to my `requirements.txt`:...

# What Integrate the output of the Click [shell completion](https://click.palletsprojects.com/en/8.1.x/shell-completion/#shell-completion) script into this one. This gives this script completion for commands and parameters, while preserving the previous functionality. Resolves #20...

After installing this completion script, I realized that it doesn't complete subcommands, e.g. I expect `dbt d` to offer `debug deps docs`, or, `dbt run --s` to offer `--select --selector...

The plugin looks for an existing AVD that is specified with `avd_name` via the command-line tool `android list avd`. If that output couldn't be parsed, it deletes the AVD. It...

`ProviderResponse` has an `output` field that is [documented](https://www.promptfoo.dev/docs/configuration/reference/#providerresponse) to be either a string or an object. If it's a string, then the Web UI shows a nice diff between the...

enhancement

In the SQLite database of promptfoo, I can see that evals have a `createdat` timestamp, and this is visible in the Web UI as well. However, when running via the...