Yusuke Sasaki

Results 40 issues of Yusuke Sasaki

https://github.com/actix/actix-net

enhancement

```rust trait ResponderExt: Responder { fn status(self, status: StatusCode) -> Status; fn content_type(self, content_type: S) -> ContentType; } impl ResponderExt for T {} ``` Usage ```rust path("posts").and(path::param()).and(body::parse()) .map(|id: u32, body:...

* normalize the path list by using `wslpath`

現状使用可能なホスティングサービスは GitHub, BitBucket および GitLab のみであり,それらへの URL がハードコーディングされている. これでは社内サーバや AWS などに設置されている GH Enterprise や GitLab などを扱うことが出来ないため,追加でホストを設定できる機能を追加する. 例: ```toml # ~/.config/rhq/config.toml [host."my.gitlab.host"] http_address = "133.6.11.2:8888" ssh_address = "133.6.11.2:2222" ``` ```sh $...

enhancement

* user/organization のリポジトリを一括で取得する - ワンライナーで代替可能 * リポジトリの新規作成(`rhq new`) 時に対応するリモートリポジトリを自動的に作成する - トークン保持など手間がかかる割にメリットが少ない… + hook で良かったのでは?

For example: ```command: $ rhq clone ubnt-intrepid/rhq --hook="cargo install --force" ```

enhancement

未コミットのファイルが存在するリポジトリなどを表示できるようにする

- [x] Git - [x] Hg - [ ] Darcs - [ ] Pijul

enhancement

```rust #[derive(Matplotlib)] #[mpl(title="Sine curve", xlabel="Time[sec]", legend="upper right")] struct PlotData { #[mpl(xaxis)] xdata: Vec, #[mpl(yaxis(label="sin(x)"))] ydata1: Vec, #[mpl(yaxis(label="cos(x)"))] ydata2: Vec, } fn main() { let plot_data = PlotData::new(); let fig =...

backlog
feature-request