Modern Java
Exploring Java 21: Virtual Threads Are a Game Changer
I’ve been waiting for virtual threads (Project Loom) for years. Traditionally, Java’s concurrency model was based on operating system threads, which ar…
Stories Worth Reading
PixelProse is your go-to blog for insightful articles on Technology, Travel, Food, Health, Lifestyle, Business, Fashion and Sports. Fresh perspectives. Real stories. Zero fluff.
Results for "Project Loom"
96 articles found
Modern Java
I’ve been waiting for virtual threads (Project Loom) for years. Traditionally, Java’s concurrency model was based on operating system threads, which ar…
Human Stupidity
You have been watching a film for forty-five minutes and you are not enjoying it. You paid for the ticket. Do you leave, or do you sit through the remainin…
Jobs
Dubai has not stopped building since the 1970s and shows no sign of stopping now. The city's infrastructure pipeline includes new metro extensions, megapro…
GitHub
I’m guilty of it. You find a cool project on GitHub, open the README, and it just says 'My project'. What does it do? How do I install it? How do I use i…
GitHub
I’m not just a developer; I’m a project manager for my own scattered brain. I started using GitHub Issues to track bugs for my side project, but then I…
Reactive Programming
Asynchronous programming used to give me headaches until I started using Project Reactor. It’s the foundation of Spring WebFlux, and it changes how you t…
Web Development
Django is a high-level web framework that encourages rapid development and clean, pragmatic design. It includes many built-in features that Flask does not…
Construction
I started as a laborer on a construction site right out of high school. I worked my way up, learned the ropes, and went back to school for construction man…
GitHub
I poured months into a side project, pushed it to GitHub, and... nothing. Zero stars. Zero forks. It was a ghost town. I realized that building the code wa…
Technology
Deep in the New Mexico desert, a group of scientists changed the world. They didn't know it at the time, not really. They were racing against the Germans…
Tools & Setup
Sharing your Python code with others, or even just managing your own projects, requires understanding packaging and dependencies. The standard way is to us…
JavaScript
JavaScript used to be confined to the browser. Then Node.js came along and allowed us to run JavaScript on the server. For a beginner, installing Node also…
Build Tools
For years, I was a Maven guy. The rigid structure of Maven is comforting. You know exactly where to find things. But when I started working on a project wi…
Renewable Energy
I used to work in oil and gas. It was stable, but I never felt good about what I was doing. A few years ago, I made the leap to the solar energy sector, an…
Web Development
Flask is a micro web framework for Python. It is lightweight and easy to get started with, making it perfect for beginners who want to build web applicatio…
Specialized Topics
Python is a favorite language among cybersecurity professionals. Its ease of use and vast libraries make it ideal for tasks like network scanning, penetrat…
Jobs
Dubai's economy has diversified significantly over the past decade, and the sectors with the greatest appetite for talent in 2025 reflect that diversificat…
Human Stupidity
The Sydney Opera House was supposed to take six years to build and cost seven million dollars. It took fourteen years and cost 102 million dollars. The Sco…
Web Development
REST APIs are a common way to expose functionality to other services or frontend applications. Flask-RESTful is an extension that simplifies building REST…
GitHub
I maintain a small open-source library that I use for my own projects. It was just a hobby. Then a user opened an issue and asked if I had a GitHub Sponsor…
GitHub
Open source seemed terrifying. I thought you had to be a 10x developer to even look at a project. Then I found a project I actually used—a simple note-ta…
Google Cloud Platform
I run a Discord bot for a gaming community. Ten thousand users. Hundreds of requests per minute. And I pay exactly $0 to host it. The secret? Google Cloud…
Tools
The build tool landscape has evolved dramatically, and the choice between Webpack and Vite can significantly impact your development experience. Webpack ha…
Google Cloud Platform
I run a Discord bot for a gaming community. Ten thousand users. Hundreds of requests per minute. And I pay exactly $0 to host it. The secret? Google Cloud…
Honest Advice
I've been in the AI hustle space for two years now. Tried basically everything. Made decent money. Lost money on dumb ideas too. Here's the honest truth no…
Object-Oriented Programming
Object-oriented programming (OOP) is a paradigm that organizes code around objects rather than functions. Python is an OOP language from the ground up. A c…
Best Practices
We all have that one project in our careers—the codebase that’s 15 years old, uses Java 6, and no one understands it fully. I inherited one of these la…
Databases
Most applications need to store data persistently, and databases are the standard solution. Python has built-in support for SQLite, a lightweight, file-bas…
Technology
ChatGPT's memory feature remembers details you share across conversations. It is convenient when it remembers your preferences without repeating them. But…
Human Psychology
You show up to a meeting with a stain on your shirt and spend the next hour acutely aware of it, certain that everyone in the room has noticed and is priva…
Machine Learning
If you’ve ever had a project break because you updated a library, you know the pain. I’ve been there. One day your code runs, the next day you run 'pip…
File I/O
Real-world programs often need to work with files. Python makes file handling straightforward. You use the open() function, which takes a filename and a mo…
Machine Learning
Early on, I would just look at accuracy to see if my model was good. Then I worked on a fraud detection project. If 99% of transactions are normal, a model…
Rise of America
On the morning of September 11, 2001, the most powerful country in the world — the sole superpower of the unipolar moment, the country that had just won…
APIs
APIs (Application Programming Interfaces) allow different software applications to talk to each other. Many services provide APIs to let developers access…
Machine Learning
Machine learning is one of the most exciting fields where Python shines. Scikit-learn is a robust library that provides simple and efficient tools for data…
Concurrency
As programs grow, performance can become an issue. Python offers threading and multiprocessing to help with concurrent execution. Threading is suitable for…
Frameworks
For the last five years, Spring Boot has been my default choice for microservices. It’s the Swiss Army knife of Java frameworks. But recently, I started…
Concurrency
Asynchronous programming is a way to write concurrent code that can handle many tasks without the overhead of threads or processes. AsyncIO is Python's lib…
CSS
Every HTML element on your screen is a box. The CSS Box Model is the concept that dictates how much space that box takes up. It can be frustrating when you…
Web Development
Web scraping is the process of extracting data from websites. Python makes this easy with libraries like BeautifulSoup and requests. The requests library l…
Jobs
Dubai has established itself as the Middle East's leading financial centre, and DIFC is the epicentre of that ecosystem. Major investment banks including G…
Philosophy
For Confucius, philosophy wasn’t about abstract metaphysics; it was about building a harmonious society through personal virtue. His focus was on *ren* (…
Programming Logic
Programming is all about making decisions. Control flow tools like if statements, loops, and functions let your code respond to different situations. The i…
Domestic & Foreign Policy
We often separate domestic politics from foreign policy, but in India, they are deeply intertwined. The current government’s foreign policy has a distinc…
CSS
Learning Flexbox properties like justify-content, align-items, and flex-grow can be dry if you only read documentation. I discovered that gamified learning…
Philosophy
Simone de Beauvoir laid the groundwork for modern feminism with *The Second Sex*, but her philosophical project was broader: she sought to build an ethics…
Text Processing
Regular expressions (regex) are a powerful tool for pattern matching in text. Python's re module provides full regex support. With regex, you can search fo…
Google Cloud Platform
Three years on GCP. I've made mistakes. I've learned lessons. Here's what I wish someone told me on day one. First: set up billing alerts immediately. That…
Tools
Every developer needs version control. Git is the system; GitHub is a hosting service. I made the mistake early on of just saving files with names like 'fi…
Google Cloud Platform
Three years on GCP. I've made mistakes. I've learned lessons. Here's what I wish someone told me on day one. First: set up billing alerts immediately. That…
GitHub
I once worked on a project where the branches were named 'fix', 'fix2', 'asdf', and 'pleasework'. It was chaos. We didn’t know what was in production, wh…
Google Cloud Platform
My handwriting is illegible. Even I can't read it sometimes. So I built an app using Google Cloud's Vertex AI and the Vision API. I take a photo of my note…
Data Visualization
Data visualization is a key part of data analysis. Python offers several libraries for creating plots and charts. Matplotlib is the foundational library. I…
Claude Comparison
Google's Gemini and Anthropic's Claude are two of the most capable AI assistants available today. They take somewhat different approaches, and understandin…
How to Use Claude
Education might be one of the domains where Claude is having the most interesting impact — and also one of the most debated. Here's how students and teac…
Neighborhood & Security
Myanmar is India’s gateway to Southeast Asia. But the 2021 military coup put us in a bind. On one hand, India is the world’s largest democracy and mora…
Tools & Setup
A good development environment can make your Python journey much smoother. Start by downloading the latest version of Python from python.org. During instal…
Philosophy
Albert Camus opened his famous essay with a bombshell: "There is but one truly serious philosophical problem, and that is suicide." He was asking: if life…
Google Cloud Platform
I have a problem: I start too many side projects. But I also have a solution: Google Cloud Functions. Need a webhook? Cloud Function. Need to process an im…
Stack Overflow
It was 2 AM, and I was staring at a terminal full of red text that looked like it was written in an ancient curse. My project was due in six hours, and a s…
Philosophy
Before Socrates, there was a group of thinkers who dared to explain the world without recourse to myths. They are the Pre-Socratics, and they asked the fir…
Maritime Security
The Indian Ocean is India’s backyard, but there are a lot of guests staying over. Diego Garcia, a tiny island in the Chagos Archipelago, hosts a massive…
Google Cloud Platform
I gave a service account the 'Owner' role. I know. I'm ashamed. It was my first week on GCP. I wanted everything to just work. It did work. Too well. One d…
Lifestyle
This is going to sound sad, but I downloaded a companion AI agent out of curiosity. You know, the kind that learns your personality and chats with you. I e…
GitHub
I’ve seen it too many times: a repository named 'test123' with a commit message that just says 'stuff'. Please, stop. A GitHub profile is your modern-day…
GitHub
I learned this lesson the hard way. I was working on a personal project, had a great idea, and pushed directly to `main`. Everything broke. The site went d…
Google Cloud Platform
I have a problem: I start too many side projects. But I also have a solution: Google Cloud Functions. Need a webhook? Cloud Function. Need to process an im…
Google Cloud Platform
I gave a service account the 'Owner' role. I know. I'm ashamed. It was my first week on GCP. I wanted everything to just work. It did work. Too well. One d…
Google Cloud Platform
My handwriting is illegible. Even I can't read it sometimes. So I built an app using Google Cloud's Vertex AI and the Vision API. I take a photo of my note…
Technology
Learning to code can feel like trying to climb a mountain in the fog. The key is to pick one language and a small project that excites you. Python is often…
Finance
Cryptocurrency can sound intimidating, but at its core, it’s digital money that operates on decentralized networks called blockchains. Bitcoin was the fi…
Google Cloud Platform
I came into GCP knowing nothing. No cloud experience. No infrastructure background. Just a developer who wanted to deploy an app. Month one was chaotic. I…
Google Cloud Platform
My family wanted a website for our reunion. Photos, RSVP, schedule, updates. I built it in a weekend. Frontend on Firebase Hosting. A Cloud Function to han…
Advanced
Single AI agents are cool, but what happens when you have a team of them? I’ve been playing with multi-agent systems where one agent researches, another…
Google Cloud Platform
My family wanted a website for our reunion. Photos, RSVP, schedule, updates. I built it in a weekend. Frontend on Firebase Hosting. A Cloud Function to han…
Google Cloud Platform
I came into GCP knowing nothing. No cloud experience. No infrastructure background. Just a developer who wanted to deploy an app. Month one was chaotic. I…
TypeScript
If you're still writing plain JavaScript, TypeScript deserves your attention. It's JavaScript with static typing, which means you catch errors during devel…
GitHub
Your GitHub profile is the first thing many people see when they want to work with you. But if you’re like me, you have dozens of old, half-baked project…
DevOps
Taking your code from localhost to the live internet is a rite of passage for web developers. The options can feel overwhelming, but start simple. For stat…
GitHub
I am fundamentally lazy. I want to write code, push it, and then forget about it. GitHub Actions lets me do exactly that. It’s like having a tiny, unpaid…
CSS
Tailwind CSS has sparked a revolution in how developers approach styling. Instead of writing custom CSS in separate files, you apply pre-existing utility c…
Progressive Web Apps
Progressive Web Apps (PWAs) represent the best of both worlds—the reach of the web with the capabilities of native apps. A PWA is essentially a website t…
How to Use Claude
The people who get the most out of Claude aren't necessarily the ones doing the most impressive things. Often it's the people who've figured out simple, re…
Career
Your portfolio is often the deciding factor in job applications. It needs to do more than just list skills—it should demonstrate them. Start with a clean…
Google Cloud Platform
I woke up to an email from Google Cloud: "Your bill for this month is $10.52." I panicked. My little side project was supposed to be on the free tier. How…
React
Next.js has become the go-to framework for React developers, and for good reason. It solves problems that React alone doesn't address: routing, server-side…
Google Cloud Platform
I woke up to an email from Google Cloud: "Your bill for this month is $10.52." I panicked. My little side project was supposed to be on the free tier. How…
Ethics
As AI tools become more powerful and accessible, the onus is on us, the users, to employ them responsibly. Being an ethical AI user isn't about avoiding th…
Productivity
Feeling overwhelmed by your to-do list? You're not alone. In today's fast-paced world, staying productive is a constant challenge, but AI assistants are he…
AI Basics
Artificial Intelligence. It sounds like something from a sci-fi movie, doesn't it? The truth is, AI is already woven into the fabric of our daily lives, fr…
Static Sites
Astro represents a paradigm shift in how we build content-focused websites. Its core innovation is island architecture—you ship HTML by default and only…
Tools
If you're not using version control, you're essentially flying blind. Git has become the industry standard, and mastering a few key workflows will transfor…
Backend
Creating your own API is a milestone for any web developer, and Node.js with Express makes it surprisingly approachable. Start by initializing a project wi…
Technology
Google started as a research project. Two Stanford students wanted to rank academic papers. Then they realized the whole web needed ranking. That was 1998…
Side Hustle
Let me be real with you. I'm not some tech guru or YouTuber selling a course. I'm just a regular person who figured out a few ways to let AI do the boring…