Other techs Start Powershell with specified execution policy without changing default How to start powershellI often starts powershell.exe from an explorer instead of command prompt because it looks better ... 2020.09.30 Other techs
JavaScript/TypeScript Using spread operator for process.env I faced strange behavior when I used spread operator for process.env. In my project, our main source is Typescript but w... 2020.09.26 JavaScript/TypeScript
JavaScript/TypeScript How to write good unit tests? Unit Test makes your software better in terms of not only quality but also class structure because you need to separate ... 2020.09.23 JavaScript/TypeScript
Docker Dev Environment in Docker Container When we try something new we need to install something and then remove it if it is no longer necessary but our PC will g... 2020.09.16 Docker
JavaScript/TypeScript Dependency injection in Typescript. Constructor? Setter? Factory method? Decoupling class relationships is important for unit testing. Less cohesion makes writing unit tests easier. This post shows 3 ways to do it. Constructor injection, setter injection, and using the factory method to inject the desired instance. 2020.09.13 JavaScript/TypeScript