spot_img
13.1 C
London
spot_img
HomeDevelopment

Development

AWS Living Tip Sheet: SAM

The AWS Serverless Application Model (SAM) is a CloudFormation transformation macro used to ease the creation of serverless applications. We can think of it as a lightweight CloudFormation template with the core purpose of creating serverless infrastructure as code.

AWS Simple Storage Service (S3)

S3 is object-based flat file unlimited storage. It's unlimited, but that doesn't mean we should throw files up there without thinking -- storage still costs money. It's not block-based, so it's not meant for storing operating systems or live databases. But any type of file can be stored (including database file backups), and each can be from 0 bytes up to 5 TB. General knowledge about S3 is one of the key categories in the AWS Certified Cloud Practitioner exam.

AWS Certified Cloud Practitioner

The AWS Certified Cloud Practitioner exam is the most basic AWS certification you could obtain. It certifies that you have a basic knowledge of the core features and benefits of AWS. It's a great kickoff point if you want to work towards other AWS certifications.

Setting Up a JavaScript Testing Environment in Visual Studio

I'm going to walk you through setting up your JavaScript testing environment in Visual Studio, but I'm not going to be explaining how to write Jasmine tests in this article. For that, I recommend going to the Jasmine documentation site for some good examples,...

Handling Session and Authentication Timeouts in ASP.NET MVC

There's a lot more than meets the eye when you need to handle session and authentication timeout scenarios in ASP.NET MVC. For some reason, I expected this to be a no-brainer when I first worked on an app that needed this functionality. Turns out...

Wrestling With the Telerik MVC Grid Control (Part 3)

In part 2 of this series on the Telerik MVC Grid control, we discussed the back-end code for supporting the master level of our grid. Here’s a list of tasks we need to take care of for the detail grid: Implementing...