Object-Oriented Programming
Object-Oriented Programming in Python
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…
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 "classes"
15 articles found
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…
Modern Java
For years, Java developers complained about boilerplate. We had to write constructors, getters, equals, and hashCode for simple data carriers. Lombok fixed…
Google Cloud Platform
I was storing years of old backups, logs, and user uploads in standard Cloud Storage buckets. My bill was growing every month. Then I discovered storage cl…
Google Cloud Platform
I was storing years of old backups, logs, and user uploads in standard Cloud Storage buckets. My bill was growing every month. Then I discovered storage cl…
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…
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…
CSS
There’s nothing more frustrating in CSS than writing a style, inspecting the element, and seeing it crossed out. That’s a specificity issue. CSS rules…
Business
Before buying, focus on these 4 key factors: Processor (Brain) → Minimum Intel i3 / Ryzen 3 RAM → At least 8GB (16GB recommended) Storage → SSD…
Functional Programming
When Java 8 dropped, everyone started using lambdas, but many stopped there. Functional programming is more than just syntactic sugar for anonymous classes…
Advanced Java
Annotations in Java are like magic markers. They started as just metadata (`@Override`), but with frameworks like Spring and Lombok, they have become power…
Standard Library
Python's standard library includes a collections module that provides specialized container datatypes. These can make your code more efficient and expressi…
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…
JVM Languages
When Kotlin first came out, I thought it was just a fad. But after Google made it first-class for Android, and I saw my colleagues writing less boilerplate…
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…
Advanced Java
The biggest criticism of Java in the serverless world has been startup time. A cold start of a Spring Boot app can take 20-30 seconds. GraalVM changes that…