Skip to content

software

40 articles tagged “software”

Evaluating LLMs Using DeepEval

Blog

July 29, 2026

Evaluating LLMs Using DeepEval

Introduction At the time of writing this blog, it seems the most popular topics in software engineering are Artificial Intelligence (AI) and Large Language Models…

Realtime updates with Hasura GraphQL Engine

Blog

January 7, 2020

Realtime updates with Hasura GraphQL Engine

What is a realtime update? When data gets updated in the source (database, service) and that change gets instantly propagated to the other side (browser,…

Haufe-umantis AG: Building a working software in 100 days

Blog

December 17, 2019

Haufe-umantis AG: Building a working software in 100 days

About the Client Based in Switzerland, umantis AG was a pioneering European provider of talent management solutions before merging with the German Haufe group in…

Becoming A Data Science Unicorn – Part 2

Blog

December 11, 2019

Becoming A Data Science Unicorn – Part 2

I hope you have already read the first part of this Series and found your strong WHY, if you have not - you know what to…

Elasticsearch and near realtime analytics

Blog

October 22, 2019

Elasticsearch and near realtime analytics

Recently, we got a request to create an analytics dashboard for the application's data we have. The data was stored within PostgreSQL and our initial…

We created the perfect role-play for future programmers

Blog

October 11, 2019

We created the perfect role-play for future programmers

According to Atlanters, the enthusiasm and energy of students just beginning their careers in IT, is a source of inspiration. The excitement they feel about…

Express Middleware & Memoization

Blog

August 6, 2019

Express Middleware & Memoization

Express middleware Middleware functions are functions that have access to the request object (req ), the response object (res ), and the next function in…

Code Refactoring & Decompose Conditional Technique

Blog

July 18, 2019

Code Refactoring & Decompose Conditional Technique

Code refactoring Refactoring is the process of changing a software system in such a way that it does not alter the behavior of the code…

Bootstrap partial Sass & ESLint

Blog

July 9, 2019

Bootstrap partial Sass & ESLint

Bootstrap partial Sass Bootstrap is a component-based library for developing web UI. Not all components are used when developing frontend with Bootstrap. In order to…

Symbols and Variables in Ruby & Destructuring in JS

Blog

June 12, 2019

Symbols and Variables in Ruby & Destructuring in JS

Symbols and Variables in Ruby Symbols and variables are very different things in Ruby. Symbols are like strings, they’re immutable and behave like constants. All…