会有猫的

Results 25 issues of 会有猫的

Upload a large video file from Linux server to dropbox account using dbxcli by this command: ``` dbxcli put dir/video.mp4 / ``` After long long time uploading waiting, the command...

It will be more easy to migrate from code like `io.Copy(writer, resp.Body)` to `grab` if `grab` supports new download to an opened writer. ```golang grab.NewRequestToWriter(writer io.Writer, url string) ```

Every shell I meet before have support for ctrl+L to achieve effect of command `clear`, it's kind of surprising for me to find out libTerm has this not supported yet.

现在的客户端其实是网页版的代替,并没有比网页版有太大功能性的区分。以摸鱼人群为目标用户的话,有以下功能会很重要: - [ ] 支持更新消息的推送 - [ ] 支持直播视频和主站视频和弹幕的下载 - [ ] 支持离线视频和弹幕的播放

沿用了 Windows 上的 StrokeIt 的操作,将按住右键点左键的操作设置为 Chrome 新建标签。 ![image](https://user-images.githubusercontent.com/2720676/61611513-8d737b80-ac8e-11e9-8165-891eaf293d0a.png) 但发现按住鼠标右键后立即按左键的操作是会失败的,因为右键需要按个几百毫秒后才会触发事件监听,没办法一口气很顺畅的完成手势:用户需要按住右键后等一会再按左键才能成功。

Hi, Author. function `Translate` is added for doing one time translation

```golang package main import ( "github.com/SlyMarbo/rss" ) func main() { feed, err := rss.Fetch("http://www.ruanyifeng.com/blog/atom.xml") if err != nil { // handle error. } // ... Some time later ... err...

The code in https://github.com/globalsign/mgo/blob/master/server.go makes quite a lot of alloc as it is just 25 millisecond, it is kind of unnecessary resource waste for us since we import mgo mainly...

```golang func main() { fmt.Println(cast.ToInt64("1685517604534.995117")) } ``` result: 0

```golang package main import ( "gopkg.in/h2non/gentleman.v2" ) func main() { var client = gentleman.New() var src chan []byte for dat := range src { rq := client.URL("url").Post().JSON(dat) rq.Do() //.... }...