Streamline Your GitHub Workflow with Thothub
In today’s fast-paced software development world, managing and automating workflows is crucial. Developers rely on tools that streamline processes, reduce manual work, and ensure code quality. GitHub has become the go-to platform for version control, collaboration, and continuous integration (CI). However, as projects grow more complex, developers need additional tools to optimize their GitHub workflows. ...
Read moreMastering Progress Bars in SwiftUI
Progress bars play a vital role in user experience design. They provide visual feedback, letting users know that a task is in progress, whether it’s downloading a file, loading content, or completing a multi-step process. In SwiftUI, Apple’s declarative framework for building UIs, the ProgressView component makes it easy to integrate both determinate and indeterminate ...
Read moreComparing ASP.NET Core Razor Pages with MVC
In my previous post, we discussed the ASP.NET Core Model-View-Controller (MVC) web application framework and what better way to start our journey through ASP.NET Core. This framework is battle-hardened and has been around since early 2009. To touch on the essential components, we reviewed everything that gets scaffolded in a new project. While some of this ...
Read moreWhat’s in the ASP.NET Core MVC Template?
When starting a new project, templates can be beneficial to use as a starting point. The standard boilerplate code gets generated, and before you know it, the all too familiar “Hello World” text gets printed on the screen. It almost feels like magic. While new project templates are something we have become accustomed to, the code that ...
Read moreBuilding Flexible APIs with GraphQL and ASP.NET Core
I’ve been hearing more and more about GraphQL in recent years. As a developer primarily focused on the Microsoft stack, my response typically starts and ends with “oh, that sounds cool.” I mean, what options do we have in ASP.NET Core? This article will discuss what GraphQL is, its differences from REST, and how to ...
Read moreCreating a Serverless Docker Image
Serverless architectures have been all the rage these days. AWS, Azure, and the Google Cloud Platform have seen the benefits and embraced this new cloud development paradigm. With these tools available, building serverless architectures can be extremely advantageous to organizations that do not want to spend time and money managing their infrastructure in the cloud. ...
Read moreBuilding Serverless with Docker
If you have experience with Azure Functions or AWS Lambdas, then the title may sound a bit like an oxymoron. One of the key benefits of “Function as a Service” (FaaS) or “serverless” offerings is developers do not have to worry about infrastructural concerns such as Virtual Machines, Containers, and the like. You create a ...
Read moreExploring the Power of GraphQL in .NET
GraphQL is a powerful tool for creating efficient and flexible APIs in the dynamic world of web development. Together with the .NET framework’s powerful features, this powerful duo can completely transform how programs share and access information. In this piece, we’ll investigate “net graphql,” or graph query language, to find out what it is, how ...
Read more