1. Spaced repetition systems have gotten better (domenic.me)
Spaced repetition systems are a well-known way to efficiently learn material. Recent innovations have applied machine learning to greatly improve their scheduling.
32 篇热帖
Spaced repetition systems are a well-known way to efficiently learn material. Recent innovations have applied machine learning to greatly improve their scheduling.
Create anime and comics with AI
I can answer this one. For some reason, I attract these people into my life. I don't do anything super extraordinary. I am not famous. But I...
The material has 50% more tensile strength than steel with a strength-to-weight ratio that’s ten-times better.
Tutorials and articles of Inigo Quilez on computer graphics, fractals, math, art, demoscene, shaders and more.
directory for Awesome MCP Servers. Contribute to chatmcp/mcpso development by creating an account on GitHub.
Three guys claim that any heavy chunk of matter emits Hawking radiation, even if it's not a black hole: • Michael F. Wondrak, Walter D. van Suijlekom and Heino Falcke, Gravitational pair production and black hole evaporation, Phys. Rev. Lett. 130 (2023), 221502. Now they're getting more publicity by claiming this will make the universe…
Hardtime.nvim 是一个 Neovim 插件,旨在帮助用户打破 Vim 中的坏习惯并掌握更高效的 Vim 动作。它通过限制重复按键、提供动作提示和生成习惯报告来提升编辑效率。
:Hardtime report 命令查看最常见的坏习惯,并提供日志记录。插件鼓励采用以下最佳实践以优化 Vim 使用:
5j、12-)进行屏幕内垂直移动。CTRL-U、CTRL-D 等进行屏幕外垂直移动。w、b、e)进行短距离水平移动。f、t、0、$ 等进行中长距离水平移动。ci{、y5j)。% 和方括号命令跳转括号。init.lua 中设置:require("hardtime").setup()
'showmode' 为 false,或通过状态行插件、调整 'cmdheight' 或使用 nvim-notify 自定义显示。:Hardtime enable 启用:Hardtime disable 禁用:Hardtime toggle 切换状态:Hardtime report。~/.local/state/nvim/hardtime.nvim.log。插件高度可配置,通过 setup() 函数或 opts 表传入配置。主要选项包括:
vim.notify。CONTRIBUTING.md,并列出了贡献者。此插件适用于希望提升 Vim 效率的用户,通过约束和提示培养更好的编辑习惯。
间隔重复记忆系统是一种结合了测试效应和间隔效应的高效记忆工具,旨在帮助用户记忆成千上万个事实,并使“记忆成为一种选择”。它不仅限于死记硬背,也能用于培养概念理解。
系统推广面临多重障碍:
文章回应了针对间隔重复系统的常见质疑:
系统已被应用于各种场景,包括与幼儿一起使用进行早期教育。
Have you ever wished you could write simple CSS to declare a color, and then have the browser figure out whether black or white should be paired with that color?
2021年3月,用户发现自己无法在App Store更新应用,随后Apple Music、日历同步及Handoff功能相继失效。联系Apple Support后,客服未能识别问题根源,仅表示会升级处理。在排查中,用户发现自己的Apple Card也被拒绝使用。
根本原因:
用户在1月购买MacBook Pro时获得了旧设备折抵信用额度,但折抵套件未按时送达。随后Apple直接将该信用额度对应的金额计入Apple Card账单。由于用户此前的银行账户信息变更,导致Apple Card自动扣款失败。根据Apple向用户发送的邮件(尽管内容存在错误,将MacBook误称为iPhone),Apple会在付款逾期后迅速采取行动,包括禁用与订单相关的所有Apple账户,包括App Store、iCloud和Apple ID。
问题与争议:
解决过程:
问题最终通过Goldman Sachs联系到Apple的专门部门(账户重新激活团队),但该团队只能通过邮件联系,处理需要至少3-5个工作日。经过等待,用户的账户最终被重新激活。
此事件揭示了苹果生态系统内,Apple Card与Apple服务账户之间存在一种特殊的、未明确说明的关联,可能导致因付款问题而迅速丧失重要服务的访问权限。
Twenty-two crew members injured, 11 of them critically, with nine in stable condition, Mexican government says
🐝 AI-powered browser assistant ("Cline for web browsing") - parsaghaffari/browserbee
Abstract page for arXiv paper 2407.12034: Understanding Transformers via N-gram Statistics
At least 27 are dead in Missouri in Kentucky after severe weather alerts were delayed overnight because of DOGE cuts.
Jeffrey Yasskin recently pointed out an interesting security bug: The idea is, if you had registered googlelogoligature.net then Chrome on Android (and possibly other Google products) would have displayed it as Google.net, potentially tricking users into thinking they were really interacting with Google. To see how this worked, you can try searching Google for ["googlelogoligature"], and yo
Something that’s painfully understudied is how experts are more efficient than novices while achieving better results.
作者以讽刺语气指出,谷歌通过降低YouTube的推荐相关性和内容质量,实际上帮助用户减少了平台成瘾性。这种"反成瘾"策略虽然可能非有意为之,但客观上减少了用户的使用时间和沉迷程度。最后作者调侃称,谷歌或许正在实践"不作恶"的口号。
Abstract page for arXiv paper 2505.09662: When Large Language Models are More PersuasiveThan Incentivized Humans, and Why
I have a Wacom drawing tablet. I use it to draw cover illustrations for my blog posts, such as this one.
本文介绍了作者如何将OCaml程序编译到TI-84+ CE计算器上运行,包括技术背景、实现方法和相关挑战。
OCaml是一种函数式编程语言,TI-84+ CE计算器内存仅256KB。现有计算器工具链支持C、C++、Rust等语言,但缺少OCaml支持。作者的目标是生成高度可移植、与OCaml构建系统集成良好、且适合有限内存的C代码。
现有解决方案如ocamlcc和OMicroB存在局限。作者选择基于Js_of_ocaml(OCaml转JavaScript工具)开发新的C后端,因其维护良好、支持死代码消除,并被dune构建系统一等支持。
由于多数JavaScript结构可直接映射到C,作者参考Js_of_ocaml后端编写了新的C后端,使用goto语句简化逻辑实现。
为实现可移植性,不直接扫描栈和寄存器,而是将所有局部变量存储在全局栈中。垃圾收集时扫描该栈以识别活跃对象。收集策略为:当内存分配超过上限或超过上次收集后内存的2倍时触发标记-清除算法。
通过OCaml的extern关键字调用自定义C函数,实现了最小标准库和TI-84+ CE专用库(如屏幕绘制)。由于Js_of_ocaml被dune一等支持,生成的C后端也能无缝集成到dune构建系统中,支持LSP和dune build命令。
作者展示了在TI-84+ CE上运行的OCaml 3D旋转立方体示例,并提供了可编译的生成C代码。目前不支持浮点数、异常等特性,示例使用24位寄存器的定点数。项目代码已开源。
该项目证明了将高级函数式语言移植到资源受限设备的可行性,未来可能扩展至更多平台。
多个美国联邦机构已正式终止对哈佛大学的所有资助。能源部、国家科学基金会及国防部等机构于周二发出通知函,指控哈佛未能采取足够措施解决过往问题。能源部在函中明确表示:“哈佛拒绝采取立即、明确和适当的补救行动”。
这些通知通常附有被终止资助的具体明细(未公开),但哈佛已因此修改其对联邦政府的诉讼,指控这些终止决定涵盖了其从这些机构获得的全部资金。
此前,美国国立卫生研究院已从哈佛削减了22亿美元资金,其五月初的信函指出哈佛无法采取任何纠正措施来恢复资金,原因是“在得知该校存在系统性机构失败以解决根深蒂固的反犹太主义和种族歧视问题后,大学拒绝采取适当行动”。此外,政府已告知哈佛其未来将不会获得任何联邦资金。因此,这些行动的实际效果是终止了联邦政府对哈佛大学研究工作的所有支持。
NIH早前的资助削减仍在产生影响。例如,一名研究抗生素耐药性的哈佛研究人员周一收到了终止通知,其项目被以“存在不安全的反犹太行为,表明该机构缺乏对犹太学生安全和福祉的关切”为由终止。