Hussnain Ahmadpsychocoder.hashnode.dev·Aug 14, 2024Weekly Dev Journal - Episode # 13Hello and welcome to the 13th episode of WEEKLY DEV JOURNAL 🎉 I hope you had a great week of learning and achieving your goals. Let's get started with this episode. Learnings Clarity AI This was the project that I worked on for this week, its almos...DiscussWeekly Dev Journalwklyship
André Felipe Costa Bentobentodev.hashnode.dev·Aug 8, 2024Understanding Java Reflection: A Comprehensive GuideReflection is a powerful feature in Java that allows programs to inspect and manipulate the properties of objects at runtime. Despite its complexity, understanding Reflection can significantly enhance your ability to write dynamic and flexible code. ...DiscussJava
Tomohisa Takaokatomohisa.hashnode.dev·Aug 3, 2024Reflections on Using C# Reflection on F# Code.NET, the framework on which C# runs, supports multiple languages, one of which is F#, a functional programming language. We developed Sekiban, an event sourcing CQRS framework, using C#. I have been trying various things for a while, thinking that F...Discuss·142 reads#fsharp
Gift Mugwenigiftmugweni.hashnode.dev·Jul 27, 2024Why do I write?In the past few weeks, I found myself struggling to write an article. It's interesting how easily one can begin a task and as time passes by, slowly, ever so slowly, you find your motivation diminishing. You question who you are to do this action. Wh...Discusswriting
Remis Bremisb.hashnode.dev·Jul 20, 2024Exploring Hashnode: Random ReflectionsI will keep my post as brief as possible, avoiding unnecessary details. I prefer to share my thoughts concisely and directly. I've recently been exploring LinkedIn as a passive user, to understand the value the value professionals derive from the pla...DiscussLinkedIn
Airat Yusuffkhairahscorner.hashnode.dev·Jun 27, 2024Halfway Through 2024, So Let's Reflect On My Job Search Journey...It's 10:35PM on the 27th of June, 2024, and I got this urge to pen down my thoughts. So, I opened up my blog after nearly 6 months since my last post and started writing. Simply put: This year has been, well, something🙂 We are only halfway through, ...Discuss·36 readsReflectionsreflection
noemiin-a-year.hashnode.dev·Jun 21, 2024If I died in a year ... would I?This is pretty strange, as I've never set out to write these kinds of thoughts openly, but I find myself in a moment of unclarity, scraping for control over the future. I'm telling myself, you can't control the future, nobody can, and yet there is a ...DiscussPhilosophy
Chetan Dattachetan77.hashnode.dev·May 25, 202413 Java - ReflectionWhat is Reflection? This is used to examine the Classes, Methods, Fields, Interfaces at runtime and also possible to change the behavior of the class too. For example: What all methods present in the class. What all fields present in the class. Wh...DiscussJavaJava
Vishal Yadavninjacatcodeblogs.hashnode.dev·May 6, 2024Making Factory Pattern Extensible using Java ReflectionsIntroduction In the realm of software development, maintaining code that is both extensible and robust against frequent changes can be challenging. The Open/Closed Principle, a core tenet of SOLID design principles, states that software entities shou...DiscussJava
JaeHyun Shimjshims.hashnode.dev·Apr 12, 2024Understanding Java Annotation And ReflectionAs a Spring developer, I found myself needing to brush up on Java annotations and Reflection. While working on tasks like data validation and JPA, I realized I was using these features without a solid grasp of the underlying concepts. To clear up my ...Discuss·49 readsToday I Learnedannotations