Results 107 issues of Martin Tournoij

This is similar to Add(), except that you can pass options. Ideally this should just be Add(), but that's not a compatible change, so we're stuck with this until we...

We only have Create, Remove, Rename, Write, and Chmod now, but many watchers support additional events. This has come up a few times: - #24 - Extend, Link, Revoke -...

feature

Example: http://gocover.io/arp242.net/sconfig There is just one file, I guess the `change` event of the dropdown is never called?

It would treat an existing underscore as a "word", so one underscore got transformed in to 3. I run in to this semi-regularly when I copy something like a database...

https://gopkg.in/fsnotify.v1 lists the latest version as "v1.6.0", which is correct, but when using go get: % go get gopkg.in/fsnotify/fsnotify.v1 go: added golang.org/x/sys v0.13.0 go: added gopkg.in/fsnotify/fsnotify.v1 v1.4.7 # I'm not...

I'm not sure where else to report this, but re: https://github.com/madmurphy/libconfini/wiki/An-INI-critique-of-TOML#18-performance This is really a tomlc99 issue, not a TOML issue. The problem is that it allocates memory in 1,000...

I have the following code to remove UTF-16 and UTF-8 BOMs (which really shouldn't be present, but in reality are): if strings.HasPrefix(data, "\xff\xfe") || strings.HasPrefix(data, "\xfe\xff") { // UTF-16 data...

noisy-positive

![cap-2023-10-12T09:01:03](https://github.com/rouge-ruby/rouge/assets/1032692/04a12765-d276-48b8-bdca-1c089e8008fa) Fixes #1636 Fixes #1873

Reading a 5M file takes about 13 seconds. For reference: Python takes about 1.2s for the same file, Go 0.4s, and C++ about 0.25s. So there's a lot to gain!...

These are a few issues I found investigating failing test cases from toml-test, most are fairly simple low-handing fruit. There's still a few others that fail, but this already improves...