ASH84
Software Engineer focused on turning complexity into simplicity. Co-founder at Payhere. Previously Tech Lead of remit team at Banksalad.
Experience
- Head of tech Payhere.Inc, 2024βpresent
- CTO Payhere.Inc, 2020β2023
- TechLead, Banksalad, 2018β2020
- Senior Software Engineer Danal, 2014β2018
Latest Blog Posts
-
Jan 28, 2020Rust-DAY2**TestCase λ₯Ό μμ±ν΄λ³΄μ. [#2](https://github.com/AhnSeongHyun/sun/pull/2)** - μλ νλ‘μ νΈλ λλ΅μ μΈ κ΅¬μ‘°λ μ΄λ°μμ΄μλ€. ``` βββ Cargo.lock βββ Cargo.toml βββ Makefile βββ README.md βββ resource βΒ Β βββ host.yaml βββ src Β Β βββ arg.rs Β Β βββ config.rs Β Β βββ main.rs Β Β ...
-
Jan 08, 2020Rust-DAY1![sun](https://live.staticflickr.com/65535/49351849271_1a8164bbd0_z.jpg) [sun](https://github.com/AhnSeongHyun/sun) - κ°λ¨ν νλ‘κ·Έλ¨μ λ°°μ°λ©΄μ Rust λ₯Ό λ°°μμ λ¨μ£Όμ! - multiple hostΒ μ shell λͺ λ Ήμ΄λ₯Ό 보λ΄κ³ κ·Έκ²μ 보μ¬μ£Όλ λ¨μν CLI νλ‘κ·Έλ¨(μ¬μ€ python ansible μ‘°ν©μ΄λ©΄ κΈλ°© λ κ² κ°μ§λ§...) - github action μ CI κ΄λ ¨ μ€νΈλ¦½νΈ μ μνκ³ μμ! ```yaml name...
-
Oct 04, 2018Rust κΈ°λ³Έ λ¬Έλ²## λ³μ - λ³μλ λΆλ³μ± - κ°λ³μ± λ³μλ `mut` λ₯Ό μΆκ° ```rust let mut x = 5; ``` - μμ - μμλ mut μ μΈμ μμ. λΆλ³μ± κ·Έ μ체 - const - μ ν(λ°μ΄ν° νμ )μ μ μΈν΄μΌνλ€. - μμννμμΌλ‘λ§ μ€μ , μ€νμκ°μ μ€μ λ μ μλ€. ```rust const MAX_POINTS: u32 = 100_000; ``` - Shadowing - κ°μ λ³μ μ΄λ¦μ μ¨μ κ°λ¦¬λ κ² ```rust let x...
-
Oct 02, 2018Rust Cargo## cargo λͺ λ Ήμ΄ μ 리 ### νλ‘μ νΈ μμ± `cargo new βbin ` ``` βββ Cargo.lock βββ Cargo.toml βββ src βββ main.rs 1 directory, 3 files ``` ### λΉλ λ° μ€ν - `cargo build`: μ»΄νμΌ - `cargo run` : λ°λ‘ μ€ν - `cargo check` : λ¬Έλ²μ²΄ν¬ - `cargo clean` : μ»΄νμΌ μ 리 - `cargo new` : νλ‘μ νΈ μμ± - `cargo init` : νλ‘μ νΈ μμ±(...