Setting Up a Secure SSH Connection
2023-05-15
Today I configured SSH keys for secure server access. Generated a new 4096-bit RSA key pair and disabled password authentication for better security...
#security
#ssh
#devops
Optimizing React Performance
2023-05-10
Implemented React.memo and useCallback to prevent unnecessary re-renders in a large component tree. Saw a 40% improvement in render times...
#react
#performance
#javascript
Exploring WebAssembly
2023-05-05
Compiled a simple C++ function to WebAssembly and integrated it with a React frontend. The performance gains for CPU-intensive tasks are impressive...
#webassembly
#wasm
#performance