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
$bun upgrade | |
Bun v1.3.0 is out! You're on v1.2.4 | |
[6.15s] Upgraded. | |
Welcome to Bun v1.3.0! | |
What's new in Bun v1.3.0: | |
https://bun.sh/blog/release-notes/bun-v1.3.0 |
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
world = "World" | |
template = t"Hello, {world}" | |
print(type(template)) | |
print(list(template)) | |
print(template.strings) | |
print(template.values) | |
print(template.interpolations) | |
# ผลการ run |
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
# 1. ติดตั้งผ่าน Claude Code | |
$npx playwright init-agents --loop=claude | |
Need to install the following packages: | |
[email protected] | |
Ok to proceed? (y) y | |
Writing file: .claude/agents/playwright-test-generator.md | |
Writing file: .claude/agents/playwright-test-healer.md | |
Writing file: .claude/agents/playwright-test-planner.md |
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
CREATE UNLOGGED TABLE cache_data ( | |
id serial PRIMARY KEY, | |
key text UNIQUE NOT NULL, | |
value jsonb, | |
created_at timestamp); | |
CREATE INDEX idx_cache_key ON cache_data (key); |
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
# 1. Initial Project | |
$claude doctor | |
$claude | |
$/init | |
# 2. Create subagent | |
$mkdir -p .claude/agents/backend | |
$vi backend.md |
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
# ตรวจสอบ version | |
SELECT version(); | |
PostgreSQL 18.0 (Debian 18.0-1.pgdg13+3) on aarch64-unknown-linux-gnu, compiled by gcc (Debian 14.2.0-19) 14.2.0, 64-bit | |
# ดูการ config | |
SELECT name, setting, context, short_desc | |
FROM pg_settings | |
WHERE name LIKE 'io_%' |
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
def hasChanges(String path) { | |
return !sh(script: "git diff --name-only HEAD~1 HEAD | grep '${path}' || true", returnStdout: true).trim().isEmpty() | |
} | |
pipeline { | |
agent any | |
stages { | |
stage('Detect changes') { | |
steps { |
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
$npm install -g @github/copilot | |
$copilot | |
┌── ──┐ | |
│ ▄██████▄ │ | |
Welcome to GitHub ▄█▀▀▀▀▀██▀▀▀▀▀█▄ | |
█████┐ █████┐ █████┐ ██┐██┐ █████┐ ██████┐ ▐█ ▐▌ █▌ | |
██┌───┘██┌──██┐██┌─██┐██│██│ ██┌──██┐└─██┌─┘ ▐█▄ ▄██▄ ▄█▌ | |
██│ ██│ ██│█████┌┘██│██│ ██│ ██│ ██│ ▄▄███████▀▀███████▄▄ | |
██│ ██│ ██│██┌──┘ ██│██│ ██│ ██│ ██│ ████ ▄ ▄ ████ | |
└█████┐└█████┌┘██│ ██│██████┐└█████┌┘ ██│ ████ █ █ ████ |
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
# 1. สร้าง project ด้วย Spec-kit เพื่อสร้าง specification ขึ้นมา | |
$uvx --from git+https://github.com/github/spec-kit.git specify init demo-api | |
███████╗██████╗ ███████╗ ██████╗██╗███████╗██╗ ██╗ | |
██╔════╝██╔══██╗██╔════╝██╔════╝██║██╔════╝╚██╗ ██╔╝ | |
███████╗██████╔╝█████╗ ██║ ██║█████╗ ╚████╔╝ | |
╚════██║██╔═══╝ ██╔══╝ ██║ ██║██╔══╝ ╚██╔╝ | |
███████║██║ ███████╗╚██████╗██║██║ ██║ | |
╚══════╝╚═╝ ╚══════╝ ╚═════╝╚═╝╚═╝ ╚═╝ | |
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
# Hybrid search | |
GET rag-langchain/_search | |
{ | |
"retriever": { | |
"rrf": { | |
"retrievers": [ | |
{ | |
"standard": { | |
"query": { | |
"semantic": { |
NewerOlder