标签:dev-tools

带有 dev-tools 标签的公开 Whisper

划选高亮2026-08-02 09:09:18
原文高亮摘录
curl http://localhost:11434/api/chat
Whisper 随想笔记
curl command straight into terminal, love how simple it is.
划选高亮2026-07-27 13:30:47
原文高亮摘录
Updates the state file so that the configuration, real infrastructure, and state match.
Whisper 随想笔记
This is the core magic of Terraform — finally all three in agreement.
划选高亮2026-07-27 13:21:47
原文高亮摘录
Updates the state file so that the configuration, real infrastructure, and state match.
Whisper 随想笔记
Isn't that just saying it syncs everything up? Feels obvious.
划选高亮2026-07-27 10:27:47
原文高亮摘录
A resource is any infrastructure object you want to create and manage with Terraform
Whisper 随想笔记
I remember when I first got this, suddenly my whole AWS account made sense
划选高亮2026-07-27 10:18:47
原文高亮摘录
A resource is any infrastructure object you want to create and manage with Terraform
Whisper 随想笔记
so if my provider doesn't have it, I just can't manage it? that's a limitation maybe
划选高亮2026-07-27 10:09:47
原文高亮摘录
A resource is any infrastructure object you want to create and manage with Terraform
Whisper 随想笔记
pretty much everything in the cloud ends up being a resource, even the tiny stuff
划选高亮2026-07-26 10:18:44
原文高亮摘录
A healthy GraphQL API starts with a well-governed schema.
Whisper 随想笔记
Automated checks sound nice but don't they just slow down every small change?
划选高亮2026-07-26 10:09:44
原文高亮摘录
A healthy GraphQL API starts with a well-governed schema.
Whisper 随想笔记
We learned this the hard way—our schema was chaos before we added reviews.
划选高亮2026-07-24 16:33:34
原文高亮摘录
MongoDB provides the ability to perform write operations in bulk.
Whisper 随想笔记
finally, no more looping through every single insert!
划选高亮2026-07-24 16:11:21
原文高亮摘录
TypeScript can be leveraged for editing code too
Whisper 随想笔记
Yeah, but the real magic is autocomplete catching my typos before I even run it.
划选高亮2026-07-24 13:27:28
原文高亮摘录
arXivLabs is a framework that allows collaborators to develop and share new arXiv features
Whisper 随想笔记
Huh, I always thought arXiv was just a paper dump, had no idea they had a dev platform too.
划选高亮2026-07-24 12:39:54
原文高亮摘录
On a reused HTTP/1.
Whisper 随想笔记
I always use agent:false when I need a clean socket, saves me from weird bugs.
划选高亮2026-07-24 10:04:18
原文高亮摘录
Attention, specify parts of text that the model should pay more attention to
Whisper 随想笔记
Does the Ctrl+Up thing actually work on Mac? I've been doing it manually all this time.
划选高亮2026-07-23 13:30:27
原文高亮摘录
A simple directive consists of the name and parameters
Whisper 随想笔记
Honestly, I just copy-paste configs and hope it works—this clarifies a lot though.
划选高亮2026-07-23 13:26:08
原文高亮摘录
arXivLabs is a framework that allows collaborators to develop and share new arXiv features
Whisper 随想笔记
Huh, I thought arXiv was just a paper dump, didn't know they had labs for devs.
划选高亮2026-07-23 10:27:27
原文高亮摘录
nginx has one master process and several worker processes.
Whisper 随想笔记
I remember debugging a config typo once, the master just kept respawning workers lol.
划选高亮2026-07-23 10:18:27
原文高亮摘录
nginx has one master process and several worker processes.
Whisper 随想笔记
Does that mean adding more workers always speeds things up?
划选高亮2026-07-23 10:09:27
原文高亮摘录
nginx has one master process and several worker processes.
Whisper 随想笔记
So it's like a boss and employees model, got it.
划选高亮2026-07-22 16:30:19
原文高亮摘录
arXivLabs is a framework that allows collaborators to develop and share new arXiv features
Whisper 随想笔记
Sounds like a cool sandbox for testing new stuff, but hope they don't break the main site.
划选高亮2026-07-22 16:24:52
原文高亮摘录
Each container should have only one concern.
Whisper 随想笔记
Yeah but that means 5 containers for one simple app sometimes, feels overkill.