Introduction about Netlify

Build, deploy, and managemodern web projects An all-in-one workflow that combines global deployment, continuous integration, and automatic HTTPS. And that’s just the beginning. Go beyond static Nail the fundamentals with rock-solid deployment Deploy to a redundant network of servers with built‑in continuous integration and HTTPS. Add dynamic functionality with built‑in applications Manage user identity, HTML forms, and even …

zencorder

It is a PHP library which provides video processing functionalities(similiar to ffmpeg) You can encode videos by this library. For example: Imagine you are going to extract thumbnails and create a preview when uploading a video on your php project. In the case, you can use this library https://github.com/zencoder/zencoder-php

Laravel Polymorphic Relationships

A polymorphic relationship allows the target model to belong to more than one type of model using a single association. One To One (Polymorphic) Table Structure A one-to-one polymorphic relation is similar to a simple one-to-one relation; however, the target model can belong to more than one type of model on a single association. For …

Angular Git commit message convention

There is no strict rule when we write commit messages.Using certain convention for commit messages will give several advantages. Angular team is using precise message format, which is clean and easy to look, contains only mandatary information. Goals allow generating CHANGELOG.md by script allow ignoring commits by git bisect (not important commits like formatting) provide …

Zip files on Client Side

You can make zip file with contents in javascript easily. var zip = new JSZip();zip.file(“Hello.txt”, “Hello World”); var dir = zip.folder(“images”);dir.file(“smile.gif”, imgData, {base64: true});zip.generateAsync({type:”blob”}) .then(function(content) { saveAs(content, “example.zip”); }); This code will download zip file in browser, tick,,,Please use this lib for frontend side zip file generation. Reference: https://stuk.github.io/jszip/