Posts

Notes taken from GitHub Tutorial

Image
Git Hub Tutorial: EDUREKA https://www.youtube.com/watch?v=xuB1Id2Wxak Git is a distributed version control that supports distributed non-linear workflows by providing assurance for developing quality software. Features of Git: Lightweight - Uses lossless compression technique to compress the data Speed – GIT is 10 times faster that other version control softwares.   Reason – it is written in C. Secure – Uses SHA1 to name and identify objects Repository: A directory or storage space where your projects live in. There are two types of repository. ·          Central Repository ·          Local Repository Git Operations and commands: ·          Intall Git for windows ·          Navigate to a folder where you want to create your project. ·  ...

Notes Taken from Angular Tutorial

Image
Angular Tutorial: - Edureka Reference URLS: https://www.youtube.com/watch?v=w6kwlyiJ5bM https://www.youtube.com/watch?v=pTec1e8oyc8 https://www.youtube.com/watch?v=JmDBGhGWi8Y Angular advantages:  What’s new in Angular 8: Ivy Engine. (this may come in full fledged version in Angular 9) Ivy is the name given to Angular next generation compilation and rendering pipeline.  This will help you to preview your website to see how it works. Bezel Engine Differential loading Backward compatibility makes the upgrade process for large projects easier. Opt-in usage sharing Angular team will be able to get anonymous information with your consent to keep track of the commands that are used and time taken to build. Dependency updates Angular has updated dependencies on tools like rxjs, node and typescript.  This is done for better performance. Web Worker bundling This allows you to write code that run separately from the...