Mikkel Kjeldsen

Results 32 issues of Mikkel Kjeldsen

Long lines extend beyond the screen. They should wrap. ![screenshot from 2013-12-13 17 48 26](https://f.cloud.github.com/assets/603326/1744080/e4d2eb98-6416-11e3-8a08-06d37a40eee2.jpg)

[Roboto Mono has both bold and italic versions](https://github.com/google/fonts/tree/8827ab6911d4a1788b610dcbce275085df7fd9aa/apache/robotomono) but they're [not included](https://github.com/s9w/font_compare/blob/a561eced2650cb80fc84f9d42a7df54b92bd3598/capture/generate_ahk_input.py#L67-L69) so the comparison only shows the regular version.

`/usr/local/bin/protoc` doesn't have the `others` exec bit set: ```sh root@4b538eeb5779:/# ls -l /usr/local/bin/protoc* -rwxr-x--- 1 root staff 4433736 Dec 21 2017 /usr/local/bin/protoc -rwxrwxr-x 1 root root 3360640 Mar 13 2018...

It's impossible to search for "@" so I hope I didn't miss an old report. This is superficially similar to, but opposite of, #483. `@` is bound as a diff-...

If the value of a `DynamicParameters` is a `ICustomQueryParameter` that implementation's `AddParameter(IDbCommand, string)` implementation will be used. This means that `DynamicParameters` transparently wraps `DbString`; this works: ```csharp var id =...

Define a GitHub Actions CI pipeline that builds for Linux on MSRV, stable, and next, and makes a half-arsed attempt at verifying MSRV on Windows. Because several dependencies rely on...

I need temperature hysteresis for my fan control, because the vendor thought it might be fun to start fans only at stable low-load usage so they could market "our fans...

enhancement

With SQL Server, every helper that sports a `WHERE` predicate, when receiving some key property of type `string`, is liable to incur implicit conversion. `string` gets translated into `nvarchar` but...

Although `dotnet-repl` recognizes tmux as a color capable terminal emulator, history navigation does not work; `dotnet-repl` just spits out the escape sequence. This is true of all tmux terminfo entries...

`Cargo.toml`: ```toml [package] name = "blah" version = "0.1.0" [dependencies] tree_magic="0.2.0" ``` `index.html`: ```html ``` `src/lib.rs`: ```rust extern crate tree_magic; #[cfg(test)] mod tests { use super::*; use std::path::Path; static MIME:...