HackThisSite Basic 7
Since I am already familiar with MacOS, UNIX commands are not new to me. ;ls lists files and directories in the current directory. This one was fairly simple, not too Continue reading HackThisSite Basic 7
Since I am already familiar with MacOS, UNIX commands are not new to me. ;ls lists files and directories in the current directory. This one was fairly simple, not too Continue reading HackThisSite Basic 7
Just had one of those moments, that showed me, why I started programming in the first place. A few months ago I wrote a CLI tool in C, to benchmark Continue reading A full circle moment
This is a submission for Frontend Challenge – June Celebrations, CSS Art: June Celebrations. Inspiration My inspiration came from Brazil’s traditional Festas Juninas, a joyful and colorful celebration that takes Continue reading CSS Art: Brazil’s traditional Festas Juninas
Embracing Declarative App Development SwiftUI is shaking things up, and honestly, it’s about time. For years, we’ve been stuck with the old way of building UIs, which felt like telling Continue reading SwiftUI Simplified: Build iOS Apps by Describing What You Want
Mastering Microsoft.VSOnline: A Deep Dive into Azure DevOps Services 1. Engaging Introduction The modern software landscape is defined by speed, agility, and relentless innovation. Businesses are no longer competing on Continue reading Azure Fundamentals: Microsoft.VSOnline
Foreword this article is based on Api13 through the first article, we got the KeyStore. p12 file and certificate request csr file, these two files are very important, must be Continue reading HarmonyOS Development: Application on Shelf Part II, Application for Issued Certificate
The gap between a promising machine learning model in a Jupyter notebook and a reliable production system serving millions of predictions daily is where most ML projects fail. After successfully Continue reading From Jupyter to Production: Operationalizing ML Models at Scale
FastAPI: A Python Web Framework for NodeJS Developers By Raffy Castillo Introduction My journey with FastAPI started with the same skepticism most Node.js developers have about learning new frameworks. But Continue reading FastAPI: A Python Web Framework for NodeJS Developers
Accelerating AI with Human-in-the-Loop: A Deep Dive into Google Cloud’s Data Labeling API The demand for high-quality labeled data is exploding. Modern machine learning models, particularly those leveraging deep learning, Continue reading GCP Fundamentals: Data Labeling API
🧪 From Manual to Magical: My Experience with AI-Powered API Testing Using Keploy 💭 The Problem: Manual Testing Woes As a student developer working on a Flask + MongoDB API Continue reading How I Went From 0 to 100% API Test Coverage in Minutes with Keploy
This is a submission for Frontend Challenge – June Celebrations, CSS Art: June Celebrations. Inspiration We celebrate Father’s Day in June and Dads are known for their jokes. I made Continue reading Dad’s Canned Jokes – June CSS Art Challenge
Bringing your work into production is thrilling—until something breaks and you don’t know why. That’s exactly what I faced while deploying my Django-based portfolio. Despite making all the right changes Continue reading 🚀 My Developer Portfolio Is Live and Now Fully Responsive!
2099. Find Subsequence of Length K With the Largest Sum Difficulty: Easy Topics: Array, Hash Table, Sorting, Heap (Priority Queue) You are given an integer array nums and an integer Continue reading 2099. Find Subsequence of Length K With the Largest Sum
Hey, algorithm adventurers! 🔍✨ Today we’re unraveling a brain-bending string manipulation puzzle — LeetCode 2014: Longest Subsequence Repeated k Times. This one’s a cocktail of greedy character selection, frequency filtering, Continue reading 🐳Longest Subsequence Repeated k Times – LeetCode 2014 (C++ | Python | JavaScript)