V2EX = way to explore
V2EX 是一个关于分享和探索的地方
现在注册
已注册用户请  登录
V2EX  ›  kidlj  ›  全部回复第 29 页 / 共 56 页
回复总数  1113
1 ... 25  26  27  28  29  30  31  32  33  34 ... 56  
2019-11-13 20:38:59 +08:00
回复了 wsgzao 创建的主题 程序员 Nginx 基础知识从小白到入门
我选 envoy (#站队)
2019-11-11 18:09:41 +08:00
回复了 lidfather 创建的主题 程序员 go 应该怎样炫技?
Go 是一门设计上更符合 Zen of Python 哲学的语言。
2019-11-11 17:58:20 +08:00
回复了 XIVN1987 创建的主题 Visual Studio Code VSCode 的 Go Back 功能好难用啊
Fix: ctrl + o 后退
2019-11-11 17:58:01 +08:00
回复了 XIVN1987 创建的主题 Visual Studio Code VSCode 的 Go Back 功能好难用啊
vim mode:

ctrl + ] Go to definition;
ctrl + ' Peek definition;[custom]
ctrl + . Find all references;[custom]

ctrl+o 前进,ctrl+i 前进
2019-11-07 20:09:29 +08:00
回复了 RobinCheng 创建的主题 Python 在 macOS Catalina 新安装的 Anaconda 打不开
$ ls -ld /Users/RobinCheng

结果贴出来
真是一盘大棋。
2019-11-06 16:23:51 +08:00
回复了 kk545141 创建的主题 计算机 acme.sh 被 Let's Encrypt 抛弃了?
一直没有官方推荐吧,记得我是在 V2EX 看到的推荐 acme.sh 才使用的,而后给作者转过一杯咖啡钱。
谁说不印,看看费德勒 (doge
2019-11-03 21:22:28 +08:00
回复了 dxgfalcongbit 创建的主题 机械键盘 知道自己为什么不喜欢红轴了
我也是一路青轴到茶轴到红轴,最后只留下一把红轴吃灰,日常用 Macbook 键盘。对我来说,机械键盘的键程都太长了,用久了都感觉肉,当然许久不摸一开始上手的感觉还是很美妙的,所以留下了一把。
2019-10-29 19:05:00 +08:00
回复了 doudou1523102 创建的主题 问与答 今天去理发,理发师的话让我 陷入了深思~
要省下理发钱了,你应该高兴
2019-10-28 22:45:54 +08:00
回复了 ABenmao 创建的主题 Windows 实在没辙了,请教如何禁止 Windows10 自动更新
2019-10-26 22:58:45 +08:00
回复了 artoostark 创建的主题 新手求助 不小心注册了一个新帐号,请站长删除这个新帐号
站长这么闲的?!无聊
2019-10-19 20:31:24 +08:00
回复了 ddup 创建的主题 问与答 有多少有人跟我一样开发机 16g 内存不够用啊
VSCode remote 到公司内网服务器的 Docker 上开发,就 Safari 自动缓存关掉的标签页比较占内存,基本上保持在 10G 左右,很流畅。
2019-10-17 17:39:22 +08:00
回复了 upday7 创建的主题 Go 编程语言 Go 到底优势是在哪里?
说一个吧,几年前尝试 Django + Nginx 配置差点疯掉。Go 甚至 Nginx 都不需要扔服务器上就跑了。
2019-10-03 19:01:49 +08:00
回复了 jzl 创建的主题 Go 编程语言 GO 切片问题求教
修正:len(s) 不是 len(a)
2019-10-03 19:00:58 +08:00
回复了 jzl 创建的主题 Go 编程语言 GO 切片问题求教
@c0011

> the index x is in range if 0 <= x < len(a), otherwise it is out of range

ref: https://golang.org/ref/spec#Index_expressions
2019-10-03 19:00:16 +08:00
回复了 jzl 创建的主题 Go 编程语言 GO 切片问题求教
> The indices low and high select which elements of operand a appear in the result. The result has indices starting at 0 and length equal to high - low

> For convenience, any of the indices may be omitted. A missing low index defaults to zero; a missing high index defaults to the length of the sliced operand.

因此 s[3:] == s[3:len(a)] = s[3:3] ✓
s[4:] == s[4:len(a)] == s[4:3] x
2019-10-03 18:42:26 +08:00
回复了 jzl 创建的主题 Go 编程语言 GO 切片问题求教
> For arrays or strings, the indices are in range if 0 <= low <= high <= len(a), otherwise they are out of range. For slices, the upper index bound is the slice capacity cap(a) rather than the length.

ref: https://golang.org/ref/spec#Slice_expressions

原因未知 :)
2019-09-28 14:21:13 +08:00
回复了 xuxu555 创建的主题 分享创造 Golang 需要异步吗
1 ... 25  26  27  28  29  30  31  32  33  34 ... 56  
关于   ·   帮助文档   ·   博客   ·   API   ·   FAQ   ·   实用小工具   ·   1659 人在线   最高记录 6679   ·     Select Language
创意工作者们的社区
World is powered by solitude
VERSION: 3.9.8.5 · 40ms · UTC 16:52 · PVG 00:52 · LAX 08:52 · JFK 11:52
Developed with CodeLauncher
♥ Do have faith in what you're doing.