New pages

Jump to navigation Jump to search
New pages
Hide registered users | Show bots | Show redirects
  • 02:51, 17 September 2026LM/ComfyUI (hist | edit) ‎[385 bytes]Tacoball (talk | contribs) (Created page with "<syntaxhighlight lang="bash"> git clone https://github.com/comfyanonymous/ComfyUI.git ~/ComfyUI cd ~/ComfyUI python3 -m venv .venv source .venv/bin/activate pip install --upgrade pip wheel </syntaxhighlight>")
  • 01:37, 17 September 2026Useful Commands/Low Level IO (hist | edit) ‎[1,675 bytes]Tacoball (talk | contribs) (Created page with "= File System = {| class="wikitable" ! Purpose || Command |- | list with color and suffix for dir and link | <syntaxhighlight lang="bash">ls -FG</syntaxhighlight> |- | list add hidden files only '''single quote is necessary''' | <syntaxhighlight lang="bash">find . -name '.*'</syntaxhighlight> |- | delete dist directory recursively except README.md and itself. | <syntaxhighlight lang="bash"> find ../../assets/swagger/support ! -path *swagger/support ! -name 'README.md' -d...")
  • 01:32, 17 September 2026Useful Commands/Remote File Access (hist | edit) ‎[846 bytes]Tacoball (talk | contribs) (Created page with "{| class="wikitable" ! Tool || Example |- | Samba (Linux) || <syntaxhighlight lang="bash"> sudo mount -t smbfs {remote} {local} -o \ iocharset=utf8, \ user={user}%{password}, \ uid=`id -u {local user}`, \ gid=`id -u {local group}` </syntaxhighlight> |- | Samba (MacOS) || <syntaxhighlight lang="bash"> mount_smbfs //'{group};{user}':{password}@{remote}/{shared dir} {local dir} smbutil view //Guest@192.168.91.65 smbutil view //'WORKGROUP;Administrator':12345@192...")
  • 01:31, 17 September 2026Useful Commands/Compression (hist | edit) ‎[1,059 bytes]Tacoball (talk | contribs) (Created page with "= Compression = {| class="wikitable" ! Tool || Example |- | zip || <syntaxhighlight lang="bash"> zip -r front-end.zip index.html static/ unzip -l front-end.zip unzip -p front-end.zip index.html </syntaxhighlight> |- | tar || <syntaxhighlight lang="bash"> tar --exclude=".*" -zcvf ~/solr-4.3.0.tgz solr-4.3.0 tar -C /usr/local --exclude '.*' -zcvf tika-1.4-pxx.tgz tika </syntaxhighlight> |- | gzip || <syntaxhighlight lang="bash"> gzip -k taiwan-taco.map gzip -l taiwan-taco...")
  • 03:19, 16 September 2026LM/Gemma 4 (hist | edit) ‎[568 bytes]Tacoball (talk | contribs) (Created page with "== Experiment == <syntaxhighlight lang="bash"> # search hf models ls --search "gemma-4" --apps llama.cpp --expand "downloads,likes,lastModified" --sort downloads --no-truncate --limit 10 # unsloth hf models ls --tree -R -h unsloth/gemma-4-E4B-it-qat-GGUF hf models ls --tree -R -h unsloth/gemma-4-12B-it-qat-GGUF hf download unsloth/gemma-4-E4B-it-qat-GGUF --include "*UD-Q4_K_XL*" --include "*mmproj-BF16*" find ~/.cache/huggingface/hub -name "*gemma-4-E4B-it-qat-GGUF"...")
  • 08:08, 15 September 2026WSL (hist | edit) ‎[386 bytes]Tacoball (talk | contribs) (Created page with "== TODO == <quickmmd name="wsl-todo"> </quickmmd>")
  • 04:06, 9 September 2026Node/fnm (hist | edit) ‎[142 bytes]Tacoball (talk | contribs) (Created page with "<syntaxhighlight lang="bash"> sudo apt install unzip curl -fsSL https://fnm.vercel.app/install | bash </syntaxhighlight>")
  • 03:53, 9 September 2026Node/Nuxt.js (hist | edit) ‎[1,655 bytes]Tacoball (talk | contribs) (Created page with "<syntaxhighlight lang="bash"> npm create nuxt@latest test-nuxt </syntaxhighlight>")
  • 03:47, 9 September 2026Node/axios (hist | edit) ‎[34 bytes]Tacoball (talk | contribs) (Created page with "See https://github.com/axios/axios")
  • 03:46, 9 September 2026Node/pnpm (hist | edit) ‎[69 bytes]Tacoball (talk | contribs) (Created page with " <syntaxhighlight lang="bash"> npm install -g pnpm </syntaxhighlight>")
  • 03:40, 9 September 2026Node/nvm (hist | edit) ‎[154 bytes]Tacoball (talk | contribs) (Created page with "== nvm: nodejs version management == <syntaxhighlight lang="bash"> nvm list nvm list available nvm install lts nvm use 24.18.0 node -v </syntaxhighlight>")
  • 03:39, 9 September 2026Node/mermaid-cli (hist | edit) ‎[221 bytes]Tacoball (talk | contribs) (Created page with "<syntaxhighlight lang="bash"> npm install -g @mermaid-js/mermaid-cli mmdc -V mmdc -i test.mmd mmdc -i test.mmd -o test.svg mmdc -i test.mmd -o test.png mmdc -i test.mmd -o test.pdf mmdc -i test.mmd -o - </syntaxhighlight>")
  • 02:06, 8 September 2026Achsah (hist | edit) ‎[430 bytes]Achsah (talk | contribs) (Created page with "{| class="wikitable" ! 英文 ! 社會 |}")
  • 01:48, 8 September 2026TOEIC (hist | edit) ‎[1,808 bytes]Tacoball (talk | contribs) (Created page with "= 閱讀 = == 學習技巧 == <quickmmd name="study_for_reading"> mindmap root((高效率閱讀<br/>學習技巧)) 廣讀法 Extensive Reading 98% 規則(少查字典) 不逐字翻譯、不硬摳文法 建立外文直覺與閱讀速度 SQ3R 閱讀法 Survey 瀏覽框架 Question 轉化問題 Read 帶目的精讀 Recite 蓋書口頭複述 Review 間隔間斷複習 視線分組 Chunking 意群拆解...")
  • 03:42, 4 September 2026LM/llama.cpp for CUDA (hist | edit) ‎[382 bytes]Tacoball (talk | contribs) (Created page with "== Build == <syntaxhighlight lang="bash"> cmake -B build/cuda -G Ninja \ -DGGML_CUDA=ON \ -DCMAKE_BUILD_TYPE=Release cmake -B build/cuda -G Ninja \ -DGGML_CUDA=ON \ -DGGML_NATIVE=ON \ -DGGML_LTO=ON \ -DCMAKE_BUILD_TYPE=Release \ -DCMAKE_INSTALL_RPATH="\$ORIGIN/../lib" \ -DCMAKE_CXX_FLAGS="-O3 -fp-model=fast=2 -qopenmp" \ -DCMAKE_C_FLAGS="-O3 -fp-model=fast=2 -qopenmp" cmake --build build/cuda cmake --install build/cuda --prefix ~/llama.cpp/cuda </syn...")
  • 03:23, 4 September 2026LM/Install NVIDIA driver (hist | edit) ‎[984 bytes]Tacoball (talk | contribs) (Created page with "== driver == ubuntu-drivers devices == /sys/devices/pci0000:00/0000:00:01.3/0000:05:00.0 == modalias : pci:v000010DEd00002504sv00003842sd00003656bc03sc00i00 vendor : NVIDIA Corporation model : GA106 [GeForce RTX 3060 Lite Hash Rate] driver : nvidia-driver-580 - distro non-free driver : nvidia-driver-610 - distro non-free driver : nvidia-driver-610-open - distro non-free driver : nvidia-driver-580-server - distro non-free driver : nvidia-driver-595-server...")
  • 02:50, 3 September 2026LM/PCIe Trouble Shooting (hist | edit) ‎[8,306 bytes]Tacoball (talk | contribs) (Created page with "{| class="wikitable" ! || |- | | <syntaxhighlight lang="bash"> lspci -tv | sed '/+-03\.0/,$d' </syntaxhighlight> |}")
  • 15:49, 21 August 2026LM/Install nvtop (hist | edit) ‎[248 bytes]Tacoball (talk | contribs) (Created page with "# 1. 安裝 nvtop sudo snap install nvtop # 2. 授權監控 GPU 硬體(風扇、功耗、PCIe 等) sudo snap connect nvtop:hardware-observe # 3. 授權管理與結束 GPU 行程(Kill process 功用) sudo snap connect nvtop:process-control") Tag: Visual edit: Switched
  • 10:08, 21 August 2026LM/.bashrc for B70 (hist | edit) ‎[833 bytes]Tacoball (talk | contribs) (Created page with "<syntaxhighlight lang="bash"> export USE_INTEL_API="oneAPI" # Initialize OpenVINO if -z "$TMUX" && "$USE_INTEL_API" == "OpenVINO" ; then source /opt/intel/openvino_2026/setupvars.sh export GGML_OPENVINO_DEVICE=GPU fi # Initialize oneAPI if -z "$TMUX" && "$USE_INTEL_API" == "oneAPI" ; then source /opt/intel/oneapi/setvars.sh export SYCL_PI_LEVEL_ZERO_USE_IMMEDIATE_COMMANDLISTS=1 export UR_L0_USE_IMMEDIATE_COMMAND_LISTS=1 export ONEAPI_DEVICE_SELECT...")
  • 07:21, 21 August 2026LM/llama.cpp for TurboQuant (hist | edit) ‎[1,091 bytes]Tacoball (talk | contribs) (Created page with "== Download source == <syntaxhighlight lang="bash"> sudo apt install git cmake sudo apt install libssl-dev openssl mkdir -p ~/llama.cpp/src git clone https://github.com/ggerganov/llama.cpp ~/llama.cpp/src git clone https://github.com/TheTom/llama-cpp-turboquant ~/llama.cpp/src-tbq </syntaxhighlight> == List available options == <syntaxhighlight lang="bash"> grep -rn "option(GGML_SYCL" CMakeLists.txt ggml/CMakeLists.txt grep -rn "SYCL" CMakeLists.txt ggml/CMakeLists.t...")
  • 06:29, 21 August 2026Tmux (hist | edit) ‎[1,798 bytes]Tacoball (talk | contribs) (Created page with "== conf == <syntaxhighlight lang="text"> # 開啟滑鼠支援(支援滾輪捲動、點擊選擇視窗與調整 Pane 大小) set -g mouse on # 視窗與 Pane 的編號從 1 開始(鍵盤上 1 比 0 好按許多) set -g base-index 1 setw -g pane-base-index 1 # 增加歷史指令/輸出紀錄行數(預設約 2000 行,改為 10000 行) set -g history-limit 10000 # 啟用 256 色與 True Color 全彩支援(解決 Vim/Neovim 顏色失真問題) set -g def...")
  • 17:37, 16 August 2026LM/Qwen 3.8 27B (hist | edit) ‎[16,290 bytes]Tacoball (talk | contribs) (Created page with "== Experiment == <syntaxhighlight lang="bash"> hf models ls --search "Qwen3.8-27B" --apps llama.cpp --expand "downloads,likes,lastModified" --sort downloads --no-truncate --limit 10 hf models ls --tree -R -h unsloth/Qwen3.8-27B-MTP-GGUF hf models ls --tree -R -h DavidAU/Qwen3.8-27B-Fable-Fusion-711-Uncensored-Heretic-NM-DAU-NEO-MAX-MTP-GGUF hf download unsloth/Qwen3.6-27B-MTP-GGUF --include "*UD-Q4*" hf download unsloth/Qwen3.6-27B-MTP-GGUF --include "*UD-Q5*" hf down...")
  • 10:39, 14 August 2026LM/Devstral Small 2 24B (hist | edit) ‎[6,236 bytes]Tacoball (talk | contribs) (Created page with "== Experiment == <syntaxhighlight lang="bash"> hf models ls --search "Devstral" --apps llama.cpp --expand "downloads,likes,lastModified" --sort downloads --no-truncate --limit 10 hf models ls --tree -R -h unsloth/Devstral-Small-2-24B-Instruct-2512-GGUF hf download unsloth/Devstral-Small-2-24B-Instruct-2512-GGUF --include "*UD-Q4*" hf download unsloth/Devstral-Small-2-24B-Instruct-2512-GGUF --include "*UD-Q5*" hf download unsloth/Devstral-Small-2-24B-Instruct-2512-GGUF...") originally created as "LM/Devstral Small 2"
  • 10:07, 14 August 2026LM/Experience (hist | edit) ‎[405 bytes]Tacoball (talk | contribs) (Created page with "{| class="wikitable" ! Model || loading failed || thinking loop || |- | Ornith-1.0-9B-GGUF || || v |}")
  • 01:34, 14 August 2026LM/vLLM (hist | edit) ‎[3,056 bytes]Tacoball (talk | contribs) (Created page with "https://docs.vllm.ai/en/stable/getting_started/installation/gpu/#requirements")
  • 16:12, 13 August 2026LM/llama.cpp for OpenVINO (hist | edit) ‎[1,367 bytes]Tacoball (talk | contribs) (Created page with "cmake -B build-openvino \ -DGGML_OPENVINO=ON \ -DGGML_OPENVINO_DEVICE=GPU \ -DCMAKE_BUILD_TYPE=Release \ -DCMAKE_INSTALL_RPATH="\$ORIGIN/../lib" . cmake --build build-openvino --parallel cmake --install build-openvino --prefix ~/llama.cpp/openvino")
  • 15:13, 13 August 2026LM/llama.cpp for SYCL (hist | edit) ‎[5,768 bytes]Tacoball (talk | contribs) (Created page with "== Download source == <syntaxhighlight lang="bash"> sudo apt install git cmake sudo apt install libssl-dev openssl mkdir -p ~/llama.cpp/src git clone https://github.com/ggerganov/llama.cpp ~/llama.cpp/src </syntaxhighlight>")
  • 10:35, 13 August 2026LM/Install OpenVINO (hist | edit) ‎[2,421 bytes]Tacoball (talk | contribs) (Created page with "== Install == <syntaxhighlight lang="bash"> sudo mkdir /opt/intel curl -L https://storage.openvinotoolkit.org/repositories/openvino/packages/2026.2.1/linux/openvino_toolkit_ubuntu24_2026.2.1.21919.ede283a88e3_x86_64.tgz --output openvino_2026.2.1.tgz tar -xf openvino_2026.2.1.tgz sudo mv openvino_toolkit_ubuntu24_2026.2.1.21919.ede283a88e3_x86_64 /opt/intel/openvino_2026.2.1 cd /opt/intel/openvino_2026.2.1 sudo -E ./install_dependencies/install_openvino_dependencies.sh...")
  • 10:22, 13 August 2026LM/Install oneAPI (hist | edit) ‎[3,759 bytes]Tacoball (talk | contribs) (Created page with "<syntaxhighlight lang="bash"> # Install required tools sudo apt update sudo apt install -y wget gnupg ca-certificates # Create dir for keyrings sudo mkdir -m 0755 -p /etc/apt/keyrings # Download public key for Intel SW Products, and convert into GPG format. wget -O- https://apt.repos.intel.com/intel-gpg-keys/GPG-PUB-KEY-INTEL-SW-PRODUCTS.PUB \ | gpg --dearmor | sudo tee /etc/apt/keyrings/oneapi-archive-keyring.gpg > /dev/null # Add apt source echo "deb [signed-by=/etc...")
  • 10:10, 13 August 2026LM/Install driver (hist | edit) ‎[1,491 bytes]Tacoball (talk | contribs) (Created page with "<syntaxhighlight lang="bash"> # install ppa (the most important) sudo add-apt-repository -y ppa:kobuk-team/intel-graphics sudo apt update sudo apt install -y intel-opencl-icd libze-intel-gpu1 intel-media-va-driver-non-free clinfo intel-gsc # check again sudo clinfo </syntaxhighlight>")
  • 10:09, 13 August 2026LM/llama-swap (hist | edit) ‎[3,202 bytes]Tacoball (talk | contribs) (Created page with "= Config = = Run = = Install =")
  • 10:00, 13 August 2026LM/SGLang (hist | edit) ‎[2,940 bytes]Tacoball (talk | contribs) (Created page with "= TODO = * https://docs.sglang.io/docs/hardware-platforms/xpu#xpu * https://docs.pytorch.org/docs/2.13/notes/get_start_xpu.html#")
  • 09:09, 13 August 2026LM/hf (hist | edit) ‎[2,262 bytes]Tacoball (talk | contribs) (Created page with "{| class="wikitable" ! Purpose || Command |- | cache management || <syntaxhighlight lang="bash"> hf cache list hf cache rm <model id> hf cache prune </syntaxhighlight> |- | fix WiFi problem || <syntaxhighlight lang="bash"> HF_XET_FIXED_DOWNLOAD_CONCURRENCY=10 hf download "unsloth/Qwen3-Coder-30B-A3B-Instruct-GGUF" --include "*UD-Q4_K_XL*" HF_XET_FIXED_DOWNLOAD_CONCURRENCY=10 hf download "unsloth/Devstral-Small-2-24B-Instruct-2512-GGUF" --include "*UD-Q4_K_XL*" </syntaxhi...") originally created as "LLM/hf"
  • 02:15, 30 July 2026GCP (hist | edit) ‎[157 bytes]Tacoball (talk | contribs) (Created page with "== Important Functions == {| class="wikitable" ! SSH Key | # Menu at top left side 三 # Compute Engine # Settings # Metadata |}")
  • 07:59, 28 July 2026Go/migrate (hist | edit) ‎[1,374 bytes]Tacoball (talk | contribs) (Created page with "== Best practice == === up === === down === === create === == DSN Problem ==")
  • 14:31, 21 July 2026LM/jrswab axe (hist | edit) ‎[4,463 bytes]Tacoball (talk | contribs) (Created page with "== What's that? == Official Site: https://github.com/jrswab/axe == Installation (PowerShell 7) == === Install === <syntaxhighlight lang="bash"> Set config dir first for NAS auto backup. </syntaxhighlight> <syntaxhighlight lang="bash"> go install github.com/jrswab/axe@latest axe config init </syntaxhighlight> === Set VSCode as Editor for axe === Set environment variable '''EDITOR''' as %USERPROFILE%\AppData\Local\Programs\Microsoft VS Code\Code.exe Reopen PowerSh...") originally created as "LLM/jrswab axe"
  • 16:18, 16 July 2026Hardware Issue (hist | edit) ‎[1,300 bytes]Tacoball (talk | contribs) (Created page with "== rtw89 WiFi problem ==")
  • 16:03, 12 July 2026LM/Intel Pro Arc B70/2026-07-13 (hist | edit) ‎[6,730 bytes]Tacoball (talk | contribs) (Created page with "== Install on Ubuntu 26.04 == === Install driver === <syntaxhighlight lang="bash"> # install ppa (the most important) sudo add-apt-repository -y ppa:kobuk-team/intel-graphics sudo apt update sudo apt install -y intel-opencl-icd libze-intel-gpu1 intel-media-va-driver-non-free clinfo intel-gsc # check again sudo clinfo </syntaxhighlight> === Install OpenVINO archive === <syntaxhighlight lang="bash"> sudo mkdir /opt/intel curl -L https://storage.openvinotoolkit.org/rep...") originally created as "LLM/Intel Pro Arc B70/2026-07-13"
  • 13:56, 12 July 2026LM/Intel Pro Arc B70/2026-07-12 (hist | edit) ‎[970 bytes]Tacoball (talk | contribs) (Created page with " # install ppa (the most important) sudo add-apt-repository -y ppa:kobuk-team/intel-graphics sudo apt update sudo apt install -y intel-opencl-icd libze-intel-gpu1 intel-media-va-driver-non-free clinfo intel-gsc") originally created as "LLM/Intel Pro Arc B70/2026-07-12"
  • 03:57, 9 July 2026LM/Ryzen AI 7 350/2026-07-09 (hist | edit) ‎[4,529 bytes]Tacoball (talk | contribs) (Created page with "= Install lemonade from PPA =") originally created as "LLM/Ryzen AI 7 350/2026-07-09"
  • 03:55, 9 July 2026LM/Ryzen AI 7 350 (hist | edit) ‎[85 bytes]Tacoball (talk | contribs) (Created page with "== Lemonade ==") originally created as "LLM/Ryzen AI 7 350"
  • 07:14, 20 June 2026LM/Intel Pro Arc B70/2026-06-20 (hist | edit) ‎[3,489 bytes]Tacoball (talk | contribs) (Created page with "<syntaxhighlight lang="bash"> sudo apy install git </syntaxhighlight>") originally created as "LLM/Intel Pro Arc B70/2026-06-20"
  • 07:00, 20 June 2026LM/Intel Pro Arc B70/2026-06-18 (hist | edit) ‎[6,148 bytes]Tacoball (talk | contribs) (Created page with "== Install Ubuntu 24.04.04 Desktop == <syntaxhighlight lang="bash"> sudo apt update sudo apt install openssh-server </syntaxhighlight> == Check B70 connection == <syntaxhighlight lang="bash"> # Check eGPU connection boltctl list # Check hardware dectection sudo dmesg | grep -i 'xe ' # Check pci devices lspci | grep -i 'vga\|display' # Check card detail (sudo is required) sudo lspci -vvv -s 05:00.0 # Check linux device & owner/group ls -l /dev/dri </syntaxhighlight...") originally created as "LLM/Intel Pro Arc B70/2026-06-18"