life is too short for a diary

Most popular




Hike the Grandfather Trail

To continue my passion for hiking, I recently visited Grandfather Mountain State Park, one of North Carolina's most iconic hiking destinations. It offers a variety of trails and experiences, but the Grandfather Trail, known for its challenging terrain, ladders, and stunning views, was my primary target...

Continue reading → Tags : hike






792. Number of Matching Subsequences

Given a string s and an array of strings words, return the number of words[i] that is a subsequence of s. A subsequence of a string is a new string generated from the original string with some characters (can be none) deleted without changing the relative order of the remaining characters...

Continue reading → Tags : leetcode java






Testing Preauthorize Annotation in Spring Boot

Preauthorize annotation can be use to enforce access control in Spring Boot applications. It's part of Spring Security that allows you to specify access control expression for methods. These expressions are evaluated before method execution, determining whether the current user has the authority to invoke the method...

Continue reading → Tags : java spring boot spring security