Kevin Zhang

Results 9 issues of Kevin Zhang

Assuming the firmware is pre-flashed into the chip. I expected it works after I plugin the USB cable to my Mac. But I can see the white LED is light...

make go generate ./templates writing assets_vfsdata.go CGO_ENABLED=0 go build -v -ldflags "-s -w -X `go list ./version`.Version=f05ad83d49faf6ccf305a61c13ce15587047299c" github.com/blocklayerhq/chainkit/builder # github.com/blocklayerhq/chainkit/builder ../../go/pkg/mod/github.com/blocklayerhq/[email protected]/builder/parser.go:92:16: undefined: progressbar.NewOptions ../../go/pkg/mod/github.com/blocklayerhq/[email protected]/builder/parser.go:94:4: undefined: progressbar.OptionSetTheme ../../go/pkg/mod/github.com/blocklayerhq/[email protected]/builder/parser.go:94:31: undefined: progressbar.Theme ../../go/pkg/mod/github.com/blocklayerhq/[email protected]/builder/parser.go:100:4:...

每个登陆用户登陆时候会要求选择 Avatar, 或者随机指定, 或者自行拍照. 可以参考 https://atmospherejs.com/jparker/gravatar 或者其他 Avatar 的 package 用户日后还可以修改. 重新拍照等.

Like 只有登陆用户可以点. 点击以后记录到 Post 里的一个 Likes [] Array 里面. 每个 Like 需要记录 userId 和时间戳. 如果 Like 过, 再点 Like, 就取消 Like. 也就是从数组中取消. 不会重复记录. UI 可以显示出已经 Like 过这个帖子和没有 Like 过的区别 UI...

先做一个最基本的 Share 功能. 点击以后把这个帖子的 URL 显示出来. 可以选择然后粘贴到其他地方. 比如 点击以后显示 http://welog.meteor.com/postView/mGKXSy2yfsEZCtX8e 可以使用 modal dialog 的方式. 参考 Ionic 的 demo 有 Modal dialog.

我们现在的最基本版本的 welog 只有一个 title 加上一个 body. 而且还是纯文字. 这个太原始了. 我的提议是进一步变成包括文字, 图片, 音频和视频的多媒体微信 blog 实现方法是: 1. 原来的 body 变成一个数组 [segments]. 每个元素是一个 Segment 对象 2. 每个 Segment 对象有4种类型(都是从 SementBase 中继承出来的). 文字, 图片, 声音...

我们现在一次 load 全部帖子, 显然没有这个必要. 常见的 load more 需要在我们的 app 中. 第一次 load 20个即可. 然后卷到最下面出现 load more, 点击以后继续 load 下20个. 做法可以参考 Discover Meteor 书中的介绍, 中文版免费读 zh.discovermeteor.com

standard forget password , meteor 标准文档中有. 谁来做?