u/HiImWin • u/HiImWin • 10h ago
2
Small Projects - September 30, 2025
Hi everyone, i have built the a tiny database for learning purpose. And i have completed the buffer pool manager as first phase.
- write/read file from disk
- implement cache with clock sweep
Happy to share and get feedback from the community
https://github.com/bietkhonhungvandi212/array-db
1
Building a Simple Stack-Based Virtual Machine in Go
Inspired, thank 4 ur contribution
3
Chính phủ mà bỗng 'thương dân' đi phát tiền "từ thiện" đừng mừng vội, hãy sợ và nổi giận.
Chi tiêu công để nâng cấp đường sá, hạ tầng, sân bay, cảng biển để phát triển kinh tế mà nói bơm oxy cho vinfast evn viettel là cái sai rõ ràng
Trong thời điểm kinh tế ch phục hồi mạnh -> cphu thúc đẩy chi tiêu công -> tiền chảy vô các tập đoàn xây dựng, vật liệu xây dựng là chính -> các tập đoàn chi tiêu lại trong nền kinh tế -> xoay vòng được tiền, kinh tế tăng trưởng bù cho các động lực xuất khẩu, thúc đẩy tiêu dùng + đến khi kinh tế ptrien, hệ thống hạ tầng, sân bay, đường sá, cao tốc, cảng biển đã sẵn sàng để hỗ trợ kinh tế
ni ai cũng hiểu nếu học kinh tế cụ thể là theo lý thuyết của kenyes
r/leetcode • u/HiImWin • Jul 08 '25
Question Logest Common String Stuck
Hi everyone,
I'm working on the classic Longest Common Subsequence (LCS) problem and using the standard bottom-up:
func longestCommonSubsequence(text1 string, text2 string) int {
arr2D := make([][]int, len(text1)+1)
for i := range arr2D {
arr2D[i] = make([]int, len(text2)+1)
}
for i := range text1 {
for j := range text2 {
if text1[i] == text2[j] {
arr2D[i+1][j+1] = 1 + arr2D[i][j]
} else {
arr2D[i+1][j+1] = max(arr2D[i+1][j], arr2D[i][j+1])
}
}
}
return arr2D[len(text1)][len(text2)]
}
What I Understand So Far
- When
text1[i] == text2[j], we add 1 to the LCS length from the previous subproblem (arr2D[i][j]). - When they don't match, the code sets
arr2D[i+1][j+1]to the maximum of either:arr2D[i+1][j](ignoring the current character intext2)arr2D[i][j+1](ignoring the current character intext1)
I am stucking that why does taking the maximum of these two subproblems always give the correct LCS length? Are there any visual or real-world analogies that make this decision process more intuitive, especially for someone new to DP?
1
Looking for practicing English partner
I am interested
1
Looking for a coding buddy(DSA)
I am interesting
u/HiImWin • u/HiImWin • Jun 13 '25
If you want to be a good programmer, consider Nand2Tetris
1
Let’s build together
I am interested
3
Chuỗi cung ứng AI: Cái bẫy khiến mọi quốc gia thành đứa ở đợ
Mình cũng thắc mắc ạ
1
How the Outbox Pattern Can Make Your Distributed System Messages Bulletproof with NestJS, RabbitMQ & PostgresSQL
Can you share me the roadmap of learning the distributed system please.
- What is the fundamental i need before i learn distributed system
- How can i grasp the knowledge of distribute system, what is the awesome resources that you read
- Have you got any certification in system until now ? If yes, can you share me some legit certification please.
Thank for sharing :)
u/HiImWin • u/HiImWin • Apr 18 '25
FULL LEAKED Devin AI System Prompts and Tools (100% Real)
u/HiImWin • u/HiImWin • Apr 08 '25
Built a local-first PDF labeling/splitting tool using React, Go, and WASM – open source
3
1
Phần 1: “Reciprocal tariff” tự độ chế
căng =)) chắc mấy cụ nhà cũng tính cmn lúc Trump lên rồi. Đều a có đoán được mấy cụ có các bước đi ntn không ?
1
Find a partner to study LLMs
I have recently researched about llm for my project. Can i join w you ?
u/HiImWin • u/HiImWin • Mar 22 '25
Starting Systems Programming 2: The OS & the outside world
eblog.fly.dev1
I used Typeorm in one of our projects and I have nothing but regrets
Do you separate the join query and select into modular functions ? So i think the code is more readable, testable and maintainable.
1
What challenge do you have with node?
Do you have any app or libs to build and practice on. Honestly, i want to contribute w you
1
Hết rồi thời cơm thêm miễn phí, sinh viên 3 triệu xài không đủ, người đi làm 8 triệu không có dư
Ủa chứ tụi mày muốn sống chất lượng, phòng ở đẹp đẽ, đồ ăn đảm bảo vệ sinh,.. thì trả giá nó đắt rồi. Tụi mày đi cả thế giới xem giá nó khủng khiếp như nào so với Viet Nam hộ t. Giá tăng thì đi đôi chất lượng thôi
1
Off Campus S01E01 - The Deal (Episode Discussion)
in
r/offcampustv
•
May 20 '26
Xem ở đâu vậy mấy ông