Systems | Development | Analytics | API | Testing

Development

Managing Asynchronous APIs (API:WORLD)

Polling-based APIs or the #RESTfulAPIs were the main building blocks of traditional integration stories. But with the need to respond to events in real-time, integration architecture has shifted from being polling-based to event-driven. With the emergence of reactive event-driven architecture, the asynchronous APIs were able to hold their distinct position in modern-day integrations. Even though the event-driven APIs provide their own advantages such as high resiliency, high responsiveness, and more, management of #asynchronousAPIs continues to be a challenge to the organizations.

UE5 Update: How Top Studios Manage Unreal Upgrades With Perforce Streams

Unreal Engine 5 is coming. Well, it is already here! Leading studios are making the switch. This means upgrading their toolsets, retesting their codebase, and figuring out how to manage changes to the engine moving forward. For leading game studios, a UE5 update (and customizations) can be safely managed with Helix Core — the game development standard for version control. It’s the tool trusted by 95% of top AAA studios.

Rollbar Log4J CVE-2021-44228 ("Log4Shell") Community Update

Your data is safe with Rollbar. A zero day in the Java ecosystem was discovered that could exploit Apache’s Log4J library. The vulnerability can, potentially, impact users of Rollbar’s Java SDK if they selected Log4J for their project. We recommend that all projects that are dependent on Log4J upgrade their dependencies so they require a version at/after 2.16.0.

(APIs) Quantum Duality of "API as a Business and Technology"

Every thriving API program leverages the elements from business and technology equally. Alignment of business and technology strategy, the synergy between business and technical teams, and adaptability to the changes coming from either business or technology are fundamental characteristics of such an environment. Asanka Abeysinghe, WSO2, Chief Technology Evangelist will look at four areas, federation and business models, moving to the cloud, polyglot and heterogeneous approach, and modernizing development during this talk. He will also share real-world examples based on his involvement in numerous success stories.

KuppingerCole API Management and Security Leadership Compass Names WSO2 an Overall Leader

In the KuppingerCole API Management and Security Leadership Compass 2021, Lead Analyst and CTO Alexei Balaganksi states, “Our general recommendation for customers remains the same: both API management and API security should not be considered as standalone, isolated components of your IT infrastructures.

5 Best Virtual Tech Conferences to Attend in 2022

While many events are now returning to live venues, hybrid or virtual conferences will still be important in 2022. This is good news for many application developers, who don’t have to take time off to travel and can enjoy high-quality talks and workshops from the comfort of their own desks.

How to Handle Unhashable Type List Exceptions in Python

The Python TypeError: unhashable type: 'list' usually means that a list is being used as a hash argument. This error occurs when trying to hash a list, which is an unhashable object. For example, using a list as a key in a Python dictionary will cause this error since dictionaries only accept hashable data types as a key. The standard way to solve this issue is to cast a list to a tuple, which is a hashable data type.