home
首页
login
登录
person_add
注册
home
首页
我
login
Sign in
person_add
Sign up
search
Posts
Comments
Accounts
Sort by: relevance
arrow_drop_down
Relevant
Newest
Oldest
Rei
2023年04月01日 10:57
IDA插件Class Informer的使用
贴代码会对读者友好一些,可以拷贝代码,而且可以被搜索到。
Rei
2023年04月08日 06:29
TypeScript 笔记
这是入门指引的规模啊。😂
duron600
2023年04月08日 09:21
TypeScript 笔记
哈哈,其实还是比较简略,主要用来备忘。
allen
2023年04月10日 07:57
分形之旅
public class SleepDemo { public static void main(String[] args) throws InterruptedException { Process process = new Process(); Thread thread = new Thread(process); thread.setName("线程Process"); thread.start(); for (int i = 0; i < 10; i++) { System.out.println(Thread.currentThread().getName() + "-->" + i); //阻塞main线程,休眠一秒钟 Thread.sleep(1000); } } } QQ图片20220227133448.jpg
Rei
2023年04月10日 09:31
IDEA高效使用指南
将小标题改为 h2 可以在文章旁边显示目录,目录是显示 h2 和 h3。 ## heading
写 bug 的大耳朵图图
2023年04月10日 09:52
IDEA高效使用指南
感谢感谢,我说怎么木有目录了
yanghailong
2023年04月11日 03:27
IDEA高效使用指南
很实用。不过文章里面的 Edit 应该指的是 Editor 吧?
写 bug 的大耳朵图图
2023年04月11日 06:35
IDEA高效使用指南
是的是的,我改下,感谢指正
写 bug 的大耳朵图图
2023年04月11日 06:36
IDEA高效使用指南
已更正🤗
yanghailong
2023年04月11日 09:24
IDEA高效使用指南
👍🏻
Rei
2023年04月29日 05:05
在 Windows 中配置 nvim 的 Go 语言环境
自从 Atom 停更之后一直没有用得顺手的编辑器,VS Code 总在细节地方踢我一脚,Zed 还不成熟。我都产生回到 Vim 的想法了。🥲
电子芥末
2023年04月29日 13:45
在 Windows 中配置 nvim 的 Go 语言环境
我觉得 vim 很舒服, 现在是 vim 和 vscode 同时用, 逐渐增大 vim 的使用时间.
Rei
2023年05月05日 12:01
在 Rails 中使用 SSE 来实现一个 ChatGPT 应用
赞,我之前用 hotwire 写了个 demo,录了期视频。不过我当时用的 openai 库没有提供 stream 参数,所以没有做 stream 返回。看你文末引用的 gist 已经实现了。
steve lee
2023年05月06日 03:18
用 CSS 控制页面内容对部分用户可见
我感觉这样写CSS太多, 可以用 Rails 6.1 class_names helpers 方法 <%= tag.div class: ["hidden", "display-visible": current_user == post.author || current_user.admin?] do %> <a href="/posts/1/edit">edit</a> <% end %>
Rei
2023年05月06日 03:22
用 CSS 控制页面内容对部分用户可见
逻辑写在片段里就不能用片段缓存了。
NoCode
2023年05月13日 17:45
Centos使用Tomcat安装Jenkins
容器化, docker compose 一键启动
Rei
2023年05月16日 05:19
Rails helpers tips for writing better view
dom_id 我也经常用,符合 turbo stream broadcast 的默认 target。
crabOnSubway
2023年05月18日 06:31
测试新文章发布
测试评论
Rei
2023年05月19日 08:46
用cookies应对DDOS的Sanic中间件
我会这么处理,全站加上 CloudFlare 代理,换源站 IP。攻击流量让 CloudFlare 抗,免费的,代价是大陆区访问速度变慢。
Muspi Merol
2023年05月19日 12:06
用cookies应对DDOS的Sanic中间件
确实,看很多同行都是这么做的。就是加上Cloudflare是不是要改DNS,我这个域名下好多子域名蛮乱的,不太会搞哈哈
查看更多