Xcode_some_directories
发表于|更新于|Programming
|浏览量:
1 | /Library/Developer/CoreSimulator/Profiles/Runtimes |
1 | ~/Library/Developer/CoreSimulator/Devices |
1 | ~/Library/Caches/com.apple.dt.Xcode/Downloads |
文章作者: WALL-E-2000
版权声明: 本博客所有文章除特别声明外,均采用 CC BY-NC-SA 4.0 许可协议。转载请注明来源 WALL-E's Blog!
相关推荐

2017-01-19
iOS_symbolyize_crash
1/Applications/Xcode.app/Contents/SharedFrameworks/DVTFoundation.framework/Versions/A/Resources/symbolicatecrash userPhone.crash app.dSYM > dumpedSYM.txt

2016-03-17
连接 iOS 设备不再自动弹出 iPhoto
在 Terminal 中执行: 1defaults -currentHost write com.apple.ImageCapture disableHotPlug -bool true
2020-04-08
VIM survival manuals
Cmd Meaning I insert mode; Esc command mode; o append mode; :shell temp enter shell; Ctrl+z temp enter shell(v2); fg return back to vim; shift + > insert tab; /word search word; n search next; b,w jump word; gg, G jump start, end; 10g go to 10 line; Ctrl + d,u page down, up; v visual mode; y yank(copy); dd cut; p paste; :vsp vertical split tab; :sp horizontal slpit tab; Ctrl + w change focus window; Ctrl + n nerd tree :q! quick not save;...

2026-08-18
Needle 2 技术分析:一个 14 MB 的端侧 Tool Call 引擎
本文基于实测数据,覆盖架构原理、Schema 设计规律、iOS 集成,以及一次把 3 类设备扩到 22 类的完整实验记录。 我最近在做一个 iOS 家电控制 Demo,核心需求是:在手机上、离线、实时响应自然语言指令。用一个大模型的 API 当然能做,但那不是这个 Demo 想探索的东西。 选到 needle2 是因为它把「工具调用」这件事做到了极致的轻量:45M 参数、单一 14 MB 二进制(权重也在里面)、单次会话峰值 RAM 28 MB(官方宣称;后文会给出实测数字)、Apache-2.0 许可。 一、背景needle2 在树莓派 5 上跑 500 tok/s,Apple Vision Pro 上跑 400–1500 tok/s。它不是「小一号的通用 LLM」,而是一个专门为 function call 场景设计的模型。 这篇文章是我在做这个 Demo 过程中积累的分析,从架构原理到踩坑细节,全部基于实测。 二、架构:Simple Attention Network(SAN)needle2 的架构来自 2025 年的一篇论文:arXiv:260...

2025-05-19
Debug with LLDB
First, compile codes with DSYM: 1g++ -g test.cpp -o test then, launch with LLDB Debugger: 1lldb test print codes: 1list(l) numbers set breakpoint: 1breakpoint set --file test.cpp --line 13 enable breakpoint: 1breakpoint enable 1 run program: 1run debug step-in: 1n continue to end: 1c

2016-04-02
How to enable Chrome into immerse mode
沉浸模式是指全屏后,不显示 Tabs;如果你发现 Control + Cmd + F (全屏切换)不生效的话,可以在全屏后再次点击 Shift + Cmd + F 即可。




