dacapoday's repos on GitHub
TypeScript · 13 watchers
pish
Pi-Integrated Shell — your shell with AI built in
Python · 9 watchers
IDicon
模仿identicon和v2ex默认头像生成脚本,仅使用标准库,生成PNG头像
Go · 3 watchers
marshallable
Make generic data types marshallable
Go · 2 watchers
sendinput
Go wrapper for SendInput (User32.dll) on Windows
Python · 2 watchers
SimpleHTTPwithFileUpload
Similar to http.server, but increase file upload capability | 简易的http文件浏览上传
TypeScript · 2 watchers
status-bar-button
A VSCode plugin that provides programmable buttons for the Status Bar
Python · 0 watchers
256colors
Displays a 256 color swatch for your modern terminal.
JavaScript · 0 watchers
auto-placer
The simple, cooperative, non-committal drawing tool for /r/place and pxls.space.
0 watchers
ChatGPT-Next-Web
A cross-platform ChatGPT/Gemini UI (Web / PWA / Linux / Win / MacOS). 一键拥有你自己的跨平台 ChatGPT/Gemini 应用。
JavaScript · 0 watchers
chrome-music-lab
A collection of experiments for exploring how music works, all built with the Web Audio API.
HTML · 0 watchers
dacapoday.github.io
Python · 0 watchers
dlxlibpy
This is a Python library to solve exact cover problems by implementing Donald E. Knuth's Algorithm X using the Dancing Links technique. - ported from taylorjg/dlxlibjs
Go · 0 watchers
dotpattern
Implement dot matrix pattern effect based on Braille characters
Go · 0 watchers
easyproxy
support http and socks5 proxy
0 watchers
env
A simple and zero-dependencies library to parse environment variables into structs.
0 watchers
fxlogger
fxevent zerolog adoptor for go-uber/fx 1.14.0+
0 watchers
hex-map-wfc
Python · 0 watchers
hn
Browse and query Hacker News via DuckDB — powered by the open-index dataset
Go · 0 watchers
httpproxy
simple wrapper of httputil.ReverseProxy to support CONNECT Method
0 watchers
lark
Lark is a parsing toolkit for Python, built with a focus on ergonomics, performance and modularity.
0 watchers
libgavran
Experimenting with persistence in C
0 watchers
llm-viz
3D Visualization of an GPT-style LLM
0 watchers
manifest
An instant grid-based pinboard for note taking in your browser.
0 watchers
pi-mono
AI agent toolkit: coding agent CLI, unified LLM API, TUI & web UI libraries, Slack bot, vLLM pods
0 watchers
pn0gstr0m
all the pn0gs are to be str0mmed
0 watchers
polyomino-solver
Solves tetromino and/or arbitrary polyomino fitting problems
0 watchers
ProxyPool
An Efficient ProxyPool with Getter, Tester and Server
Python · 0 watchers
Reinforcement_Learning_Blog
This code is written for the blogs
0 watchers
RSSHub
🧡 Everything is RSSible
Go · 0 watchers
smol
Smol libs about encode & decode.
0 watchers
snapdrop
A Progressive Web App for local file sharing
0 watchers
starter-rest-api
Cyclic REST API using dynamo single table storage
JavaScript · 0 watchers
todomvc
Helping you select an MV* framework - Todo apps for Backbone.js, Ember.js, AngularJS, and many more
0 watchers
tonzhon-music
铜钟:在一处聆听所有音乐!
Python · 0 watchers
tutorials
机器学习相关教程
0 watchers
website
Kubernetes website and documentation repo:
0 watchers
wifi-card
📶 Print a QR code for connecting to your WiFi
JavaScript · 0 watchers
zingtouch
A JavaScript touch gesture detection library for the modern web
dacapoday

dacapoday

V2EX member #67392, joined on 2014-07-08 23:55:38 +08:00
Today's activity rank 7475
Per dacapoday's settings, the topics list is hidden
Deals info, including closed deals, is not hidden
dacapoday's recent replies
@dyikai 作者完全不懂 KISS,对各种范式(过程,对象,函数式)都停留在粗浅的概念,还不太能融合贯通. 更别提写的那个搞笑论文,开篇连 agent 真正问题和需求都分析错了. 说好听点是想得多,做得少. 实现上把一个初学者能犯的错误都犯了. 如果只是学生作品,还情有可原,但就这 AI Slop 居然还好意思投流推广. 过去要是人工编码, 早被自己愚蠢的设计累死了, 也就靠 AI 能糊出一个勉强运行的产品.
@dacapoday 一旦限定自己的视野, 一个没有最优解的问题,出现了唯一解.
突然理解"贸易保护主义"了, 一旦限定"国内",就只能矮子中拔将军. 反而只有"烂得出奇"的 dsh 可选.
4 days ago
Replied to a topic by bmpidev2019 程序员 软件工程师最终会消失吗?
核心在于业务是如何在人脑中呈现的,如果不再关注代码本身,又如何指导和感知 产品应如何发展,结果是否符合预期?
我觉得 code 不会消失,虽然不再人工编辑,但作为与机器交流的精确表达,可作为解歧的最终一致,类似宪法原文。实际开发确实转向人人间的沟通,甚至用户驱动开发。工程师则汇总请愿,监控导向,防止异常。
实用, 以前一直靠脑补来实现这种聚焦的.
尝试硬套一下商业模式画布,你处在供应商的位置。客户不掌握,渠道不掌握,需求也无权定义。业务和资源都被人拿捏,随时被怼 bug ,然后借机压价,让出股份,直至免费打工做 demo 。
应该一开始就以了解需求,改进软件使用的名义,直接找客户面谈,哪怕付费咨询。对接真实的市场,想办法和萍萍那些微信好友和群直接链接。
@actors111 状态都在 ctx 里,协程是无状态的,启动后从当前 ctx 恢复。实际上 ctx 的数据结构设计非常重要,agent 一侧的 ctx 不是 api 里那个简单的多轮对话历史。不仅含 cache,model provider 等 api 调用相关的参数,由于上下文窗口的存在,对话被切成多份 ctx ,中间用压缩关联。还有 branch 或 subagent 。后端要持久化,还要支持全文搜索。当然插件的状态也在其中,对于磁盘来说不会是一个简单按行追加的日志文件。这也是一些 agent 软件转向使用 sqlite 来表征。
21 days ago
Replied to a topic by lixintcwdsg 投资 老登真诚给点儿投资建议
反正都是把钱给银行,存款拿利息,买银行股拿分红.这算赌博吗?赌银行不挣钱不分红甚至倒闭?
Aug 28
Replied to a topic by Sunyin 分享发现 星宇股份裁员事件还没完
又是请洋人做主,怎么搞得跟晚清似的.
About   ·   Help   ·   Advertise   ·   Blog   ·   API   ·   FAQ   ·   Privacy   ·   Solana   ·   1012 Online   Highest 6679   ·     Select Language
创意工作者们的社区
World is powered by solitude
VERSION: 3.9.8.5 · 18ms · UTC 22:36 · PVG 06:36 · LAX 15:36 · JFK 18:36
♥ Do have faith in what you're doing.