Using RegEx In Visual Studio Code

Using RegEx in VSCode For Powerful Searching

Alex Cassells .NET, Articles, Programming, React Leave a Comment

This post demonstrates some of my favorite search techniques that work well in VSCode, including some basic RegEx (Regular Expressions) expressions that will help you find exactly what youโ€™re looking for in an unfamiliar code base. We will cover VSCode file type inclusions and exclusions, single-line multi-term searching, conditional searching, and more. RegEx can be intimidating to people who arenโ€™t used to using it, but luckily the RegEx expressions described in this post are very easy to remember and incredibly powerful.

Testing Spring Boot APIs with Rest-Assured Header image

Testing Spring Boot Rest APIs with Rest-Assured

Jonny Hackett API Development, Articles, Development Technologies & Tools, Java, REST, Spring, Spring Boot, Testing Leave a Comment

Creating RESTful APIs with Spring Boot is a straightforward process, making it a popular choice for a variety of applications, from UI to batch processing. The same API created can be used anywhere, whether itโ€™s called from a UI application or batch applications. However, testing these APIs to ensure they work correctly can be challenging. In this article, I’ll introduce …

What is MSAL and How Does It Work?

Zach Gardner .NET, Keyhole, Videos Leave a Comment

MSAL, or Microsoft Authentication Library, is an essential tool for developers aiming to implement robust authentication systems efficiently. It streamlines the integration of security protocols into applications, supporting various authentication methods such as OpenID Connect and JWT (JSON Web Tokens). MSAL enables developers to concentrate on application functionality while maintaining high security standards. Security in Technology The importance of robust …

Next Level with Tom Hill, Engineering Director at Corsearch

Keyhole Software Insurance, Next Level, Podcasts Leave a Comment

In the latest episode of Next Level, Zach has the pleasure of chatting with Tom Hill, Engineering Director at Corsearch, about his career journey and insights into tech leadership. Key takeaways for this week’s episode include… Non-Linear Career Paths: Tom shares his non-traditional journey into tech, starting as a creative and transitioning through various roles, including graphic design and UX/UI …

Using Terraform to Create a Cloud Function on Google Cloud Platform

James Fielder Architecture, Articles, Cloud, Google Cloud Platform, Infrastructure As Code (IaC) 1 Comment

In this post, we will walk through using Terraform to create a Google Cloud function that triggers when a file is uploaded and outputs the file details in the log. This process has wide-ranging applications and could be beneficial in a few business environments, such as: Real-time data processing in an online shopping/e-commerce environment when a customer orders a product, …