Posts

Showing posts with the label Dialogflow

Getting started with Django Web Framework and Docker

Image
Hey there, it is my first blog about Django Web Framework and Docker. This quick-start guide demonstrates what Django Web Framework is, why we use Django rather than other frameworks, and how to dockerize the Django web app. It seems very interesting to deploy a web app through Django. Figure 1-Django Docker Django Web Framework: Django is a high-level python web framework that enables the expeditious development of secure and maintainable websites. It is free and open-source, has a flourishing and agile community . Django helps you to write software that is complete, versatile, secure, scalable, maintainable, and portable. Django runs on many platforms like Mac OS, Linux, and Windows. Many prominent sites use Django Framework including Disqus, Pinterest, Instagram, Mozilla, and open stack. Now the question arises of whether Django is opinionated or not opinionated?  The proper way to handle a specific task is that opinionated frameworks should be used. In contrast, unopiniona...

What Is Git Software?

Image
Git was developed by Linux creator Linus Torvalds for managing the Linux kernel source code. When I started working with git, I directly started implementing the Git commands without understanding the meaning behind them. So, it had been an arduous task for me to use git. Since then, I have been studying git in a more comprehensive way. So, this article aims to provide an overview of git along with explaining the basics of it. INTRODUCTION TO GIT : Git is open source software for maintaining version controls and non-linear workflow effectively. It is used by programmers to manage the source code and maintain it collaboratively. It snapshots the directory trees of the file so data integrity is well maintained. It is very useful in handling small as well as large projects as it has a locally stored repository. Hence it fetches data from that local repository rather than fetching it from a remote server, making it faster than many other version control systems (VCS). Git provides security...

Getting started with Dialogflow

Image
Ever heard of magic? That is exactly what Dialogflow is. Figure 1 : Dialogflow It is a well-known fact that today’s world is thriving with data. With so many sources of data readily available like social media platforms, be it YouTube, Facebook, or Twitter, terms like ‘Data Analysis’, ‘ Machine Learning ’ , ‘Artificial Intelligence’ are seen to be prevailing. The question is “Is it necessary to understand these terms and Natural Language Processing (commonly known as NLP) completely to build a chatbot?” and a simple answer to this question is “NO”. This has become possible with the help of Dialogflow. In this series of posts, we will discuss all Dialogflow and how to create a chatbot using it. What is Natural Language Processing (NLP)? Figure 2 : Natural Language Processing (NLP) Here we will just discuss the tip of the iceberg named Natural Language Processing to get a gist of what Dialogflow does. Natural Language (example- English) is the language that we humans communicate. On the...