Chris

Results 24 issues of Chris

Having read the above description in the documentation I assumed I could use prettydiff as a plug-in replacement for the Unix diff in a separate program that expects diff output...

In the first half of [Performance Matters (video)](https://www.youtube.com/watch?v=r-TLSBdHe1A) the speaker talks about how big effects memory layout can have on the results of performance benchmarks. What's worse is that this...

When the default JSON encoder in ASP.NET 3.1 encodes option fields, it does it quite literally. I get: ``` { "case": "Some", "fields": [ "abc123" ] } ``` Since Thoth...

enhancement

### Description I cannot get fsharp-mode to load any project file: the simplest I've tried so far has been the one generated by `dotnet new classlib -lang f#` which also...

When initialising the following `LongHistogram` ``` var measurements = new LongHistogram((long) TimeSpan.FromMinutes(15).TotalMilliseconds, 3); ``` and then in a continuous loop add measurements to it with ``` measurements.RecordValue(actual - expected); ```...

References: WebView deprecation: https://developer.apple.com/documentation/webkit/webview WKWebView documentation: https://developer.apple.com/documentation/webkit/wkwebview I'm unfortunately not well versed enough in OS X APIs to submit a pull request. (The reason this matters to me, besides support...

My shell (ksh93) informs me that ``` $ type -a hist hist is a shell builtin hist is /Library/Frameworks/Python.framework/Versions/3.6/bin/hist hist is an undefined function ``` in other words, if I...

Some servers force gzip compression on their content, which HtmlFetcher does not deal gracefully with because urllib2 assumes non-compressed content. Cheapest/easiest solution would be to check the encoding header on...

Had problems with a site that forced gzip compression, so I suggest this kind of solution. This'd resolve [issue #238](https://github.com/grangier/python-goose/issues/238).

I have an after-make-frame-functions hook that switches new frames to the *scratch* buffer, which broke epresent: it only ever showed an empty presentation! My current workaround is to define advice...