🐍💡 ¿Sabías que en Python __init__ no es el constructor?

En Python solemos llamar “constructor” a __init__, pero técnicamente no lo es.
El verdadero constructor es __new__, el método que crea la nueva instancia de la clase.
Recién después de que __new__ devuelve el objeto, Python llama a __init__ para inicializar sus atributos.

¿Querés saber más? 👇

https://juncotic.com/poo-metodos-especiales-en-python/

#Python #Programación #DesarrolloSoftware #POO #CleanCode #AprenderPython #PythonTips

POO: Métodos especiales en Python - Junco TIC

Hoy veremos qué son los métodos especiales en Python utilizados en la programación orientada a objetos, cuáles son y cómo se usan.

Junco TIC

Writing Clean Code for Games (Industry Veteran) - YouTube

https://www.youtube.com/watch?v=Fxea6TG0PXk

#gamedev #cleancode

Industry Veteran About Coding for Games

YouTube

Clean code reads like well-written prose.

Read more 👉 https://lttr.ai/AmCE9

#java #CleanCode #LearningDesignPrinciples

The key to creating maintainable code

The power of communication and care

High-Level Developer

🚀 Khi tách monolith Rails thành các component độc lập (users, marketplace, payments, subscriptions) → dùng API công khai (facade) để truy xuất dữ liệu người dùng thay vì gọi trực tiếp model. Giảm coupling, tăng tính bảo trì và mở rộng. #Rails #Microservices #SoftwareArchitecture #Decoupling #KiếnTrúcPhầnMềm #RailsVN #Microservice #CleanCode

https://dev.to/rbglod/untangling-the-rails-monolith-quick-look-at-the-code-29e9

Untangling the Rails Monolith - quick look at the code

Last time I wrote about the data separation at the database level. As we already know each component...

DEV Community

Viết code sạch và dễ chia sẻ không chỉ giúp dự án hoạt động, mà còn giúp đồng đội dễ đọc, bảo trì và sử dụng. Áp dụng quy trình: đặt mục tiêu rõ ràng, dùng nhánh riêng cho từng tính năng (feat/auth-module), viết test trước, CI cơ bản, tài liệu đầy đủ, cấu hình qua .env, và commit message rõ nghĩa. Tạo docs/, chạy thử nhanh trong phút. Code sạch là thói quen! #CleanCode #DeveloperTips #LậpTrìnhSạch #MãNguồnSạch #DevWorkflow

https://dev.to/devinfo/how-i-build-clean-shareable-code-a-practical-guid

@joachim_rees jetzt bin ich doch einmal in den Keller gegangen und habe mir das Buch geholt...
#cleanCode #cleanAbap #abap
Exakt das wird auch in einem Beispiel verwendet, sogar in der gleichen Anweisung:

Tight deadlines. Failing builds. Stakeholders breathing down your neck. Sound familiar? That’s your 4th-quarter buzzer moment. Erik Pronk shows why embracing pressure might be your greatest asset.

Learn to thrive under fire: https://javapro.io/2025/09/23/the-michael-jordan-approach-to-software-engineering/
#CleanCode #DevOps #DevCulture

An article on effective documentation practices in software development, explaining how to structure specs, READMEs, JavaDocs, and clean code. https://hackernoon.com/if-your-documentation-takes-two-clicks-to-open-congrats-its-already-outdated #cleancode
If Your Documentation Takes Two Clicks to Open, Congrats - It’s Already Outdated | HackerNoon

An article on effective documentation practices in software development, explaining how to structure specs, READMEs, JavaDocs, and clean code.

String Concatenation - Dots vs Interpolation

💻 String Interpolation vs Concatenation! Junior developers use dot concatenation everywhere (hard to read!), while senior devs use PHP's string interpolation with curly braces. Plus, see how heredoc syntax makes HTML generation clean. Readable code matters! #PHP #StringInterpolation #CleanCode #Readability #BestPractices

#php #programming #coding #webdevelopment #softwareengineering #juniorvssenior #codereview #programmingtips #phptutoria...

manual

Even if you’ve read the JEPs—have you used #RecordPatterns to refactor old-school branching logic? @manojnp shows how to turn bloated instanceof trees into readable, idiomatic #Java code with just records.

👉 https://javapro.io/2025/01/15/record-patterns-building-on-java-records/

#Refactoring #PatternMatching #CleanCode

Record Patterns — Building on JAVA Records - JAVAPRO International

Though Records are just constant classes, the actual power of records comes with record patterns and this is about the usage of records.

JAVAPRO International