Systems | Development | Analytics | API | Testing

Development

The 9 Most Popular PHP Frameworks for Developers

Web development before the age of web frameworks is difficult to imagine. Setting up a robust, dependable web app from scratch is a daunting task that requires years of knowledge and experience. Nowadays, however, with the help of effective, easy to use web frameworks, it doesn’t take more than a few minutes to get going.

How Log Management Underpins The Internet of Things (IoT)

The Internet of Things (IoT) is a term for the ever growing number of internet connected devices that fall beyond the realm of your typical laptop, desktop computer or smartphone. Many of us already own and use IoT devices on a daily basis, these could be anything from "smart" versions of appliances like refrigerators, thermostats and coffee machines through to your expected IoT devices such as Amazon’s Alexa & Google’s home speakers.

The Best Tools for Building Progressive Web Apps

The year 2015 was marked by a new paradigm shift in web development. Google introduced Progressive Web Applications and JavaScript libraries and frameworks, such as React.js, Angular.js or Vue.js, created new development methodologies. By 2020, the web environment is flooded with PWAs based on reactive programming and built with cutting-edge frameworks.

MISRA Compliance:2020 and Other Panic Attacks

We are delighted to being invited again to Germany’s leading embedded software conference the ESE Kongress. We will be focusing on the MISRA language standard as commonly used in the automotive, avionics and wider safety critical space and educate about the importance of MISRA Compliance as defined in 2020. MISRA can be overwhelming for new projects and it is essential to understand the constraints as well as the freedoms regarding MISRA compliance.

Containers vs. VMs: Which Should You Use?

Both containers and virtual machines are virtual environments that comprise a number of computing components and are independent in nature, thereby allowing developers to scale applications in isolated runtimes. Both of these concepts aim at providing independent sets of resources to individual computing environments to ensure quick and reliable application performance.

The Modern Developer Workflow with Waypoint

Modern developers are under ever increasing pressure to deliver software applications to the business in record time. This means shorter development cycles and a push to have code production ready as early as possible. In addition, many development teams no longer throw the code over the metaphorical wall to be handled by operations and production support teams, but rather oftentimes own the entire end to end delivery chain.

JavaScript Internals: Garbage Collection

Garbage collection (GC) is a very important process for all programming languages, whether it’s done manually (in low-level languages like C), or automatically. The curious thing is that most of us barely stop to think about how JavaScript — which is a programming language, and hence, needs to GC — does the trick. Like the majority of high-level languages, JavaScript allocates its objects and values to memory and releases them when they’re no longer needed. But, how?