Our Contribution
Event Storming
Event Storming Workshop
Event Storming is far more than a simple collaborative exercise; it is a dynamic, interactive approach that brings together diverse teams across an organization to create a shared understanding of its processes. By visually mapping out events that define key business workflows, EventStorming fosters a deeper alignment between stakeholders, product owners, and developers. This alignment bridges communication gaps, breaking down silos that often hinder effective collaboration.
The result is a cohesive vision of how the organization operates, empowering developers to design and implement software solutions that not only reflect the intricacies of the business but also enhance its overall efficiency and adaptability. With EventStorming, organizations can ensure that technical implementations resonate with strategic goals, creating a seamless integration between business and technology.




eHeads : Engineering Heads
Engineering Heads Meetup
We extend our heartfelt thanks to all attendees who joined the EHeads event. A special appreciation goes to our speakers, Marco Palinar, Matthew Cua, and Michaelle Tabilin, whose invaluable expertise fostered growth and innovation through their diverse perspectives. Your participation means a great deal to us, and we look forward to your continued presence at our meetups, as we deeply value your contributions to our vibrant community.
During the meetup, we kicked off with a presentation on Phoenix Projects, where Marco Palinar shared his extensive experience in handling high-stakes projects. He provided invaluable insights into navigating complex challenges and ensuring project success against all odds.
Matthew Cua delved into the critical issues of our time with a presentation on climate change. He explored the impacts of climate change and the opportunities it presents for innovation and resilience, sharing the latest strategies to tackle instability and drive sustainable growth.
Finally, Michaelle Tabilin presented on the differences between technical and non-technical business analysts, highlighting how each type brings unique value to projects and how to leverage their skills for optimal business outcomes.




IIBA Philippines' Annual Kickoff
Pathways Forward
We were proud to sponsor the IIBA event on May 18, 2024. The day featured engaging discussions, valuable networking opportunities, and innovative ideas in business analysis. A heartfelt thank you to all who participated in this remarkable event, as we are committed to fostering the growth of our professional community.
The event concluded with reflections on the chapter's accomplishments over the past year, highlighting its objectives and strategies for further developing the local business analysis community. Attendees also learned about exciting upcoming initiatives, particularly in professional development, networking, and advancing business analysis practices.




University Activities
Ateneo de Davao IT Week




Asian Business Award
Asean Business Awards 2023
HEALTH RESILIENCE CORPORATE | HEALTH ACHIEVEMENT AWARD

LJ Argudo, O&B’s Chief Administrative Officer, honored to receive the award from Mr. Anuraj Shankar, who served as one of the judges at the ASEAN Business Awards 2023.
Exciting News! We're thrilled to announce that Orange and Bronze Software Labs, Inc. has been honored with the prestigious ASEAN Business Award in the Corporate Health Achievement category!
We extend our heartfelt gratitude to the ASEAN Business Advisory Council for recognizing our unwavering dedication to corporate health. This award is not just an accolade; it's a testament to our commitment to fostering the best workplace culture for our employees.
At O&B, we believe that mental health is as vital as physical health. That's why we've implemented a comprehensive mental health program to provide our team with the right support they need. We care deeply about their overall well-being, and this holistic healthcare program is designed perfectly for our people.
This award isn't just about us; it's about every member of our talented team. As we move forward, we're excited about the limitless opportunities for growth in the ASEAN business community, including innovation and regional collaboration. At O&B, we're passionate about helping businesses find solutions to their digital roadblocks. Our work has the power to transform industries and enhance people's lives.
Thank you once again for this incredible honor. We look forward to continuing our journey of excellence and making a positive impact on our community and beyond.
Asean Business Awards 2021
SME EXCELENCE | EMPLOYMENT AWARD

Discover a key highlight from the awards ceremony featuring
Calen Legaspi, O&B's Co-founder and Chairman, as he delivers a brief speech.
Click here to watch the video.
We’re honored to share that O&B received the ASEAN Business Award for the SME- Employment Excellence Category. We would like to thank the ASEAN Business Advisory Council (ABAC) for recognizing our endeavor to develop a stimulating and supportive workplace that translates to having a committed, effective, and motivated workforce.
O&B continuously aims to build a sharing culture where we are able to impart best practices to improve the quality of software development in the Philippines.
We would like to dedicate this award to past and present O&Bers for being committed to making this company a learning organization. Their dedication to learning and sharing sustains our reputation for software development excellence. We would also like to give thanks to our valued clients who have trusted us as their partner when it comes to software development. The projects that were entrusted to O&B have played a vital role in the growth of O&Bers.
PSIA Enablement Seminars
PSIA 51ST ENABLEMENT SEMINAR
O&B proudly participated in the PSIA's 51st Enablement Seminar on September 14, 2023, at the FEU Tech Innovation Center.
Esmeraldo De Guzman, our Test Manager, expertly explored the nuances of software testing. His session offered valuable insights into crucial strategies, essential tools, and fundamental concepts vital for maintaining software quality and ensuring a seamless user experience.


PSIA 50TH ENABLEMENT SEMINAR
PSIA 49th ENABLEMENT SEMINAR
PSIA held its 49th Enablement Seminar, “Things You Didn’t Know You Could Do with PostgreSQL”, today at the O&B HQ in Legazpi Village, Makati.
The event speakers, Calen Legaspi (O&B Chief Scientist & Founder and PSIA Capability Director) and Adrian Dayrit (CTO of Lyon.com.ph and Boozt.io), tackled how to maximize the capabilities of an RDBMS and how PostgreSQL data types can solve many other problems software developers and engineers struggle with.
PSIA’s Enablement Seminars are half-day sessions designed to tackle emerging and relevant topics in the software and ITO sector.


Java User Group Philippines
Capping Off the Year: Java User Group Philippines Last Meetup of 2024
For over a decade, Orange & Bronze Software Labs has been a steadfast supporter of the Java User Group (JUG) Philippines, hosting and sponsoring meetups to empower local developers.
At the final JUG PH meetup of 2024, the event featured an exceptional lineup of speakers:
- Tristan Mahinay reflected on the 12 JUG PH meetups held throughout the year, celebrating the vibrant and growing Java community.
- Calen Legaspi, O&B’s Chairman, delivered an inspiring introduction about O&B’s commitment to fostering Java innovation and introduced the keynote speaker.
-
Christian Ullenboom, Java Champion and renowned author, presented an engaging session on Java's latest features, including:
- Markdown Documentation Comments - Instead of Javadocs, you may now use Markdown to document your code.
- Deprecate the Memory - Access Methods in sun.misc.Unsafe for Removal - With safer APIs available, most sun.misc.Unsafe methods are now being deprecated in favor of supported alternatives.
- Changes in Console Class - Since Java 23, the following new methods were added println(obj: Object): Console, readln(prompt:String): String, etc.
- Class-File API - aims to provide a standardized approach for parsing, generating, and transforming Java class files. Useful for Generating proxy classes dynamically, Implementing interfaces at runtime, Adding instrumentation for monitoring/logging, Implementing aspect-oriented programming features, Static code analysis, ORM implementations, RPC stub generation, etc.
- Stream Gatherers - Stream Gatherers API enables custom and complex transformation. With this, you may create your custom intermediate operators.
- Module Imports Declarations - The Java Module Import feature allows importing all public, top-level types of an entire module with a single line.
- Implicitly Declared Classes and Instance Main Methods - With implicit class, you can entirely skip type declaration, java.base and and static import java.io.IO are implicitly imported. On the other hand, with JEP 477, Java allows a simpler main method without public, static, or String[] args. This visibility can also be protected.
- Primitive Types in Patterns, instanceof, and switch - You may now use primitive types on you switch statements such as boolean, long, float and double. More over, instanceof now supports primitive types, allowing safe casting checks. Safe Casting: Checks if primitive conversions are safe before casting, with runtime checks for potentially lossy conversions when needed (e.g., int to float).
- Vector API - an API to express vector computations that reliably compile at runtime to optimal vector instructions on supported CPU architectures, thus achieving performance superior to equivalent scalar computations.
These advancements empower developers to write cleaner, more efficient, and maintainable Java applications. Attendees left with actionable insights and a deeper understanding of how to leverage these features in their work.
For those who missed the event, you can access Christian's presentation slides here: Christian Ullenboom’s Presentation Slides.
As a proud sponsor, Orange & Bronze continues to champion initiatives that bring together developers, encourage knowledge-sharing, and celebrate the impact of Java in the tech industry.




Celebrating 25 Years of JCP: O&B's Commitment to the Java Community
For over a decade, O&B has been a proud supporter of the Java community, hosting and sponsoring Java User Group (JUG) Philippines events. These meetups provide a platform for local developers to share knowledge, network, and celebrate Java’s impact on software development.
As part of the global celebration of 25 years of the Java Community Process (JCP), O&B was featured in a commemorative video highlighting JUGs around the world. This recognition underscores our commitment to fostering collaboration and innovation in the Java community.
OpenAPI Development and API Testing in Spring Boot | Java User Group Philippines 9th Meetup
At this month's meetup, we dive deep into the world of APIs.
Stephan Wissel shared invaluable insights on OpenAPI while Lino Borsoto highlighted the best practices for API testing using Spring Boot.


Explore the Java Universe | Java User Group Philippines 7th Meetup

Bright minds in technology and innovation were brought together at the Java User Group Philippines Meetup last April.
This session had three engaging topics like Refactoring in Java, Modularity with Spring Modulith, and Instrumenting & Visualizing Spring Boot apps using Prometheus and Grafana.
Spring Certification and Gen AI in Java | Java User Group Philippines 5th Meetup
O&B hosted another Java User Group Philippines meetup last November.
Featuring esteemed speakers, Kenneth Peñaranda and Jansen Ang, our attendees delved into the intricacies of the Spring Professional Certification journey and Developing LLM-Driven Java Applications using LANGCHAIN4J.


Discover Cloud-Native Java Innovations | Java User Group Philippines 3rd Meetup

Last August 29, 2023, O&B had the pleasure of hosting another engaging Java User Group Philippines Meetup.
IBM Architect and Developer Advocate, Yee-Kang, enlightened the audience with a talk on 'Discovering Cloud-Native Java Innovation.' It was a wonderful opportunity for our community to explore the cutting-edge trends in Java development.
Quarkus and Openshift Development| Java User Group Philippines 2nd Meetup


Softcon
The Philippine Software Industry Conference 2018
O&B actively participated in SOFTCON 2018: The Philippine Software Industry Conference, with Calen Legaspi and Lorenzo Dee taking the stage as speakers.
Calen delved into the common pitfalls faced by Scrum teams, exploring both the strengths and limitations of this framework. He also offered insights on how to enhance the software development process to better address real-world challenges.