dawg

Results 72 issues of dawg

Testing v1.1.1 w/ dmd 2.072.1 on linux x86-64 Running ./__test__ggplotd-gtk__ Random seed: 3850067743 Random seed MCMC: 1709140524 This fails due to some assertion in iota (maybe related to [Issue 6531...

Now that dub-0.9.25 will be compatible with packages used as gitsubmodules, it's time to update the dub config and tag a new release :). https://github.com/D-Programming-Language/dub/pull/735

The O_EVTONLY you're using is O_NOCTTY on FreeBSD. https://github.com/etcimon/libasync/blob/ac77a6c68f5f0c2512858d811cb8c959fbf8de41/source/libasync/internals/kqueue.d#L62 I'd suggest to use O_RDONLY on FreeBSD as a replacement. Most of the constants in this file are available in druntime,...

- document, handle, and throw HTTPStatusException on non-2xx responses in other high-level API functions (download, upload, byLineAsync, byChunkAsync) - similar to how get, post, et.al. work - still downloads/fetches the...

Bug Fix
stalled

- fixes hashicorp/terraform-provider-google#10343 - premium feature If this PR is for Terraform, I acknowledge that I have: - [x] Searched through the [issue tracker](https://github.com/hashicorp/terraform-provider-google/issues) for an open issue that this...

Not the biggest fan of that myself but apparently aligning comments is one of the remaining issues blocking dfmt adoption for dmd (see https://github.com/D-Programming-Language/dmd/pull/5217 and https://github.com/D-Programming-Language/dmd/pull/5354). The main use case...

enhancement
spacing

The hcloud-cli project uses [`terminal.ReadPassword`](https://github.com/hetznercloud/cli/blob/1e61bc4bb1b589dada63296a95dfbe2292fb3349/cli/context_create.go#L43) from [`golang.org/x/crypto/ssh/terminal`](https://godoc.org/golang.org/x/crypto/ssh/terminal#Terminal.ReadPassword).

Should become the new subcommand for document generation, the current `-b docs` and `-b ddox` methods are hardly configurable. http://forum.dlang.org/thread/[email protected]#post-tcunkoqxnzcsjzfajjvn:40forum.dlang.org

enhancement

Custom component no longer working with newer streamlit API. ![image](https://user-images.githubusercontent.com/288976/175026706-5ac0f48b-b2ad-4310-b312-add657ec7b51.png) Workaround is to use streamlit's new builtin support to [render html in iframes](https://docs.streamlit.io/library/components/components-api#create-a-static-component). ```py st.components.v1.html(report.to_html(), height=2000, scrolling=True) ```

It seems more sensible if ReadStreamSubscriber only subscribed once it's elementHandler gets set. That way it wouldn't receive elements from hot observable while not being able to write them anywhere....