会有猫的

Results 58 comments of 会有猫的

是要改成''的。 如果有下载成功的图片那程序就没什么问题了,可以检查一下网络。

可以使用命令 ``` curl -v 图片网址 ``` 查看一下网络能否访问。

看起来是代理的问题,curl 自动走了环境变量 http_proxy 但 node 是不认这个的,可以了解一下代理工具 ``` https://github.com/rofl0r/proxychains-ng ``` 装好之后类似Mac 上是这样来执行 node,手头没有 Ubuntu 环境但应该差不多。 ``` proxychains4 node down.es6 ```

对不起,太晚才看到。Sorry for being so late. 我还以为这个项目的使用者只有程序员。I am suggesting this project interests only JavaScript programmers before. 1. 安装Node.js install Node.js 2. 注册一个tumblr应用以获取API权限,可以使用假信息。register an application for API privileges at here, not needing...

退出node,在命令行窗口里执行就可以了,因为那几条命令在node里执行的,node命令只是在最后一步用到的。 Sent from my iPhone > On Dec 8, 2018, at 9:30 AM, thl2133 wrote: > > 求助大神,第五个步骤是什么意思啊? > > https://www.tangtr.com/tumblrlikesdownloader.html > 我写了个详细的使用步骤。就是按作者这个流程来的,你参考下。 > > 楼上tangtr大神,我也用了你的教程,依然卡在最后一步,不知道如何运行,复制代码 > npm i >...

这是你的系统没有装git,所以还得先装个git才行。哈,我的错,我又假设大家都是程序员了。 不装也行,git只是用来下载代码的,点这里下载当前版本的代码包即可。

I don't think this would fix #59 as there are no limitation or scale down operations on capacity of `expirationManager.queue` or `expirationManager.map`

```golang func TestMemory(t *testing.T) { c := New[string, int](AsLRU[string, int](lru.WithCapacity(100))) for i := 0; i < 1e7; i++ { c.Set(fmt.Sprint(i), i, WithExpiration(time.Second)) } time.Sleep(time.Second * 2) fmt.Printf("len(c.expManager.queue)=%d\n", len(c.expManager.queue)) fmt.Printf("cap(c.expManager.queue)=%d\n", cap(c.expManager.queue))...