Systems | Development | Analytics | API | Testing

%term

Dynamics 365 Success - Peter Thompson, Transformational Leader | Testhouse Discussion - Part 3

Aspects critical to Dynamics 365 implementation success - Peter Thompson | Testhouse Roundtable Discussion - Part #3 As you go through the testing life cycle, people will be looking at you to be the expert. Not just the expert in testing but the expert in the system. So, build the best multifunctional team that supports the end-user, the development team, business analyst and yourselves. Listen to Peter Thompson, the Transformational Leader, speak on aspects that are critical to a successful Dynamics 365 implementation.

Dynamics 365 Outcome - Steve Williams, CRM Transformation | Testhouse Discussion - Part 4

Understanding Dynamics 365 Outcome - Steve Williams, CRM Business Transformation | Testhouse Discussion - Part #4 If you haven't got clarity on the purpose of CRM and what Dynamics 365 outcome looks like, then you can't possibly deliver a successful CRM. Listen to Steve Williams, CRM Business Transformation, speak on aspects critical to successful Dynamics 365 implementation.

Embracing Dynamics 365 - Stefano Demiliani, Microsoft MVP | Testhouse Discussion - Part 5

Embracing Dynamics 365 - Stefano Demiliani, Microsoft MVP | Testhouse Discussion - Part 5 Organisations are not ready to adapt their business processes to Dynamics 365, which is the number one reason for CRM implementation failure. Listen to Stefano Demiliani, Microsoft MVP on the best practices to achieve Dynamics 365 implementation success.

MS Dynamics 365 Quality Assurance - Sug Sahadevan, Founder & CEO | Testhouse Discussion - Part 1

MS Dynamics 365 Quality Assurance - Testhouse Roundtable Discussion - Part #1 Microsoft Dynamics 365 (D365) is a suite of enterprise applications for any business function. D365 is relatively complex with frequent application updates requiring verification of thousands of business-critical processes. Businesses must ensure the highest quality implementation to extract maximum return on investment. In this 6 part series, Sug Sahadevan, Founder and CEO of Testhouse host the discussion on aspects that are critical to Dynamics 365 implementation success.

Dynamics 365 Quality Assurance | A Testhouse Discussion

Dynamics 365 Quality Assurance | A Testhouse Discussion Microsoft Dynamics 365 (D365) is a suite of enterprise applications for any business function. D365 is relatively complex with frequent application updates requiring verification of thousands of business-critical processes. Businesses must ensure the highest quality implementation to extract maximum return on investment. In the 5 part series, we discuss aspects that are critical to Dynamics 365 implementation success.

Powerful Caching with Redis for Node.js Applications

Regardless of the tech stack used, many developers have already used Redis or, at least, heard of it. Redis is specifically known for providing distributed caching mechanisms for cluster-based applications. While this is true, it’s not its only purpose. Redis is a powerful and versatile in-memory database. Powerful because it is incredibly super fast. Versatile because it can handle caching, database-like features, session management, real-time analytics, event streaming, etc.

Non-Breaking Breakpoints: The Evolution Of Debugging

Since the beginning of time, back to before humans invented fire, there were two traditional ways to debug applications: one way -after having invented hieroglyphics, of course - was by reading log lines and the other was by using the common debuggers that surrounded a cave dev’s cave. It’s safe to say that society has progressed since then and, luckily, so too has traditional debugging.

Building Custom Servlets for C++ Microservices in Docker

In a previous post, C++ Microservices in Docker, we worked through the steps for creating a docker container that exposes a HydraExpress servlet container. We successfully deployed our HydraExpress server instance in Docker, however all that was available were the default example servlets. User application code wasn’t exposed. Let’s fix that and look at deploying custom C++ Servlet instances within the HydraExpress Docker container.