Oli Scherer

Results 745 comments of Oli Scherer

*rebased *the only "missing" "feature" is that the date of the entry is not displayed behind the title, but rather the normal smuxi timestamps are used *i am already throwing...

i'll have a screenshot for you in a minute

![screenshot from 2014-01-21 12 37 20](https://f.cloud.github.com/assets/332036/1962933/b51d652a-8290-11e3-8d46-47087a58dcb0.png) ![screenshot from 2014-01-21 12 37 17](https://f.cloud.github.com/assets/332036/1962934/b51eacb4-8290-11e3-8b60-0a66e45077db.png)

Yea I don't think this is happening anymore...

I think it's mostly compiler-internal work that is blocking this. I tried it once and it's not super simple to do. Loads of code expects to know that something is...

Layout considerations are completely orthogonal to whether `bool` becomes an `enum` or not. If `bool` keeps not being an enum, this is just a few lines of code in a...

You can always put all the traits into one module and do `use module::*` if all you care about is less typing. Also, advanced enough IDEs (or rustfix) will be...

I opened a new RFC for this: #2242

A c++-lambda-ish macro could do all that boilerplate for us.

I want a green roof on the bikeshed: ``` rust impl Point { pub fn x_mut &'a mut f64 { self.x } } ``` for borrowing multiple fields you'd use...