Tips Which info should be written to a log file No application is perfect. All applications have bugs, unexpected and strange behaviors. They might be a small thing but... 2022.03.07 Tips
JavaScript/TypeScript Chai Compare object array I needed to write tests for object array but I spent time on how to write it. I write down how to do it to save my time ... 2022.02.23 JavaScript/TypeScript
JavaScript/TypeScript NPM How to pin dependency version of a dependency If you are looking for a solution to pin a dependency of a dependency, you can use npm-force-resolutions.Let's see the u... 2022.02.21 JavaScript/TypeScript
Other techs How to debug no console app with nssm I needed to debug an application that is run as a windows service registered by nssm. The behavior that I wanted to inve... 2022.02.18 Other techs
Dart and Flutter Flutter Date and Time picker without additional dependencies There are many packages in pub.dev for date time picker but Flutter offers beautiful date and time pickers. We actually ... 2022.02.16 Dart and Flutter
Dart and Flutter Flutter Convert TimeOfDay to 24 hours format Are you looking for a way to show time in 24 hours format e.g. 13:35? Let's define an extension for TimeOfDay. You can use it everywhere once you define it. 2022.02.14 Dart and Flutter
Dart and Flutter Flutter Apply text style to a target tree If text style needs to be applied to a Text widget, it's easy to apply but if there are many widgets we don't want to ad... 2022.02.11 Dart and Flutter
Dart and Flutter Dart Random number in a range Dart language offers Random class to generate a random result of boolean, int, and double value. The usage is very simpl... 2022.02.09 Dart and Flutter
Dart and Flutter Flutter Line chart with a great graph tool Fl_Chart I wanted to show a graph for my application, so I looked for some tools and found a great tool called fl_chart. I tried ... 2022.02.07 Dart and Flutter
Tips Start code review within 24 hours I guess most teams do code review as one of the development cycles to make it better. However, have you experienced that... 2022.02.04 Tips