Posts

Showing posts from July, 2017

What Does an AWS Solutions Architect Do?

The AWS Architect is responsible for designing  AWS cloud instances . An AWS Architect act as consultant, facilitator, and in-house expert on the platform.  This requires in depth knowledge on AWS offerings and services.  How To Become an AWS Certified Solutions Architect? AWS Certified Solutions Architect  certification is a good foundation for other certifications. It is about architecture rather than implementation. AWS Certified Solutions Architect  certification has two levels: 1. Associate 2. Professional. The exam consists of 60 questions, and the minimum passing score of 65% of the total score. The duration of the exam is 80 minutes. The exam is divided into 4 sections: Designing highly available, cost efficient, fault tolerant, scalable systems (60%) Implementation/Deployment (10%) Data Security (20%) Troubleshooting (10%) More details about AWS Certifications

Asp.net MVC vs Asp.net Core MVC

The main difference between ASP.NET and ASP.NET Core are as described below: ASP.NET MVC ASP.NET MVC gives you a pattern-based way to develop dynamic websites and applications.  ASP.NET MVC isn't open source. It's controlled and developed by Microsoft.   ASP.NET Core Free & Open Source Asp.net Core MVC Framework is a 100% free and open source project. and ASP.NET Core available on Github . It is powered by a massive world-wide community. It is Cross-Platform You can use it on Windows, Mac or Linux. Lighter version of assemblies with non dependent frameworks. Ready for Cloud hosting.  Frameworks are a complete rewrite. The default project structure got renewed with type scripts configurations. Improved new security features Does'nt need IIS for hosting Builtin Dependency Injection support Everything is json Replacing XML, JSON is becoming the data interchange format of the web. JSON is processed more easily because its structure is s...

Migrating to asp.net MVC Core

When we create ERP web applications, we often choose ASP.net technology over PHP or other technologies. ASP.net MVC Core is the new cross-platform( Windows, Mac, Linux OS)  development framework from Microsoft.  ASP.net Core is based on the same principles you've used in ASP.net MVC, There are so-many improvements in the framework and tooling, some are revolutionary. The best way to learn new technologies is by comparing it with the old and finding out what has changed. The basic of Model View Controller architecture still remains the same and we can say that from coding perspective there aren't many changes, but there are framework level changes, project structure changes, hosting and deployment changes and many more. So let’s dive in. ASP.net MVC Core improvements Cross-platform ( Windows, Mac, Linux OS) Built on .NET Core, which supports true side-by-side app versioning New tooling that simplifies modern Web development Single aligned web stack for MVC and Web ...