科学上网
先分析一下是哪里慢,服务器响应慢的话优化服务器(算法或缓存),网络慢的话看 CDN 是否生效。
如果确实有很慢的服务器查询无法优化,那么可以考虑用分布加载等方案,这个要看你喜欢怎么做了,不一定要动 Turbolinks,例如可以用 Stimulus 写一个异步加载的 controller(官方例子),在这个 controller 实现 loading 动画。
具体情况具体分析。
噗,用 turbolinks 的网站一般用服务端渲染,没有 SPA 那么长的客户端渲染时间需要加 loading 动画。
硬要加的话,把主体部分设成 display: none
,loading 部分设成可视,然后在 turbolink:load
事件里面把两者显示切换过来。如果加载太快就用 setTimeout
再等几秒。
用 docker 试用官方镜像:
$ docker run -it -v $(pwd):/app -w /app rubylang/ruby:3.0.0-preview1-bionic bash
先试了个 ractor 的 hello world
irb(main):001:1* ractor = Ractor.new do
irb(main):002:1* puts Ractor.recv
irb(main):003:0> end
<internal:ractor>:38: warning: Ractor is experimental, and the behavior may change in future versions of Ruby! Also there are many implementation issues.
=> #<Ractor:#2 (irb):1 blocking>
irb(main):004:0> ractor.send 'hello ractor'
hello ractor
=> #<Ractor:#2 (irb):1 terminated>
要看《Ruby 元编程》,记得是“打开类”一章说到。
顶楼说了两个话题,要分开讨论。
已上传至 bilibili,审核没遇到问题。看来是我混淆了直播规则和视频投稿规则。
https://space.bilibili.com/552654808/channel/detail?cid=147806
上几届没有放赞助商信息,其实是没空做。
不过我看投稿规则里面是允许放商业信息的,我投一个看看。
B 站不允许赞助商展示,沟通不顺畅,目前不打算放 B 站。YouTube 是最可靠的视频存档处。
fork 然后提交 pr,生产环境先切到自己的 fork 版本。
Stimulus 优在和服务端渲染完美配合,无论怎么插入组件只要有 data-controller
属性就会自动绑定,不用关心 js 绑定的时机。
if (data["like"]) {
this.svgTarget.classList.remove("text-gray-300");
this.svgTarget.classList.remove("hover:text-gray-400");
this.svgTarget.classList.add("text-yellow-300");
this.svgTarget.classList.add("hover:text-yellow-400");
} else {
this.svgTarget.classList.remove("text-yellow-300");
this.svgTarget.classList.remove("hover:text-yellow-400");
this.svgTarget.classList.add("text-gray-300");
this.svgTarget.classList.add("hover:text-gray-400");
}
从这里看出来 tailwind 在 js 里面调用很麻烦。如果是 BEM 风格就是
this.svgTarget.classList.toggle("like-icon--active", data["like"])
另外 tailwind 不能解决开发者设计能力的问题,要快速做原型不如用 bootstrap。
不如直接去 HR 部门了解需求。
根本就没必要在 Rails 上加 Grape。
这个我也很迷,用自己账号看是 10 小时,用管理账号看是 2 小时,匿名不登陆看是 10 小时。所以只看见两小时的可以试试浏览器匿名模式。
https://bugs.ruby-lang.org/ 是开放的,不需要大佬,先搜索有没有同类 issus,再阅读提交指引,然后提交特性请求,core team 会回复。
RubyConf China 2020 Gitter 聊天群现已开放 https://gitter.im/rubychina/rubyconfchina2020
将用作会议讨论/提问/抽奖,欢迎加入。
Rails 工具指什么?
6.1 有 minimal 参数:
rails new cool_app --minimal
https://github.com/rails/rails/pull/39282
如果一条条参数敲其实现在也可以去掉不用的组件。
我测试不翻也打不开,它托管在 github pages 上,目前没有计划迁出。
能打开 github 的话可以在这里打包下载整个网站到本地看
python 是 9 楼提的。
进标准库要有取舍,目前来看引入统一的异步调度机制对 Ruby 更重要(在做了)。
python 标准库有红黑树?
用 gem 不好吗?进标准库就说明需要 core team 维护,然而 core team 没那么多时间,现在还一直把一部分标准库迁移到 gem 呢。
docker compose 不需要把 redis 和 postgres 的端口开放,其它 service 可以通过内部网络访问这些服务,主机名就是 service 名。
https://docs.docker.com/compose/networking/
By default Compose sets up a single network for your app. Each container for a service joins the default network and is both reachable by other containers on that network, and discoverable by them at a hostname identical to the container name.
默认安全对用户很重要,不是所有用户都有足够的安全知识。以前我就被 mongodb 的默认配置坑过……
GraphQL?
这是整个 js 执行有问题了吧?打开调试器看 js 是不是报异常,有没有禁用 js?