React MyUI - Card 1. Design2. Implementation (css and tsx)1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848 2025-02-16
React MyUI - Input 1. DesignFlexibility Through PropsCSS Variable SystemThe component uses CSS variables for theming: 1 2. Implementation (css and tsx)1234567891011121314151617181920212223242526272829303132333435363738 2025-02-15
React MyUI - Button 1. DesignFlexibility Through PropsThe component is designed to be highly customizable through props: variant: Changes the visual style (primary, secondary, outline, text) size: Controls dimensions (s 2025-02-14
Getting Started with Rollup Offical Document:https://rollupjs.org/introduction/ Introduction to RollupRollup is a module bundler for JavaScript which compiles small pieces of code into something larger and more complex, such as 2025-02-14 #Rollup
Some common operations on MacOS Add Command ‘ll’1sudo nano ~/.zshrc 1alias ll='ls -lG' Most commonly use MacOS shortcutsBasic Operations Command (⌘) + C: Copy Command (⌘) + V: Paste Command (⌘) + X: Cut Command 2025-02-07
Understanding DNS Record Types Domain Name System (DNS) records play a critical role in how the internet functions.These records are instructions that tell the DNS how to handle requests for your domain.Each type serves a specific 2025-02-03
Understanding Garbage Collection in Node.js Node.js, built on Google’s V8 JavaScript engine, incorporates an automatic garbage collection mechanism that efficiently manages memory allocation and deallocation.This blog post explores how garbage 2025-02-02
Use VSCode to Remotely Develop Python Prerequisites Install VSCode. Install the Remote Development Extension Pack. Ensure you have SSH access to the remote machine. Python must be installed on the remote machine. Steps to Set Up Remote D 2025-01-16 #Python #VSCode #Remote Development
Getting Started with React Router For more detailed information and advanced usage, refer to the official React Router documentation. React Router is a standard library for routing in React applications.It enables the navigation among 2024-12-31
Understanding TUN Mode in Network Proxy Implementation Understanding TUN Mode in Network Proxy ImplementationTUN Mode is a method of implementing network proxies that operates at the network layer (Layer 3 of the OSI model). Let me explain it in detail: 2024-12-30