Advanced Search
Search Results
14 total results found
Repo Golang
First Step Clone Repo Golang อันดับแรกก่อนที่จะเริ่มอ่าน Code เป็นก็ต้องมี code ซะก่อน ใส่ URL ตรงนี้เลยองค์ประกอบของหลังบ้านที่ควรรู้ จะเห็นว่า folder กับไฟล์งานนั้นเยอะมาก แต่จริงๆแล้วที่จำเป็นต้องดูจริงๆมีแค่ DB มันเป็น type struct ของ table ใน d...
การอ่าน func สำหรับ integration เบื้องต้น
step 1 Find the Function สมมุติว่าอยากจะทำการ integration login ก็ไปที่ Route login step 2 Analysis the Function อันนี้คือสิ่ง request ที่ต้องการก่อนที่จะใช้ function login ได้. คือ function login ไม่ต้องรู้หรอกว่าทำงานยังไง รู้คือว่า มันคืนอะไรม...
What is Dio
What is Dio? Dio ไม่ใช่ตัวละครใน jojo แต่ Dio เป็นไคลเอนต์ HTTP ที่มีประสิทธิภาพสำหรับ Dart มีการสนับสนุนสำหรับตัวสกัดกั้น, การกำหนดค่าส่วนกลาง, FormData, การยกเลิกคำขอ, การดาวน์โหลดไฟล์ และการหมดเวลา และอื่น ๆ Flutter เสนอแพ็คเกจ http ที่ดีสำหรับการทำงานเครื...
การใช้งานDioจริง
1. ดู Response จาก Backend คือ การที่เราดู response จาก backend ก่อน จะทำให้เรารู้ว่าสิ่งที่หลังบ้าน return ค่าไรกลับมาให้เรา ทำให้เราสร้างตัว object ไว้รับค่ามันได้เหมาะสมจะได้ แตก Example class Detail { final int borrowId; final String username; ...
Fundamental
What is Backend? The backend is the data and infrastructure that make your application work. ref: Backend Development: key languages, technologies, features in 2020 | DDI Development (ddi-dev.com) What is Backend Web development Web development is based o...
JSON
What is JSON JSON stands for JavaScript Object Notation JSON is a text format for storing and transporting data JSON is "self-describing" and easy to understand JavaScript Object Notation (JSON) is a standard text-based format for representing structured d...
NodeJS Express
ExpressJS Express JS is a Node.js framework designed to build APIs that facilitate communication through HTTP requests and responses. One of the remarkable things about Express is that it gives developers complete control over the requests and responses that ...
Params & Body
new data.json { "users": [ { "id": 1, "firstname": "Alice", "balance": 1000, "credit_ID": 2 }, { "id": 2, "firstname": "Bob", "balance": 500, "credit_ID": 1 }, { ...
Exercise & Assignment
1. Change Project Structure ref: Project structure for an Express REST API when there is no "standard way" – Corey Cleary Create directory name routers , controllersand services Create a file in the router directory banks.js and users.js users.j...
Create Repo
1. Go to https://csgit.sit.kmutt.ac.th/ and look at the top right 2. Click the "+" Icon 3. Choose "New group" 4. fill in your group infomation Format Group Name "CSHackXX" (XX mean number of your group e.i. 01,02,03,..,18) CSHackxx 5. Ad...
Initialization Project Front + Back
1. Go to your IDE and open blank directory 2. open your own terminal write "git init" 3. Create a Directory "fronted" and "backend" 4. create init fronted react app (you use the framework that you want) (just guidelines don't need to follow al...
Docker Script
docker build # Build images docker build -t your-username/image-name:tag <loacation> docker push docker hub docker push your-username/image-name:tag To build a Docker image for the amd64 architecture from a macOS system (likely arm64 architecture on Apple...
Docker Compose
database compose version: "3.5" services: postgres: image: postgres:14-alpine command: postgres -c 'max_connections=' container_name: hostname: # networks: # defuat: # ipv4_address: 10.34.0.30 ports: - "...
Dockerfile
React # Use Node.js 20 on the ARM64 platform (suitable for ARM-based systems like Apple Silicon) FROM --platform=linux/arm64 node:20-alpine AS builder # Enable Corepack and prepare pnpm for managing dependencies RUN corepack enable && corepack prepare pn...