Tim Hutt

Results 304 issues of Tim Hutt

If you have a custom `user-config.jam` containing e.g. ``` using msvc : : "C:/Program Files (x86)/Microsoft Visual Studio/2017/Professional/VC/Tools/MSVC/14.16.27023/bin/Hostx64/x64/cl.exe" ; ``` And you try to build Boost with ``` bootstrap b2...

transition

I'm pretty sure the name for Chrome is because it has very minimal [chrome](https://www.pcmag.com/encyclopedia/term/38972/browser-chrome) compared to other browsers at the time. Sounds like the lead designed didn't know what browser...

Adds basic support for multiline docstrings. The rule is basically if a line starts with an alphabetic character then it is joined to the previous line. Fixes #121 Fixes #128

It would be nice if the library contained this function: ``` /// Fallible version of argh::from_env(). pub fn try_from_env() -> std::result::Result { let strings: Vec = std::env::args().collect(); let cmd =...

I wrote the following code. I think it's a reasonable thing to do: ``` struct Opts { /// the target to build. One of: /// /// * clean Clean everything...

This library suffers from exactly the same problem as [this](https://github.com/mitsuhiko/indicatif/issues/53). It doesn't flicker though, [unlike indicatif](https://github.com/mitsuhiko/indicatif/issues/42) so that's good!

I've written a fair bit of code using Rusqlite roughly like this: ``` let mut statement = db.prepare("SELECT foo, bar, baz, qux, tex, pop, huk FROM table")?; statement.query_row(NO_PARAMS, |row| {...

It would be cool if this crate supported some of the [compile time query features that SQLx has](https://github.com/launchbadge/sqlx#compile-time-verification).

I have a [Dip Dap](https://os.mbed.com/components/DIPDAP-LPC11U35/) and I'm trying to use it to program the bootloader of a FRDM-K22F as described [here](https://os.mbed.com/blog/entry/DAPLink-bootloader-updates-with-external/). I have connected the SWD IO, CLK and 3.3V/GND...

With a stepped graph you only get the "post" option shown here (this is from matplotlib): ![image](https://user-images.githubusercontent.com/376842/67934732-5b908000-fbc0-11e9-88bb-1f3fc390b95c.png) It would be nice if Dygraphs supported all of those options.