This file contains 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
$deno --version | |
deno 2.2.1 (stable, release, aarch64-apple-darwin) | |
v8 13.4.114.9-rusty | |
typescript 5.7.3 |
This file contains 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
// ติดตั้ง 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 |
This file contains 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
$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) | |
┃ | |
┃ |
This file contains 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
# 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 |
This file contains 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
$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 |
This file contains 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
import ( | |
"testing" | |
) | |
func BenchmarkOld(b *testing.B) { | |
for n := 0; n < b.N; n++ { | |
try() | |
} | |
} |
This file contains 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
$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) |
This file contains 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
# 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 |
This file contains 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
$docker compose up -d | |
$docker compose ps |
This file contains 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
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); |