Ricci Flow – AI Web Scraper for Chrome: AI Data Extraction Tool for Web Scraping to CSV, Excel, JSON Comments URL: https://news.ycombinator.com/item?id=47815071 Points: 2 # Comments: 1
Hey y'all, Here's a walkthrough of how I use the 9front distribution of Plan 9 on Windows: https://www.youtube.com/watch?v=IzEa2L_Pgw0 Topics covered: - 9front distribution of Plan 9 running in qemu on Ubuntu inside WSL on Windows 11 - Drawterm running natively on Windows 11 - Running arbitrary commands on Plan 9 from Ubuntu - Mounting a directory from Plan 9 on Ubuntu - Using OpenAI codex LLM with Plan 9 - Editing files on Plan 9 with vscode Comments and suggestions are welcome. Comments URL: https://news.ycombinator.com/item?id=47813252 Points: 2 # Comments: 0
Article URL: https://www.youtube.com/watch?v=Syhgdct_VC4 Comments URL: https://news.ycombinator.com/item?id=47809777 Points: 1 # Comments: 0
1 个帖子 - 1 位参与者 阅读完整话题
之前一直在用iflow的GLM5,无限额度,4月17号算是彻底停止了,模型也都关了,现在用公司的ai有点难用哦 2 个帖子 - 2 位参与者 阅读完整话题
佬们,有没有操作浏览器 flow中生图的脚本啊 1 个帖子 - 1 位参与者 阅读完整话题
Hi HN, I'm a big fan of tmux, so I took a shot at adding what I felt was missing: - OS-native copy/paste and search from any pane - A bit more "UI" than just a status bar and border lines - Persistent remote logins w/o the mental load of tmux-in-tmux - Pane tabs, so any pane slot can serve multiple purposes - Access to my running agents anywhere w/ minimal context switching AFAIK, what I've built occupies a nascent design space: it's not a tmux plugin, and not a traditional terminal app, but an outer overlay layer built around tmux itself. Under the hood it uses tmux control mode, OpenTUI for rendering, libghostty for terminal emulation, and ghostty-opentui for parsing. Basically it adds a new UX layer situated between your emulator and multiplexer, providing a desktop-like environment. With this architecture, one of the first features I built was global agent visibility and response: if an agent in another pane, window, or session needs attention, just hit a key and a floating overlay connected to that agent's PTY appears so you can respond inline. Or, set hot keys to approve, deny, or jump to the pane, without the full terminal interaction. Integrates with Claude Code, Codex, Gemini, and OpenCode. If you configure remote-backed panes (see below), it will monitor your remote agents as well! The OS native search/select feature is called "buffer zoom" and works as follows: (a) runs capture-pane on the current pane, (b) disables mouse reporting, (c) temporarily switches out of alternate screen mode, and (d) populates the primary screen with the captured contents. You are then able to use the usual keyboard shortcuts or mouse to search and/or select without relying on tmux copy mode. Meanwhile, PTY output continues to be processed in the background. Hit any key to exit, which re-enables mouse reporting and returns you to the main application view. Remote-backed panes work like this: (a) user configures an ssh target w/ public key auth, (b) a tmux instance is spawned at that server via an auto-managed background connection, and (c) a synchronized mirror of the local tmux layout is maintained at the remote. With this approach, any local pane can then be converted to a remote one with one click. The idea is to give the user a single combined local+remote workspace without having to manage nested tmux instances. There are some smaller built-ins too: conversation search, layout profiles, pane screenshots, quick terminal, inactive pane dimming, and root-shell tinting. This was fun to build and I'd love to hear your feedback and bug reports. https://hmx.dev https://github.com/honeymux/honeymux Thanks, -Aaron Comments URL: https://news.ycombinator.com/item?id=47799791 Points: 2 # Comments: 0
Early in my career I worked on DataLab, the sister site to USASpending.gov before it got merged into it. I then worked on USASpending a bit. Datalab had more of a "for the people" storytelling vibe to it which I liked a lot more and I feel that spirit got lost when we "merged" into USASpending. I built The Public Tab in response to this feeling. My core idea: The district you are in is a more relatable measure of analysis for federal spending for the average person. You want to know what is going on around you. You can more easily "follow the money" this way. I have a pipeline that runs nightly/weekly with data digest from USASpending, SAM.gov, and some other big players in the space. You can subscribe to changes and get updates daily/weekly on spending in your district. You can map that to lobbying, new contracts that pop up, as well as what your rep is voting on. The client libraries are written in ruby and are open source here: https://github.com/govapi-rb You can also check out the API Docs here: https://thepublictab.com/docs/api It is deemed "beta" for now.. I'd love any feedback and to hear what is cool and what is not. Thanks! Comments URL: https://news.ycombinator.com/item?id=47798958 Points: 1 # Comments: 4
Reinterpretation of SF Signal famous flowchart but as a typeform type form. Find your next fantasy/SF read or share your journey so far with friends. All links to bookshop.org or to storygraph. Feedback appreciated :) Comments URL: https://news.ycombinator.com/item?id=47794003 Points: 2 # Comments: 0
Article URL: https://github.com/Pixedar/MindVisualizer Comments URL: https://news.ycombinator.com/item?id=47790964 Points: 1 # Comments: 0
So there are a ton of tools that let you visualize trajectories in semantic space but I just had the idea to compute the flow field out of these trajectories The story behind it was that I initially analyzed human emotions over time in terms of repeating behavior patterns, and from that I had the idea to generalize it to any data. It’s very experimental alpha at this stage Comments URL: https://news.ycombinator.com/item?id=47780357 Points: 1 # Comments: 0
We open sourced Voiden a few months ago: an offline API tool where API requests live as executable Markdown and are versioned in Git. The goal, when we set out to build Voiden, was simple - to combine the power and flexibility of Obsidian-style files with the simplicity of curl. Instead of static forms, requests are composed with blocks (endpoint, auth, params, body) that you can reuse, override, and stitch together across files (more like functions than requests). Since open sourcing, most of what we have built has come directly from how people actually use it (11K installs). Most of the feedback, requests and contributions were around defining workflows, chaining requests, scripting them, and structuring everything in reusable .void files. - Real scripting, not sandboxes: In most API tools scripting lives in a constrained JS sandbox, an environment that doesn't take advantage of powerful runtimes that might be available locally for a developer. The biggest limitation here is the assumption that the tool should define the runtime. Voiden runs fully locally, so this allows you to just run your scripts with actual runtimes (JS, Python, shell, with support for others being added). - Multiple requests per file (mini workflows): Allowing multiple requests in a single .void file turned out to be surprisingly useful. Instead of scattering related requests, you can group them naturally: an order flow (create - pay - confirm), or a full CRUD cycle in one place. The file effectively becomes an executable flow: run one request, or the entire sequence end-to-end. And since Voiden is executable Markdown, docs and tests are in the same `.void` file that can be organised better, preventing duplication and drift. - Stitch (composable workflows across files): Instead of a single large collection, workflows (“Stitch”) are built from .void files that you can combine across scenarios. You define small flows (auth, setup, CRUD, etc.) and stitch them together into larger workflows, without duplication. This is just the first version of this capability, we still have a lot to do here. - Agents :The file-based, local-first model also works well with agents. Since Voiden has a built-in terminal and uses Markdown, we added “skills” so that Claude and Codex agents can work directly with .void files (using your own subscriptions). We also published an SDK for community plugins, and made improvements to performance, reliability, and DX (keyboard-first), with careful attention to performance given the Electron base Looking for feedback and suggestions. Github : https://github.com/VoidenHQ/voiden Download : https://voiden.md/download Comments URL: https://news.ycombinator.com/item?id=47779554 Points: 2 # Comments: 1
奇了怪,我拉了我小号和我前同事一起用,但是登录都只有170分,难道是因为创建家庭组,我大号用掉只有170所以说加入的都是170,下个月会刷新吗 6 个帖子 - 2 位参与者 阅读完整话题
佬友们有没有feelflow的会员版,有偿求一个 1 个帖子 - 1 位参与者 阅读完整话题
求佬点化,在管理页面可以跑出图片,日志也是对的,用openclaw去调就不行 5 个帖子 - 3 位参与者 阅读完整话题
IT之家 4 月 14 日消息,振华 SUPER FLOWER 现已上线 M507 中塔机箱。这一型号整体采用传统布局和左侧透光设计,右侧板前部 MESH 开孔增强气流, 前方则拥有一块竖置的木纹材质条形装饰板 。 M507 机箱三维 460×216×490 (mm),拥有 7 条扩展槽,兼容 E-ATX 主板。其支持 390mm 长度的显卡、200mm 长度的 ATX 电源、165mm 高的处理器散热器,提供 2 个 3.5 英寸硬盘位、2 个 2.5 英寸硬盘位。 这款机箱前部预装三颗 120mm 风扇(兼容 360 冷排),顶部支持 3× 120mm 风扇并兼容 360 冷排,后方预装一颗 120mm 风扇。前置 I/O 方面提供了 1 个 USB-C、2 个 USB-A 5Gbps、1 个 USB-A 480Mbps。 振华 M507 机箱在中国台湾地区市场的 售价为 1790 新台币 (IT之家注:现汇率约合 385 元人民币)。
前几天还能安装来着,想着给另外一台电脑安装一下结果怎么搜索不到了 1 个帖子 - 1 位参与者 阅读完整话题
I was thinking about something like this for years, few trys before this. Started this repo last year and I think I got something that usable now. Async framework, mix sync/async python functions, compose them into DAGs, run them, schedule them, persist data between steps or let it flow just in memory. GitHub: https://github.com/walnutgeek/lythonic Docs: https://walnutgeek.github.io/lythonic/ PyPI: pip install lythonic It is dataflow. So theoretically you can compose it with pure functions only. Lythonic requires annotations for params and returns to wire up outputs with inputs. All data saved in sqlite as json for now, and it would work for some amount of data ok. You may use it as task flow keeping params and returns empty and maintaining all data outside of the flow. But practically you may do well with some middle ground, just flow metadata thru, enough to make your function calls reproducible and keep some system of records that you can query reliably. Anyway I will stop rambling ... soon. Python 3.11+ MIT License. Minimal dependencies: Pydantic, Pyyaml, Croniter Prepping for v0.1. Looking of feedback. v0.0.14 is out. Claude generated reasonable docs. Sorry, I would not be able to do it better. I am working on Web UI and practical E2E example app as well. Thank you. -Sergey Comments URL: https://news.ycombinator.com/item?id=47757289 Points: 4 # Comments: 0
rt,最近准备用dify做一套workflow,任务是根据提示词调用大模型进行网络搜索生成词条内容,最后存到csv表格里面。有没有大佬给点建议或者分享一下质量比较好的教程呀 3 个帖子 - 3 位参与者 阅读完整话题
Article URL: https://www.no-pm.com/ Comments URL: https://news.ycombinator.com/item?id=47750301 Points: 1 # Comments: 1