Gleb Mazovetskiy

Results 244 comments of Gleb Mazovetskiy

GitHub munged the result, here is the real thing: ![result](http://screencloud.net/img/screenshots/e9f28ec871a5c2a789daddf7fc02a641.png)

No, I ended up using https://github.com/moxiecode/moxie

@huijar Yes, I did, although it was a bit of hassle. Basically moxie exposes identical APIs to the HTML5 ones, but in moxie namespace (e.g. `new moxie.file.FileReader()`), and also provides...

Ah, I see, thanks for replying. I've now reopened all the PRs in @mbroemme repository. Feel free to archive the repository with a big note pointing to mbroemme/libmpq.

email_spec at the moment breaks subdomain routing My fix is this ``` # Working around issue here: https://github.com/bmabey/email-spec/issues/108 def request_uri(link) link && URI::parse(link) end def parse_email_for_anchor_text_link(email, link_text) if textify_images(email.default_part_body) =~...

You can automatically pass and restore the current locale https://gist.github.com/glebm/5725347 ``` ruby # pop and set locale from the args before running module PerformWithLocale def perform(*args) I18n.with_locale(args.pop) do super(*args) end...

@erwincoumans Looks like @madebr did good work here and has a solid understanding of CMake. Any chance you can have a look at this and later the other CMake PR?...

Reading the docs over at https://docs.microsoft.com/en-us/windows/win32/coreaudio/audclnt-streamflags-xxx-constants, it seems that we're supposed to use `IAudioClockAdjustment` with `AUDCLNT_STREAMFLAGS_RATEADJUST`. > The AUDCLNT_STREAMFLAGS_RATEADJUST flag enables an application to get a reference to the [IAudioClockAdjustment](https://docs.microsoft.com/en-us/windows/desktop/api/audioclient/nn-audioclient-iaudioclockadjustment)...

Looks like the issue only occurs with certain audio drivers. One user reported this happening with the RME "Pro" Audio driver but not the default Windows one.

> I think this is a common use-case in any forum/post system that wants automatically embeddable LaTeX formatting This is impossible to do correctly without support from the markup language,...