Victoria Lolo-victoria.com·Feb 10, 2025FeaturedAtomic Habits for DevelopersAs a developer, your journey to mastery is often shaped by the small, consistent actions you take every day. Whether you're debugging code, learning a new framework, or optimizing a system, the key to continual growth lies in your habits. This weeken...122 likes·1.7K readsBook Reviews and ReflectionsSelf Improvement
Hardikk Kambojhardikkwrites.hashnode.dev·Feb 5, 2025FeaturedYour Browser Is Killing Your Computer! ☠Do you also have an old machine that you use daily for work or development? Maybe an i3 processor, limited RAM, and Chrome as your default browser? And let's be real—Chrome is a memory hog. Ever found yourself constantly closing tabs because your sys...67 likes·546 readsProductivity
aaron ubokobonggodshand023.hashnode.dev·19 hours agoThe Role of NIP-20 in Strengthening NuDEX’s SecurityIntroduction Security vulnerabilities have plagued many decentralized exchanges, leading to billions of dollars lost in hacks. To address these concerns, NuDEX is built on NIP-20, a protocol enhancement designed to fortify blockchain transactions and...111 likes#nudex_official
Alex Katesblog.alexkates.dev·11 hours agoLet's Talk About RejectionOn March 4th, 2025, I woke up thinking it was just another Tuesday morning. Like many people, I started my day by making a cup of coffee and scrolling through social media. But this day was different because it was the AWS Community Builder acceptanc...12 likes·46 readsAWS
Dhiraj Kumbharcomplextosimplefied.hashnode.dev·11 hours agoFrom Server to Screen: The Hidden Process of Webpage LoadingIn the previous article of this series, we explored how a computer locates and connects to another computer that hosts the desired website data. In summary, this process involves using the DNS (Domain Name System) to find the IP address of the target...10 likesChaiCode
maxcodigopuesto.hashnode.dev·35 minutes agoEtiquetas aria para accesibilodad a personas con dificultadesLas etiquetas ARIA (Accessible Rich Internet Applications) son atributos especiales en HTML que mejoran la accesibilidad de las páginas web para personas con discapacidades, especialmente aquellas que usan lectores de pantalla. ¿Para qué sirve ARIA? ...
CryptapeforCryptape Jungleblog.cryptape.com·40 minutes agoSatoshi Scoop Weekly, 7 Mar 2025Crypto Insights New Direction in Bitcoin’s Post-Quantum Security: Favoring a More Conservative Solution Bitcoin developer Hunter Beast introduced P2QRH (Pay to Quantum Resistant Hash), an output type, in the earlier proposal BIP 360. However, in a re...Satoshi Scoop WeeklyBlockchain technology
Bisesh Adhikaribisesh-blog.hashnode.dev·42 minutes agoShreeyantra day-2Exception Handling in Python Exception handling in Python is a mechanism that allows you to handle errors gracefully and prevent crashes in your program. It helps in debugging and ensures that the program continues to execute even when an error occur...
Shaik Mustafalinux-series.hashnode.dev·42 minutes ago10 Log Management Scripts Every DevOps Engineer Needs1. Log Rotation Script Logs can quickly grow large and consume disk space. This script rotates and compresses old log files. #!/bin/bash # Rotate and compress logs LOG_FILE="/var/log/app.log" BACKUP_DIR="/var/log/backup" TIMESTAMP=$(date +"%Y%m%d") m...Bash
Jonathan Hultblog.jonathanhult.com·43 minutes agoThe Art of Effective Code ReviewsPurpose: Beyond Bug Catching What is the purpose of a code review? Many teams struggle to define this clearly, leading to ineffective review processes. Code reviews are not there to catch bugs. For that, we have our automated tests. If the code pass...code review
Devyush Raturidevyushraturi.hashnode.dev·an hour agoIntroduction to Information Security PrinciplesIn our increasingly interconnected world, information is a valuable asset, and protecting it is paramount. Information security, therefore, is not just a technical concern; it's a fundamental business imperative. Ethical hackers play a crucial role i...Ethical Hackingsecurityprinciples
Chaewoon kangriveroverflow.hashnode.dev·an hour ago2523. Closest Prime Numbers in RangeProblem https://leetcode.com/problems/closest-prime-numbers-in-range/description/ Leetcode - Closest Prime Numbers in Range Type - Math, Number Theory Difficulty - Medium Approach & Solution Examine the sequences prime numbers. To get the minimum gap...leetcode