-
The official npm package (
@openai/codex
) ships prebuilt binaries (codex-aarch64-unknown-linux-musl
). -
Android’s Bionic libc rejects them with:
error: "…/codex-aarch64-unknown-linux-musl" has unexpected e_type: 2
-
Result: the CLI doesn’t launch in Termux.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$logFile = "$env:USERPROFILE\stealth_app_monitor.log" | |
$scanTime = Get-Date -Format "yyyy-MM-dd HH:mm:ss" | |
"`n[Scan started: $scanTime]" | Out-File -FilePath $logFile -Append | |
# 1. Scan LocalAppData user programs (per-user installs) | |
$appDirs = Get-ChildItem "$env:LOCALAPPDATA\Programs" -Directory -ErrorAction SilentlyContinue | |
$registeredApps = Get-ItemProperty -Path "HKCU:\Software\Microsoft\Windows\CurrentVersion\Uninstall\*" -ErrorAction SilentlyContinue | Select-Object -ExpandProperty DisplayName | |
foreach ($app in $appDirs) { |
🆕 Product Overview
- Name: ChatGPT Agent
- Type: Local autonomous AI system
- Functionality:
- Executes complex, multi-step tasks using tools
- Can operate over time with internal "reflection" cycles
- Examples:
- Personal: Buy clothes, book travel, choose gifts
Term | Definition |
---|---|
Prompt | The input text or instruction you provide to the model. |
Completion | The generated response from the model. In chat settings, this is usually called a "response". |
Output / Response | Common alternative to "completion", used in most non-technical settings. |
Token | A small unit of text (word fragment, word, or punctuation). Models process text as tokens. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
building_footprint_extraction_methods: | |
- name: geoai.orthogonalize() | |
purpose: Align polygon edges to 90° angles (orthogonal shapes) | |
use_case: Post-processing irregular or noisy building polygons | |
strengths: | |
- Improves realism and map readability | |
- Lightweight | |
limitations: | |
- May distort non-rectangular structures |
Feature | Gemma 3n | Phi-4 | LLaMA 3 (8B) | LLaMA 3 (70B) | Claude 3 Sonnet | Gemma 3 |
---|---|---|---|---|---|---|
License | Open (permissive) | Open (permissive) | Open (Meta research) | Open (Meta research) | Closed / Commercial | Open (permissive) |
Multimodal | ✅ Text, image, audio, video | ❌ Text only | ❌ Text only | ❌ Text only | ✅ Text, image, vision | ✅ Text + image |
Context Window | 128K tokens | 128K toke |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# ============================= | |
# Terminal Editing Cheat Sheet | |
# ============================= | |
# Emacs-style keybindings (default in Bash, Zsh) | |
# ---------------------------------------------- | |
# Cursor Movement | |
Ctrl-A # Beginning of line | |
Ctrl-E # End of line |
Type | Target Type | Cross-Volume | Breaks if Target Deleted | Privileges Needed | Common Use Case |
---|---|---|---|---|---|
Hard Link | File | ❌ No | ❌ No | Standard | Multiple names for same file on same volume |
Symbolic Link | File or Folder | ✅ Yes | ✅ Yes | Admin or Dev Mode¹ | Redirect path, config override, flexible shortcuts |
Mount Point | Entire Volume | ✅ Yes | N/A | Admin or Disk Mgmt | Mount drive into folder (e.g., C:\Games) |
Junction Point | Folder | ❌ No | ✅ Yes | Standard | Folder redirection, legacy compatibility |
NewerOlder