Top to Bottom with Angular and .NET Core

Top to Bottom with Angular and .NET Core

by 

|

|  

in

Building modern software often involves a Single Page Application (SPA) calling to a backend service. This is pretty straightforward, but there are more steps than you would expect. In this blog post, we will walk through creating an Angular application that calls a .NET Core backend. Step 1 – Create a very simple HTML web…

Read more…

Logging and AWS Beanstalk

Logging and AWS Beanstalk

by 

|

|  

in

After creating an ASP.NET Beanstalk application, you might be wondering, “Where are my logs?” Without configuring CloudWatch, my logs do show within the Beanstalk UI. Note: The below image assumes no CloudWatch. After clicking Logs, you need to click Request Logs and then select how much you want to see. I usually select Last 100…

Read more…

Quick Thoughts on Google’s Media CDN

Quick Thoughts on Google’s Media CDN

by 

|

|  

in

Years ago, I worked at a CDN company, so I am always interested in what is going on in the content delivery space. Where is the industry headed? Last week, a major shake-up in the space occurred. Google is now enabling people to deliver videos with the same platform Google uses for YouTube. With more…

Read more…

A GitHub Action for Testing Against a PostgreSQL Database

A GitHub Action for Testing Against a PostgreSQL Database

by 

|

|  

in

Automated testing is an integral part of any software development project. Developers should be building these tests while they work on the actual code. A significant value of automated tests is that they can be run on every pull request. This can ensure that the tests are run in a consistent environment and not just…

Read more…

FU IT

FU It

by 

|

|  

in

The future isn’t certain, but my decisions today will impact tomorrow. We had agency in the past, we have agency in the present, and that agency will impact our future. Sometimes we joke that a particular problem is for “Future Us”. Sometimes we shorten it to “FU It”, Future Us it. This is a silly…

Read more…

Postman Tests

Postman Tests

by 

|

|  

in ,

Postman is a tool we use to test our APIs while building them. Its UI helps make this stage in development quick and easy. But a lot of the work we do in Postman is often single-use. We write the tests, but why can’t we keep them? Actually, we can keep them. Follow along as…

Read more…

Estimating Your Cloud Costs

Estimating Your Cloud Costs

by 

|

|  

in ,

Estimating cloud costs isn’t always easy, especially if your goal is to be super exact. The desire to be super precise will probably cause you to spend more time estimating the costs of resources than the resources might cost themselves. Always remember that development time is expensive. Trying to estimate down to the dollar isn’t…

Read more…

SQL Server Single-User Mode

SQL Server Single-User Mode

by 

|

|  

in ,

Sometimes you can’t get into SQL Server. Maybe you forgot a password, or something got misconfigured. You are locked out. What to do when this happens? My go-to is putting SQL Server in Single-User Mode. Doing this is pretty straightforward. First, open a command shell in administrator mode. Then stop the SQL Server Service. net…

Read more…

CouchDB Views

CouchDB Views

by 

|

|  

in ,

CouchDB is a pretty amazing technology, but it is a little unique. With many data stores, you just query data. You can do that with CouchDB’s Mango queries, but CouchDB’s primary way to query data is by using views. Views are pre-created, much like creating any document within CouchDB. After creating your view, you can…

Read more…

Caddy

Caddy

by 

|

|  

in ,

A lot of the software we build involves hosting some part of it on a web server. Today, most of what we host is hosted in the cloud PaaS (Platform as a Service). This means we don’t have to look into some more classic hosting options such as Apache or IIS; the platform solves this…

Read more…