Daniel Martí

Results 212 issues of Daniel Martí

The password would be requested the first time it's needed. Without this, starting the service when a user logs in would be kinda annoying. Another option would be for the...

By default, `go test` will skip a significant portion of the tests: ``` --- PASS: TestScripts (0.00s) --- SKIP: TestScripts/login-tfa (0.00s) --- SKIP: TestScripts/dbus (0.00s) --- SKIP: TestScripts/dump (0.00s) ---...

I'm not an expert at security by any means. I know enough to get this working, but I'd like some reviews and feedback before people start using this for their...

help wanted

For example, the only way to supply a two-factor auth token is via the terminal. We should support graphical prompts. This is useful to make usage easier, and to allow...

For example, querying a password by domain, or searching all passwords with a certain username. Domains are a bit tricky, because the other clients have multiple ways to match domains...

Similar to the browser extension. Having to type the full master password whenever one needs to unlock decryption is a bit cumbersome. I assume one way to do this would...

We use GitHub's GraphQL API, which is great for querying 100 repositories at a time while getting the contents of `HEAD:go.mod` at the same time. This is great because it...

I think it should also have two modes: 1) Only download the source for those modules, and nothing else. Useful for very simple analysis, like counting lines of Go code,...

It's quite likely the second most popular code hosting site for Go modules, so we should support it too.

That is, replace these ADB commands: ``` # device info adb shell getprop # install an apk adb install -r foo.apk ``` With their native Android counterparts: ``` getprop pm...