Developer Diary #31. Prompting an Android Application
Kiolk |
Over the past few days, I’ve frequently seen posts about a new tool — Firebase Studio. It positions itself as an AI tool for faster prototyping. As usual, you write the prompt and get a result that you can publish and share with colleagues and friends. What caught my attention was the support for A... read more
You Don't Need Permission to Ship
Shayan |
You're probably waiting for something.
Maybe you're not even sure what. Just… something.
A sign. A signal. A moment that finally makes you feel like,"Okay. Now it's ready."
But that moment never comes.
So you wait. You tweak. You adjust margins. You rewrite the copy. You rethink the whole idea.
... read more
Day 3/100 - Solution
Lakshmipriya |
1a,Sort an array with Inbuild function
sort012(arr) {
return arr.sort()
}
1b, Sort an array without Inbuild function
let array = [-2,2,4,5,0,2,-1]
function sortArray(array){
for(let i=0;i<array.length;i++){
for(let j=i+1;j<array.length;j++){
if... read more
How to Control Kubernetes Clusters Directly from Your Browser
Shailendra Singh |
While MCP is popular right now, we continue to simplify things with our Systems AI agent, which can now interact with and manage resources in Kubernetes clusters too. The Systems agent uses natural language to interact with any REST API and now supports those REST APIs that are not exposed to the i... read more
Elegance Was Never Dead: The Return of Perfectionism
Sumit |
“Perfection is achieved not when there is nothing more to add, but when there is nothing left to take away.” — Antoine de Saint-Exupéry
This isn’t a technical guide, or a tutorial on prompts, or a love letter to the latest framework. It’s something quieter. A reflection on a mindset. On how, as ... read more
How I Repaired Hallucinated JSONs from LLMs While Building LiveAPI
Athreya aka Maneshwar |
While building LiveAPI, a tool where you can get all your backend APIs documented in a few minutes, I ran into a frustrating but interesting problem.
The LLM-powered backend would sometimes return malformed JSONs—especially as prompts grew larger and responses more complex.
At first, I though... read more
How to Use Excel TIMEVALUE Function?
Vigneshwaran Vijayakumar |
Using Excel TIMEVALUE Function
TL;DR
The TIMEVALUE function converts a time written as text (like “1:30 PM“) into a decimal number between 0 and 1, where 0 = midnight and 0.5 = noon. The Syntax of the TIMEVALUE Function is =TIMEVALUE(time_text). For example, the TIMEVALUE Function returns 0.718... read more
Top 10 Cloud Data Security Best Practices to Follow in 2025
Mehul budasana |
Introduction
At Bacancy, I lead a team that supports businesses as they move to the cloud, manage their data, and grow their digital presence. Whether we're working with startups or established enterprises, everyone has this concern:
How do we keep our data safe?
It is a fair questi... read more
CSS Mask Div with Another Div- Complete Guide
Arsalan Mlaik |
Originally Published on hereCSS is more than just a styling tool—it’s a gateway to creative and complex visual effects in web design. One such technique is CSS masking, which allows you to control the visibility of elements by hiding parts of them using shapes, images, or even other elements.
In t... read more
Untangling the Web: Building Smart Knowledge Bases with LLMs and Graphs (No PhD Required!)
sakethk |
The Knowledge Conundrum: More Info, More Problems?
Hey there, fellow code wranglers and data tamers! 👋 Ever feel like your brain is a overstuffed junk drawer of random facts, API docs, and that one line of regex you can never remember? Yeah, me too. But what if I told you we could turn ... read more