Monday, 27 August 2018

Quiz Application Angular-6 - Sandeep Kanao


Quiz Application - Angular 6 - Sandeep Kanao

Source is here

Thursday, 9 August 2018

Abstract Factory Pattern - Python - Sandeep Kanao



GIT Link

Abstract-Factory-Pattern--Python

Abstract Factory Pattern - Python - Sandeep Kanao
In this example, Document objects (Word, PDF, HTML etc) interact with Parse objects (WordParser1, WordParser2, PDFParse, HTML parser etc.), but there are different types of Documents and Parsing depending on document types and parsing technics.
One document type can have more than one document type parser (exampe wordtype document can have wordtypedoc1 parser, wordtypedoc2 parser)
Each of the factory methods creates a different kind of object.
The idea is that at the point of creation of the factory object, you decide how all the objects created by that factory will be used. - Sandeep Kanao

Saturday, 4 August 2018

Building a REST API in Python using the Django framework - Sandeep Kanao


Building a REST API in Python using the Django framework – Sandeep Kanao

Prerequisites
You need Python 3.x for this project to work properly. Also, make sure you use a virtual environment to isolate this project from other work you're doing on your computer.


Link To GIT