Advanced Search
Search Results
123 total results found
Chuẩn bị
Shopping dụng cụ piano điện: Mình chọn mua con Toyo X900 này sau khi lướt tiktok thấy con Go Japan và xem comment một số người. Mình mua thêm mic remote để tiện gaming và chat voice với bạn bè. Con mình mua là Micro không dây K9 giá 150k. Sau đó mìn...
The Crypto Wallet Tracker
Type of wallet: Pump & dump Wallet High Balance Wallet High Activity Wallet Wallet has CEX Inflow/Outflow Fresh Wallet on DEX KOL Wallets With X/Youtube Top Holders Type of Transaction: Swap, Transfer, Mint, Add Liquidity Pool, Trading Enabled
Routing / Open Port WSL2 and Host Machine.
Cách routing port từ WSL2 sang local machine và public network. Mở window POWER SHELL của windows với ADMINISTRATOR netsh interface portproxy add v4tov4 listenport=3000 listenaddress=0.0.0.0 connectport=3000 connectaddress=172.27.237.24 Giải thích: IP: th...
413 request entity too large
cloudflare issues don't use cloudflare if you want to upload files > 100 mb.
Unable to access raw githubcontent
some program you did install changed the etc/hosts on windows and wsl2 , which point the 0.0.0.0 to raw.githubusercontent.com. you need to remove those line in order to access.
VSCode SFTP Config
cài sftp và tạo file: sftp.json { "name": "portainer", "host": "portainer.AAA.com", "protocol": "sftp", "port": 22, "username": "KingOfTheNorth", "privateKeyPath": "/home/King/.ssh/id_rsa", "password": "theKingOfTheNorth", ...
K3s issue when trying to access cluster from another machine
problem: one day you don't know why the hell is going on with kubectl on your machine and you've already copied remote_machine:./kube/config into your local machine and that worked before but now it keep telling wrong api group list or authorized. kubectl ge...
ENOENT: PS, Spawn PS - Common Issues when Working with Nestjs, Nodejs and Docker
Working Environment: VsCode Debug Mode Nestjs Dockerfile What did that happened? After i ran docker compose up and then i change some file content in my local machine , it will trigger changed in the file system between local and remote host. Error ...
VSCode Debug Nestjs and Docker Environment
in .vscode folder: { // Use IntelliSense to learn about possible attributes. // Hover to view descriptions of existing attributes. // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387 "version": "0.2.0", "con...
Nestjs , Docker and Prisma Common Problem when built
Best way to fix prisma common problem with nestjs and docker nma-auth | PrismaClientInitializationError: Prisma Client could not locate the Query Engine for runtime "debian-openssl-1.1.x". nma-auth | nma-auth | This happened because Prisma Client was g...
llama.cpp or LM Studio
Both are great projects, one will serve a personal local ai computing , one will serve multiple purposes. Yes, LM Studio is built on top of llama.cpp with an UI. LM Studio: https://lmstudio.ai/ llama.cpp: https://github.com/ggerganov/llama.cpp/blob/master/d...
Gemini Coder - Ai Code Generator
Gemini Coder được viết với ngôn ngữ typescript và nextjs Nó tạo được code theo prompt và build react view page. Rất thú vị.
Common Problems with Ubuntu WSL2 Sudo Apt Get
Problem: W: https://cloud.r-project.org/bin/linux/ubuntu/xenial-cran35/InRelease: Key is stored in legacy trusted.gpg keyring (/etc/apt/trusted.gpg), see the DEPRECATION section in apt-key(8) for details. W: An error occurred during the signature verificatio...
Simple Image to Text using Langchain, Ollama, LM studio Apis
Mã script này sử dụng các mô hình ngôn ngữ Ollama và OpenAI để thực hiện phân tích hình ảnh và dịch văn bản. Đầu tiên, nó khởi tạo các mô hình với các tham số cụ thể như URL cơ sở và tên mô hình. Mô hình chính `ChatOllama` được sử dụng để hiểu nội dung của mộ...
Cài đặt Synology trên Proxmox với Arc Loader
Xem video hướng dẫn của TB Playground: https://www.youtube.com/watch?v=nRERez1Y9zs Xài Shell trên máy chủ Proxmox muốn cài đặt. ví dụ: Proxmox Admin Web > Rack2 > Shell > https://github.com/AuxXxilium/arc/releases?q=prerelease%3Afalse&expanded=true Download...
Cách cài đặt Synology trên máy ảo vm proxmox với ARL Loader
Cấu hình: Network sau khi cài: Test với với network của node proxmox host của synology tới synology: Test với network của VM trong cùng host với synology: Test network từ một VM của Node Proxmox khác tới Synology Cấu hình VM: Cách cài đặt:...
[Solved] Nginx Proxy Manager Problems with Cannot Load Certificate
Problem 1: nginx: [emerg] cannot load certificate "/etc/letsencrypt/live/npm-32/fullchain.pem": BIO_new_file() failed which mean nginx can't find the file existed. Maybe you have delete it on your web ui. This is a problem of nginx proxy manager :) All you ...
How to use Custom Nginx Configuration in Nginx Proxy Manager - Advanced Edit Proxy Host?
You can pass the ip address so your application can see visitor's ip address: location / { proxy_pass $forward_scheme://$server:$port; # Forward the real IP address of the client proxy_set_header X-Real-IP $remote_addr; proxy_set_header ...