How to solve when Xcode doesn't show the "Remove Reference" option when deleting files?

Right-click on your project root directory and tap “Convert to Group”.

2025-01-24 Â· 2 min Â· 339 words Â· alikia2x

Svelte 5 migration guide

Svelte 5 has been released. This highly anticipated emerging front-end framework has finally taken on the form of React and Vue. Here is my migration process and thoughts.

2024-11-17 Â· 2 min Â· 332 words Â· alikia2x

Technical Summary of sparkastML Intent Recognition Model

I spent three days upgrading the intent recognition model for sparkast and established the sparkastML open-source deep learning lab repository, which will provide better search enhancement features for our products in the future.

2024-09-01 Â· 3 min Â· 557 words Â· alikia2x

Detailed Report on Malicious Activities and Spam Package Abuse in npm Community

This report details widespread malicious activities and spam package abuse within the npm community.

2024-08-14 Â· 4 min Â· 718 words Â· alikia2x

How to Elegantly Detect if the User's System Has Dark Mode Enabled in React

In modern web development, dark mode not only reduces eye strain but also provides a more comfortable reading experience at night. So, how can we elegantly detect if the user has enabled dark mode in a React application?

2024-08-13 Â· 2 min Â· 292 words Â· alikia2x

Implementing LCA (Lowest Common Ancestor) Query Using Binary Lifting

Here’s a implemention of finding LCA in C++ with detailed comments to help you understand this algorithm.

2024-07-15 Â· 4 min Â· 851 words Â· alikia2x

Passing Props in React Function Components

Recently discovered a subtle detail about passing props in React

2024-06-02 Â· 2 min Â· 376 words Â· alikia2x

The OSI Model

My learning notes about the OSI model

2024-04-09 Â· 5 min Â· 875 words Â· alikia2x

Get Current User in Bash

whoami
OR
echo $USER

2024-02-22 Â· 1 min Â· 6 words Â· alikia2x

Add a user to grop on Linux

usermod -a -G group user

2024-02-22 Â· 1 min Â· 164 words Â· alikia2x