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. Install | |
| $go install github.com/tienanr/docurift/cmd/docurift@latest | |
| # 2. Run docurift proxy server | |
| $docurift -proxy-port 9876 -analyzer-port 9877 -backend-url http://localhost:8080 -max-examples 20 | |
| 2025/05/12 16:45:00 Starting DocuRift with proxy port 9876 and analyzer port 9877 | |
| 2025/05/12 16:45:00 Using backend URL: http://localhost:8080 | |
| 2025/05/12 16:45:00 Starting analyzer server on :9877 | |
| 2025/05/12 16:45:00 Starting proxy server on :9876 |
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
| $git clone https://github.com/The-Pocket/PocketFlow-Tutorial-Codebase-Knowledge demo | |
| $cd demo | |
| $pip install -r requirements.txt | |
| # ใช้งาน GEMINI_API_KEY | |
| $export GEMINI_API_KEY=<your key> | |
| # ลองใช้งาน Pocket Flow Tutorial | |
| python main.py --repo https://github.com/username/repo --include "*.py" "*.js" --exclude "tests/*" --max-size 50000 |
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
| # Add datas | |
| $VADD mydata VALUES 4 0.5 1.2 0.75 3.8 "I love dogs" | |
| $VADD mydata VALUES 4 0.5 1.2 0.75 3.8 "I like cats" | |
| $VADD mydata VALUES 4 0.5 1.2 0.75 3.8 "I enjoy birds" | |
| # Show embedding data | |
| $VEMB mydata "I love dogs" | |
| $VEMB mydata "I like cats" | |
| $VEMB mydata "I enjoy birds" |
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
| from alumnium import Alumni | |
| from selenium.webdriver import Chrome | |
| driver = Chrome() | |
| driver.get("https://seleniumbase.io/coffee/") | |
| al = Alumni(driver) | |
| al.check("Espresso is on the menu") | |
| al.do("Choose 'Espresso' from the menu") | |
| al.check("Cart have 1 item") |
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
| services: | |
| go-api: | |
| build: | |
| context: ./api-go | |
| dockerfile: Dockerfile | |
| pid: "host" | |
| ports: | |
| - 1323:1323 | |
| volumes: | |
| - /proc:/host/proc |
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
| # Pull image | |
| $docker image pull mcp/postgres | |
| Using default tag: latest | |
| latest: Pulling from mcp/postgres | |
| 6e771e15690e: Already exists | |
| 6943333fe3c9: Downloading 23.82MB/49.62MB | |
| 19f059763ac0: Download complete | |
| 422fec2897b5: Download complete | |
| 3beeba27d5a1: Download complete |
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
| $git clone https://github.com/redis/mcp-redis.git | |
| $cd mcp-redis | |
| $docker image build -t mcp-redis . |
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. ติดตั้ง | |
| $pip install robotframework-dashboard | |
| # 2. Run test | |
| $robot demo.robot | |
| # 3. Generate report | |
| $robotdashboard -o output.xml | |
| ====================================================================================== |
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
| unstable.api.versions.enable=true | |
| group.coordinator.rebalance.protocols=classic,consumer,share |
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
| Tech Stack: | |
| Frontend: React.js | |
| Frontend testing: Playwright | |
| Backend: Node.js with Express.js | |
| Backend testing: Jest, supertest | |
| Database: Postgresql with pg library | |
| Version Control: Git | |
| Deployment: Docker |