January 27th, 2025
Hashing is a one-way text transformation. In the other hand, encryption is a two-way text transformation where the encrypted value can be decrypted with the key it was encrypted before.
Hashing is a one-way text transformation. In the other hand, encryption is a two-way text transformation where the encrypted value can be decrypted with the key it was encrypted before.
Bcrypt is a password-hashing algorithm designed to securely store passwords by transforming them into fixed-length, irreversible hashes. It incorporates a salt, a unique random value added to each password before hashing, to prevent attackers from using precomputed dictionaries or rainbow tables.
A short video of making christmas-tree-shaped stars with javascript basic for-loop algorithm.
The line-clamp utility in TailwindCSS allows you to truncate text after a specific number of lines. Using classes like line-clamp-2 will display only 2 lines of text and add an ellipsis (...) at the end. It's perfect for creating consistent, responsive text containers.
Day.js is a lightweight JavaScript library for parsing, validating, manipulating, and formatting dates. It provides an easy-to-use API similar to Moment.js but with a much smaller footprint. Perfect for modern web applications where bundle size matters.
In this video, I am solving a problem in the Leetcode.
Camel case is a naming convention where the first letter of each word is capitalized except for the first word, resulting in names like 'camelCase'. This video demonstrates how to break a camelCase string into individual words.
In this codewars, we are asked to count how many months a man should save until he can trade in his old car.
This codewars gives an array of file sizes and maximum capacity of a hard disk storage. We are asked to count how many files can fit in the storage.
Debouncing is a technique used to limit the rate at which a function is executed. In search querying, it helps to reduce the number of API calls by delaying the execution of the search function until the user has stopped typing for a specified period.
© 2025 Reinhard Kevin @reinhaaard13