Command Palette
Search for a command to run...
Comments
Join the discussionNo comments yet. Be the first to comment.
Flutter
Creating Scalable and Maintainable Collection Managers in Dart
Scenario Suppose we are building a social media application where we need to manage user profiles. The profiles contain attributes like id, name, and age. Below, I demonstrate how using the UserProfiles class makes the code cleaner, reusable, and eas...
More from this blog
Creating Scalable and Maintainable Collection Managers in Dart
Scenario Suppose we are building a social media application where we need to manage user profiles. The profiles contain attributes like id, name, and age. Below, I demonstrate how using the UserProfiles class makes the code cleaner, reusable, and eas...
[Tip] Cannot see pod command after install cocoapods
gem uninstall cocoapods brew reinstall cocoapods # check version pod --version
Updating the PATH Variable in the Shell
Introduction The PATH environment variable is a critical component in Unix-like operating systems, including Linux and macOS. It helps the shell identify where to find executable files when commands are entered. Updating the PATH variable allows user...
Understanding Shells: A Basic Guide
Introduction In computing, a shell is a user interface that provides access to various services of an operating system's kernel. Shells can be either graphical or command-line based, with the latter being prevalent in Unix-like systems, including mac...