Mindset Future Chatting with VSCode core developer Lu Peng about AI programming, Vibe Coding, and whether programmers will still exist in the future Writing progra...
对AI辅助编程的思考和摘录
Mindset Future 和 VSCode 核心开发吕鹏聊 AI 编程、Vibe Coding、未来程序员还是否存在 写程序~骑马的人,我们是最后一代骑马的人 DHH: Future of Programming, AI, Ruby on Rails, Productivity...
关于学习
Map https://www.zhihu.com/people/L.M.Sherlock 自主学习 各种领域学习的方法的翻译集合 Facts 约翰·邓洛斯基(John Dunlosky)为首的五位著名心理学家在2013年系统性地评估了十种常见的学习方法,并根据证据的强度将其分为高效、中效和低效三类【pdf】【talk with...
【转载】mock七宗罪
转载者注:原文所在的gitchat现在已经打不开了,虽搜不到任何倒闭的消息,但app已经不存在了,23年后也没任何新闻了。网页地址会重定向到CSDN,但又无法在CSDN上搜索到全文的链接和肖鹏的账户。从互联网归档网站上查看了历史也只能看到前言或者简介。所幸,从一个资料网站上找到有人上传的“格式感人,但内容都保留下来”的pdf版本,付费10元买之,并简单重新排版后备份存档,一些小错误就不...
Latex编写跨页长表格报告的踩坑经历
具体latex项目示例见github仓库ECNU-Thesis-Proposal,下面是一些踩坑的总结。 简单跨页长表格 使用mdframed包适合实现下图可跨页的简单表格样式,且在单元格内依旧像正文一样,方便得调整样式和正常使用 figure,enumerate等功能,不需要额外的调整样式去匹配。这些是普通的表格 tabularx和 跨页表格(longtable、 xltabular)...
MacOS通过QEMU启动openEuler RISC-V
安装qemu 安装依赖: brew install gawk gnu-sed gmp mpfr libmpc isl zlib expat 安装qemu: brew install qemu 下载openEuler的镜像 从网站中选择版本,这里我选择了openEuler-23.09-V1-riscv64(网址) 如果想要桌面系统,记得下载带有xfce的 保证当前目录下有一...
解决MacOS上zsh在git add时tab补全卡住的问题
问题描述 在MacOS上,通过zsh在git仓库中使用git add命令并用tab键补全路径时卡住。 尝试Git tab completion not working in zsh on mac - stackoverflow排名靠前的方法无效。之前使用Warp新的终端工具来绕过这个问题。 解决方案 根据stackoverflow上2024最新的回答,在~/.zshrc中添加: #...
linux-system()函数笔记
linux-system()函数 小结: system执行命令的期间主进程收到的SIGINT和SIGQUIT会被忽略(posix.1规定),原因是posix不希望主进程响应system子进程的SIGINT和SIGQUIT信号 非阻塞版本:popen() Do not use system() from a program with set-user-ID or set-gro...
【论文笔记】Billion-scale similarity search with GPUs
Brief In this paper, Faiss aims to utilize GPUs for similar search find workload by a design of k-selection. It is based on the method of product quantization (PQ) codes, which origin proposal is ...
【论文笔记】Automatic Database Knob Tuning: A Survey
Brief The key idea of automatic knob tuning is that, with the help of machine learning techniques, it is reasonable to collect knob tuning data, leverage these data to train a knob tuning model, a...