I have made an npm package that can help us to see UTC time right in your terminal
when we working on different projects we need to have a simple look at the UTC time (universal time); without having a big google search in terminal

Search for a command to run...
Articles tagged with #learning
when we working on different projects we need to have a simple look at the UTC time (universal time); without having a big google search in terminal

Understanding the basics of Logic Not Math behind the Boolean Algebra
Learning null Safety in Dart: understanding why we need null Safety; Null means nothing is there. so handle the programme at any point in time if there is a value which is null what should be performed? Sound NullSafety: By sound you might is underst...

Dart Control Startment Controlling the flow of your application is a key part of any programme, controlling flow means handling, what your programme can perform, do, and act. (Decision making) 🧠 if/else if (condition) { // do something } else { ...

1/100DaysOfFlutter : Dart Basics/Final v/s Const Variables in dart var: variable can be reassigned. final: variable can not be reassigned. const: constant variable. Different between Final and Const in a easy way final name;✅ // you assign value ...

Extensions are something that makes vscode different from other editor and something better is that you can make change to that extension according to your own style/ needs use make changes to any extension from the extensions tab. press Ctrl + , t...
