Jesse Beder
Jesse Beder
Also add a formatting option formatISODate (in the UI "Format dates as YYYY-MM-DD"); when enabled, formats date chips as YYYY-MM-DD, and when disabled, formats date chips as they're displayed in...
Apple now has a Swift markdown package of its own: https://github.com/apple/swift-markdown It's based on cmark as well. There are two main issues: 1. If an app depends both on that...
As the README notes, it's frowned-upon to overuse mocks. What I'd imagine most people want (at least, what I certainly want) is an in-memory fake instead. In particular, for the...
Steps to reproduce: 1. Environment: - OS 10.15.7 - python version 3.8.5 - beancount 2.3.3 2. Run `bazel build //bin:all` Full output: ``` INFO: Analyzed 30 targets (38 packages loaded,...
The following module: ``` @Module(library = true) class LazyModule { @Provides Foo provideFoo() { return new Foo(); } @Provides Bar provideBar(Lazy foo) { return new Bar(); } @Provides Baz provideBaz(Foo...
- Robotgo version (or commit ref): v0.110.2 - Go version: go1.22.2 darwin/arm64 - Gcc version: Apple clang version 15.0.0 (clang-1500.3.9.4) - Operating system and bit: Mac OS 14.4.1 (23E224) -...
**Is your feature request related to a problem? Please describe.** I have a note with lots of images that I'd like to share via email; I'm using this plugin to...
I'm running a blob of sql line this: ``` if _, err := db.ExecContext(ctx, statement); err != nil { return err } ``` and I'm getting `FOREIGN KEY constraint failed`;...