Skip to content

Instantly share code, notes, and snippets.

View dm4's full-sized avatar
4️⃣

dm4 dm4

4️⃣
View GitHub Profile
@dm4
dm4 / zshrc
Created May 3, 2024 17:06
用 fzf 選擇 autojump 的目標 https://blog.dm4.tw/fzf-select-autojump-target
export FZF_COMPLETION_TRIGGER=',,'
_fzf_complete_j() {
_fzf_complete --prompt="autojump> " -- "$@" < <(
j -s | awk -F $'\t' '/^___/{exit} {print $2}' | tac
)
}
_fzf_complete_j_post() {
awk '{printf "\"%s\"", $0}'
}
@dm4
dm4 / pchome.sh
Last active April 30, 2024 17:00
用 fzf 搜尋 PChome 的商品並顯示預覽圖 https://blog.dm4.tw/fzf-search-pchome-products-display-preview-images
function pchome {
echo "在 PChome 24 上搜尋 $* ..."
local tempfile=$(mktemp)
curl -s --get \
--data-urlencode "q=$*" \
--data-urlencode 'sort=sale/dc' \
'https://ecshweb.pchome.com.tw/search/v3.3/all/results' > "$tempfile"
jq -r '.prods[] | "$" + (.price | tostring) + "\t" + .name +
":::" + "https://24h.pchome.com.tw/prod/" + .Id +
":::" + "https://cs-e.ecimg.tw" + .picB' "$tempfile" \
#!/bin/bash
set -e
set -u
for post in _posts/*.md
do
echo "Processing $post"
# Get the filename without the extension
@dm4
dm4 / tool.py
Last active March 21, 2024 14:42
試用 OpenAI 的 Function Calling API https://blog.dm4.tw/2024/03/21/try-gpt-function-calling.html
#!/usr/bin/env python3
import json
import logging
from openai import OpenAI
logging.basicConfig(format="[%(asctime)s] [%(levelname)s] [%(name)s] %(message)s")
logger = logging.getLogger(__name__)
logger.setLevel(logging.INFO)
@dm4
dm4 / cuda.md
Last active October 17, 2023 08:24
Run WasmEdge WASI-NN plugin on AWS EC2 Instance

Setup CUDA on AWS EC2 Instance

This tutorial is based on this AWS tutorial. In this tutorial, we will install Nvidia driver on AWS EC2 instance and compile and run llama.cpp on it.

Create an AWS EC2 instance

Here we use g5.4xlarge instance with Ubuntu 22.04 AMI, which use Nvidia A10G GPU.

Install Nvidia driver

@dm4
dm4 / README.md
Last active August 1, 2023 14:28
Run llama2.c with WasmEdge

Run llama2.c with WasmEdge

Prepare wasi-sdk

export WASI_VERSION=20
export WASI_VERSION_FULL=${WASI_VERSION}.0
wget https://github.com/WebAssembly/wasi-sdk/releases/download/wasi-sdk-${WASI_VERSION}/wasi-sdk-${WASI_VERSION_FULL}-linux.tar.gz
tar xvf wasi-sdk-${WASI_VERSION_FULL}-linux.tar.gz
export WASI_SDK_PATH=`pwd`/wasi-sdk-${WASI_VERSION_FULL}

Keybase proof

I hereby claim:

  • I am dm4 on github.
  • I am dm4 (https://keybase.io/dm4) on keybase.
  • I have a public key ASCCM72rJO6voH23nEOFx6x1I4ktFslobnr1J34reQ7eUwo

To claim this, I am signing this object:

{
"100": "1f4af",
"1234": "1f522",
"interrobang": "2049",
"tm": "2122",
"information_source": "2139",
"left_right_arrow": "2194",
"arrow_up_down": "2195",
"arrow_upper_left": "2196",
"arrow_upper_right": "2197",

Keybase proof

I hereby claim:

  • I am dm4 on github.
  • I am dm4 (https://keybase.io/dm4) on keybase.
  • I have a public key whose fingerprint is 9B7E E5DB ED83 D7F0 50AA 892E FE94 EC2C DFD5 C53E

To claim this, I am signing this object:

@dm4
dm4 / Arch_install.md
Last active August 29, 2015 14:10 — forked from xatier/Arch_install.md