V2EX = way to explore
V2EX 是一个关于分享和探索的地方
现在注册
已注册用户请  登录
V2EX  ›  jinzhe  ›  全部回复第 4 页 / 共 17 页
回复总数  332
1  2  3  4  5  6  7  8  9  10 ... 17  
2019-02-21 00:05:11 +08:00
回复了 Jessepinkman 创建的主题 全球工单系统 李彦宏你觉得非会员的百度盘下载速度能接受吗?
用 aria2 下能有 2mb/s
2019-02-19 15:50:17 +08:00
回复了 547674115 创建的主题 问与答 大佬们喜欢用什么牌子的沐浴露,希望阳刚一点的
用日本花王碧柔
2019-02-15 18:29:11 +08:00
回复了 pinews 创建的主题 设计 请问你们设计 PC 的网站还在照顾哪些分辨率?
我一般考虑
1920=>1600
1440,1366=>1150
1024(ipad) => 960
768 => 手机版本
2019-01-25 17:16:02 +08:00
回复了 jackblack369 创建的主题 程序员 2018 年加班调休统计
一年〇加班
2019-01-25 16:50:30 +08:00
回复了 dawnven 创建的主题 音乐 分享最近循环多次的一首歌
乌龟组合的鸡尾酒爱情
2019-01-23 11:36:07 +08:00
回复了 9684xtpa 创建的主题 全球工单系统 腾讯,你能否再傲娇一点
很久不充钱给腾讯了
2019-01-21 11:13:51 +08:00
回复了 ns2250225 创建的主题 分享创造 搭建了一个复古的终端 BBS,欢迎大家来划水
抱歉,本站使用者帳號總數已達上限,暫時無法註冊新帳號。
2019-01-10 12:32:40 +08:00
回复了 cr4fun 创建的主题 分享创造 举个例子: DAG(有向无环图)的追溯 for 农产品
挺有意思
2019-01-09 14:00:59 +08:00
回复了 ichigo 创建的主题 旅行 三亚归来~感觉是性价比最低的热带海岛……
大街上开三轮车拉客的素质很差的。大东海水质很差不如 15 年前。
2019-01-07 15:02:00 +08:00
回复了 feehey 创建的主题 分享创造 ✍️Hve Notes 一个静态博客写作客户端
体验不是很流畅,在没有配置的情况应该可以在本地生成预览之类的。
2019-01-04 12:18:45 +08:00
回复了 puritania 创建的主题 MacBook Pro 用 2015 Mbp 的同学请进
2013 later 打算再战一年
2018-12-04 00:59:35 +08:00
回复了 jasontse 创建的主题 ACG acfun 复活
A 站一个视频都看不了!!因为需要 flash !!!
2018-12-03 15:35:36 +08:00
回复了 di1012 创建的主题 剧集 古装景甜是真的漂亮啊
看的智商降低 60%
2018-11-19 11:12:51 +08:00
回复了 chaodada 创建的主题 PHP 新来一个同事做 PHP 两年 不会写九九乘法表。。。。
凑个热闹

```js
let line="";
for(let i=1;i<=9;i++){
for(let j=1;j<=i;j++){
line+=`${j}x${i}=${i*j}\t`;
}
line+=`\n`;
}
console.log(line);
```

1x1=1
1x2=2 2x2=4
1x3=3 2x3=6 3x3=9
1x4=4 2x4=8 3x4=12 4x4=16
1x5=5 2x5=10 3x5=15 4x5=20 5x5=25
1x6=6 2x6=12 3x6=18 4x6=24 5x6=30 6x6=36
1x7=7 2x7=14 3x7=21 4x7=28 5x7=35 6x7=42 7x7=49
1x8=8 2x8=16 3x8=24 4x8=32 5x8=40 6x8=48 7x8=56 8x8=64
1x9=9 2x9=18 3x9=27 4x9=36 5x9=45 6x9=54 7x9=63 8x9=72 9x9=81
2018-11-19 11:01:44 +08:00
回复了 ajan 创建的主题 全球工单系统 韵达的开发是不是从“小米”挖来的?
估计后台没时间做
2018-11-15 15:21:53 +08:00
回复了 jkjoke 创建的主题 分享创造 :doge: 焕新颜, V2EX 扁平风自定义 CSS 主题
2018-09-30 18:06:03 +08:00
回复了 hijoker 创建的主题 Go 编程语言 Go 的几大坑
@silov 自己写个辅助函数转一下即可
```go

// Format time.Time struct to string
// MM - month - 01
// M - month - 1, single bit
// DD - day - 02
// D - day 2
// YYYY - year - 2006
// YY - year - 06
// HH - 24 hours - 03
// H - 24 hours - 3
// hh - 12 hours - 03
// h - 12 hours - 3
// mm - minute - 04
// m - minute - 4
// ss - second - 05
// s - second = 5
func FormatDate(format string, t ...time.Time) string {
var datetime time.Time
if len(t) == 0 {
datetime = time.Now()
} else {
datetime = t[0]
}

res := strings.Replace(format, "MM", datetime.Format("01"), -1)
res = strings.Replace(res, "M", datetime.Format("1"), -1)
res = strings.Replace(res, "DD", datetime.Format("02"), -1)
res = strings.Replace(res, "D", datetime.Format("2"), -1)
res = strings.Replace(res, "YYYY", datetime.Format("2006"), -1)
res = strings.Replace(res, "YY", datetime.Format("06"), -1)
res = strings.Replace(res, "HH", fmt.Sprintf("%02d", datetime.Hour()), -1)
res = strings.Replace(res, "H", fmt.Sprintf("%d", datetime.Hour()), -1)
res = strings.Replace(res, "hh", datetime.Format("03"), -1)
res = strings.Replace(res, "h", datetime.Format("3"), -1)
res = strings.Replace(res, "mm", datetime.Format("04"), -1)
res = strings.Replace(res, "m", datetime.Format("4"), -1)
res = strings.Replace(res, "ss", datetime.Format("05"), -1)
res = strings.Replace(res, "s", datetime.Format("5"), -1)
return res
}```
2018-09-20 14:58:57 +08:00
回复了 JR1024 创建的主题 分享创造 买了 http://2bt.cc/ 做个什么网站呢?
爱变态.嘻嘻
2018-09-20 14:56:00 +08:00
回复了 mytry 创建的主题 程序员 JS 常量 0 0 0 0 算 24 点
0x18
1  2  3  4  5  6  7  8  9  10 ... 17  
关于   ·   帮助文档   ·   博客   ·   API   ·   FAQ   ·   我们的愿景   ·   实用小工具   ·   2448 人在线   最高记录 6543   ·     Select Language
创意工作者们的社区
World is powered by solitude
VERSION: 3.9.8.5 · 40ms · UTC 09:05 · PVG 17:05 · LAX 02:05 · JFK 05:05
Developed with CodeLauncher
♥ Do have faith in what you're doing.