blog.paulcodes.techImproving Horizontal Scroll with CSS Scroll SnapThe pattern with horizontal scroll is frequently found in mobile versions of sites. For example, on Airbnb's home page: It looks smooth and the scroll always stops at the beginning of a card, but there are many bad examples on the Internet when the ...Jul 7, 2021ยท1 min read
blog.paulcodes.techPerformance Case Study: webpack splitChunksHello there! I've just finished optimizing my last commercial project, and now, I want to share what I've learned. So, I've decided to start a series of articles. In this article, I want to share with you knowledge about webpack's optimization.splitC...Jun 3, 2021ยท3 min read
blog.paulcodes.techMost useful aliases for gitHello everyone! In this article, I'll share with you some useful aliases for git that I use every day. Working with branches For each feature I work on, I create a new branch, this alias saves me a lot of time: gco This is an alias for git checkout ...May 25, 2021ยท3 min read
blog.paulcodes.techAll about Abstract Syntax TreeHello there! In this article, I'll tell you what AST is and how it can help you in the context of JavaScript. What AST is In computer science, an abstract syntax tree (AST), or just syntax tree, is a tree representation of the abstract syntactic str...May 21, 2021ยท4 min read