Docker [Docker🐳] Docker Tips (updatable) Forcus on mysql container. pull image docker pull mysql build and run container from pulling image docker run --name por... 2024.01.28 Docker
未分類 [Rust🦀] Rust Web Application Framework Actix Setup # What is Actix? Actix is one of the most high performance web framework written in Rust. If you want to know in the det... 2024.01.22 未分類
Rust [Rust🦀]I analysed the error to make me level up as a Rust developer !! # ownership and borrowing I'm always confused about which valuable has `ownership` or `borrowing`. The following code wa... 2024.01.20 Rust
Rust [Rust🦀] How To Pass The Closure To The Function Argument For example `execute()` function can take the type of closure as `F` F defines `FnOnece() + Send + 'static` ('static is ... 2024.01.20 Rust
General [Programming]Multiple Producer Single Consumer (MPSC) # What is MPSC? multiple entities (producers) generate or produce data, and a single entity (consumer) processes or cons... 2024.01.20 GeneralRust
未分類 [Linux🐧]Oops!! My port has already bound!! How to kill it ? How to search the process that buinding the port? You can see it by th command! lsof -i TCP | grep 7878 /*result here*/ ... 2024.01.19 未分類
Rust [Rust🦀] Features Accomodating Everyday Rust features Features of the language connect some &str variables Best way Use to_string() let str1 = "Hello, "; let st... 2024.01.19 Rust未分類
Dart [Flutter/Dart]My project doesn’t have `analysis_options.yaml` in the root directory A question I could not find analysis_options.yaml in my project. And I didn't know how Flutter/Dart analyze errors and w... 2024.01.17 DartFlutter
Dart [Flutter/Dart💠]I read a valuable article about `null safety` I feel hazy about 'null safety' When I review the code written by my collegue by using Dart(Flutter), I came across the ... 2024.01.16 DartFlutter
Swift [Swift🕊️] `guard let` must not fall through ! I believed Swift could the following code like this. Swift guard let a = a else { assert(false, "This code would be comp... 2024.01.15 Swift