Skip to content

Instantly share code, notes, and snippets.

View up1's full-sized avatar

Somkiat Puisungnoen up1

View GitHub Profile
@up1
up1 / 1.txt
Last active February 22, 2025 06:16
DEno 2.2 :: OpenTelemetry
$deno --version
deno 2.2.1 (stable, release, aarch64-apple-darwin)
v8 13.4.114.9-rusty
typescript 5.7.3
@up1
up1 / 1.txt
Last active February 21, 2025 15:29
MongoDB-RAG
// ติดตั้ง cli ของ mongo-rag
$npm install -g mongodb-rag
// สร้าง configuration ของ Mongo-RAG ผ่าน cli
$npx mongodb-rag init
✔ Enter your MongoDB connection string: · mongodb+srv://your_user:your_password@host
✔ Enter the database name: · mongodb-rag
✔ Enter the collection name: · documents
✔ Select an embedding provider: · openai
@up1
up1 / 1.txt
Last active February 18, 2025 16:50
MCP Server with Go
$export ANTHROPIC_API_KEY='your-api-key'
$mcphost --config ./mcp-server.json
2025/02/18 23:50:07 INFO Model loaded provider=anthropic model=claude-3-5-sonnet-latest
2025/02/18 23:50:07 INFO Initializing server... name=mcp-calculator-with-docker
2025/02/18 23:50:09 INFO Server connected name=mcp-calculator-with-docker
2025/02/18 23:50:09 INFO Tools loaded server=mcp-calculator-with-docker count=1
┃ Enter your prompt (Type /help for commands, Ctrl+C to quit)
@up1
up1 / 1.txt
Created February 7, 2025 11:24
GitHub Copilot :: Agent
# Run test failure
➜ go test -v
../go/pkg/mod/github.com/stretchr/[email protected]/assert/assertions.go:20:2: missing go.sum entry for module providing package github.com/davecgh/go-spew/spew (imported by github.com/stretchr/testify/assert); to add:
go get github.com/stretchr/testify/[email protected]
FAIL airflow [setup failed]
# Resolve issue
➜ go mod tidy
go: downloading gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405
@up1
up1 / 1.txt
Last active February 6, 2025 07:11
Playwright + Prometheus + Grafana
$npx playwright test
[2025-02-05 14:09:43.147 +0700] DEBUG: [PumpoEvents] Loading configuration file from resolved config path /workshop-playwright-2025/monitor-test/config.conf
[2025-02-05 14:09:43.147 +0700] INFO: Adding custom label: environment=ppe
[2025-02-05 14:09:43.147 +0700] INFO: Adding custom label: type=end-to-end
[2025-02-05 14:09:43.156 +0700] INFO: Starting the run with 2 tests.
[2025-02-05 14:09:43.407 +0700] INFO: Starting test "has title_chromium_example.spec.ts"
[2025-02-05 14:09:43.407 +0700] INFO: Starting test "get started link_chromium_example.spec.ts"
[2025-02-05 14:09:44.514 +0700] INFO: Test case name: has title_chromium_example.spec.ts job name undefined
[2025-02-05 14:09:44.514 +0700] INFO: Finished test "has title_chromium_example.spec.ts" with result passed
@up1
up1 / 1.go
Last active February 5, 2025 16:01
Go 1.24 rc2
import (
"testing"
)
func BenchmarkOld(b *testing.B) {
for n := 0; n < b.N; n++ {
try()
}
}
@up1
up1 / 1.txt
Last active February 2, 2025 08:22
Demo Standard Schema
$vitest
RERUN src/validate/MyValidator.test.tsx x2
✓ src/validate/MyValidator.test.tsx (3 tests) 3ms
✓ standardValidate with Zod
✓ standardValidate with ValiBot
✓ standardValidate with ArkType
Test Files 1 passed (1)
@up1
up1 / 1.txt
Last active February 1, 2025 15:02
Posting :: API tesing in terminal
# quick install on MacOS/Linux
curl -LsSf https://astral.sh/uv/install.sh | sh
# install Posting (will also quickly install Python 3.12 if needed)
uv tool install --python 3.12 posting
# Use to run script
uv tool install posting --with httpx
# Start
@up1
up1 / 1.txt
Last active January 31, 2025 08:54
MongoDB Atlas local + Docker
$docker compose up -d
$docker compose ps
@up1
up1 / SeleniumWithNetworkInterceptorTest.java
Last active January 30, 2025 08:59
Selenium WebDriver BiDi + Network intercepter
public class SeleniumWithNetworkInterceptorTest {
static WebDriver driver;
@BeforeAll
public static void initial() {
System.setProperty("webdriver.chrome.driver", "path-to-driver");
var options = new ChromeOptions();
// Enable BiDi
options.setCapability("webSocketUrl", true);