Sponsored links
Dart and Flutter

Dart – Understanding Class Initialization Order

I wrote simple code to understand class initialization order. Dart offers late keyword to check null at runtime instead ...
Dart and Flutter

Dart compiler doesn’t recognize if a variable is non-null value

Dart compiler doesn't recognize even though null check logic exists before using the variable. It took me a while to und...
JavaScript/TypeScript

How to Restrict Possible String Arguments

I want to limit the possible string arguments. How can I do it? This article is for you. I will show 4 ways to do it. Th...
JavaScript/TypeScript

Define array with multiple types in TypeScript

Union type or tuple is useful to define multiple types in an array. It shows how to define it and use cases. However, if there are multiple types in an array, it's harder to handle the difference. Using an interface is often a better choice.
Other techs

How to write outer join more than 3 tables

How can we write outer join to merge multiple tables? Do you need subquery in the query? This article shows you the solution.
Tips

How to backup photos automatically

This article shows how to automatically copy files that don't exist in the destination directory. I often copy files fro...
Other techs

Establish SQL Server in Docker container

I tried to establish SQL Server in Docker because I wanted to learn SQL again. Create a Dockerfile and run It's possible...
Tips

Difficulties of personal evaluation for programmer

I have an interview session twice a year for my personal evaluation. I have to set goals at start of the year and have t...
JavaScript/TypeScript

How to implement Node-RED node in TypeScript

The official site describes how to implement our own node in JavaScript. However, I don't find a page for TypeScript. I'...
JavaScript/TypeScript

Complete Class Guide in TypeScript

Class is one of keys to be familir with Object Oriented Programming (OOP). Multiple variables and functions are in the s...
Sponsored links