EN / USD
220 Items
 Home
Blog
Introduction to Python
Introduction to Python, python basics, getting started with python, python intro, python learning, python programming
Greetings! I sincerely hope everything is going well for you all. In this course, we are going to learn step-by-step how to program in Python. The course covers all you need to know about the Python language, from installation to advanced topics. In addition, we'll talk about Python career jobs and do a few projects to strengthen your skills. According to my research, Python is among the top programming languages in use today. (I mean, no offense). Since I am also a Python programmer, I may sound a little prejudiced, but I can certainly declare that I am a huge fan of the language. This tutorial series is meant for absolute beginners with no prior knowledge of python programming, it is also of great help for experienced python programmers looking to brush up on their knowledge. Anyway, le ...
Blog
What is Neural Network?
neural network, what is neural network, Recurrent Neural Network, neural network basics, neural network intro
Hello Learners! Welcome to the next lecture on deep learning. We have read the detailed introduction to deep learning and are moving forward with the introduction of the neural network. I am excited to tell you about the neural network because of the interesting and fantastic applications of neural networks in real life. Here are the topics of today that will be covered in this lecture: What do we mean by the neural network? How can we know about the structure of the neural network? What are the basic types of neural networks? What are some applications of these networks? Give an example of a case where we are implementing neural networks. Artificial intelligence has numerous features that make it special and magical in different ways, and we will be exploring many of them in dif ...
Blog
How to handle Static Files in ASP.NET Core
How to handle Static Files in ASP.NET Core, static files in asp.net core, asp.net core static files
Hello friends, I hope you all are having fun. In today's tutorial, we are going to have a look at How to handle Static Files in ASP.NET Core. It's our 4th tutorial in ASP.NET Core series. If you inspect your localhost page displaying Hello World, then you will see that there isn't any HTML code in it. Instead, it's just displaying Hello World in text format. In today's tutorial, we will have a look at How to add HTML, JavaScript, CSS or any other static file in ASP.NET Core. In our previous tutorial, we have discussed Middleware in ASP.NET Core, so if you haven't studied that then have a look at it first, as we are gonna use some new middleware components today. So, let's get started: How to handle Static Files in ASP.NET Core By default, ASP.N ...
Blog
How to use for Loop in C#
How to use for Loop in C#, for loop in c#, for c#, c# for loop, for loop c#, foreach in c#, foreach loop in c#,c# foreach loop, c# foreach
Hello friends, I hope you all are doing great. In today's tutorial, we are gonna have a look at How to use For Loop in C#. It's our 11th tutorial in C# series. Till now, we have seen two loops in C# which are IF Loop and while Loop and today we are gonna have a look at for Loop. For Loop is most commonly used loop in any programming language and if you have worked on any other language then you must be aware of its syntax. It is used to create repeated loop with specified number. Let's have a look at it in detail: How to use for Loop in C# For loop in C# takes an integer variable as a Controlling agent, initialized at value V1 and ends at value V2, and the travel from value V1 to V2 depends on the Condition specified in () brackets. In bot ...
Blog
Introduction to C# ( C Sharp )
Introduction to C#, C# Programming, The Language of God, History of C#, Why Should You Learn C#, Features of C#, C# and C: What is the difference, How C# Programing language works, Basic Commands of C#, Components of C#, Disadvantages of C#
Hello friends, I hope you all are fine and having fun. Today, I am going to start a new series on C# Programming Language and today we are gonna have a look at first tutorial Introduction to C#. Are you planning to study C# programming language? If so, then you have come to the right place. Knowing how to develop computer software is perhaps the most crucial ability to master in the present era. Computers have now made their way into practically every business. Whether it's an airplane's automation or a motorcycle's speedometer, computer programming languages are everywhere around us. And out of all the computer programming languages out there, C# is the most preferred and ideal language to learn. But why? Do not worry. This article contains all t ...
Blog
Social Distancing Detector with OpenCV in Raspberry Pi 4
Build a Social Distancing Detector with OpenCV and a Raspberry Pi 4, image processing with RPi4, RPi4 opencv, opencv, RPi4, OpenCV with Raspberry Pi 4
During the era of Covid-19, social distancing has proven to be an efficient method of reducing the spread of contagious viruses. It is recommended that people avoid close contact as much as possible because of the potential for disease transmission. Many public spaces, including workplaces, banks, bus terminals, train stations, etc., struggle with the issue of keeping a safe distance. The previous guide covered the steps necessary to connect the PCF8591 ADC/DAC Analog Digital Converter Module to a Raspberry Pi 4. On our Terminal, we saw the results displayed as integers. We dug deeper into the topic, figuring out exactly how the ADC produces its output signals. In this article, however, we will use OpenCV and a Raspberry Pi to create a system that can detect when people are trying to avoi ...
Blog
List DataType in Python with TensorFlow
List DataType in Python with TensorFlow, list datatype python, python list data type, list datatype in python
Hey fellow! Welcome to the next episode of the Python series, where we are learning the basics of Python to implement them in deep learning. In the previous lecture, our focus was on string data types. With the practical implementation of TensorFlow, many interesting points were discussed in depth. I hope you completed the home task that I assigned you during that lecture. Today, we are moving forward with the next data type, which is a sequence. You will know the different sub-groups of this data type as well in the next lecture, but today, the focus will be totally on the list because, once you understand them well, other data types of the sequence will be at your fingertips. Yet before starting, it's time to look at the content that you will learn today: What is a sequence? How do you ...
Blog
HTML Helpers in ASP.NET MVC
HTML Helpers in ASP.NET MVC, helpers in asp.net mvc, html helpers in asp, helpers in mvc
Hello friends, I hope you all are doing great. In today's tutorial, we are gonna have a look at HTML Helpers in ASP.NET MVC. It's our 12th tutorial in ASP.NET MVC series. I know every tutorial is a new concept for you to understand but we have to cover all of them before starting working on our project in ASP.NET MVC. If you have worked on ASP.NET web forms or C# / Visual Basic projects then you must be aware of toolboxes, from where we can drag and drop our visual components like textbox, editbox, button etc. But in ASP.NET MVC applications, we don't have this luxury of drag and drop. Instead we have HTML Helper classes which are used to created these html components in ASP.NET MVC. So, let's have a look at How to use HTML Helpers in ASP.NET MVC: ...
Blog
How to use Button in C# Windows Form ?
buttons in c#, how to use buttons in c#, buttons code c#, C# buttons code, c# button code
Hello everyone, I hope you guys are having fun with your lives. In today's tutorial, we are gonna have a look at How to use Button in C# Windows Form. In our previous tutorials, we have first discussed the Introduction to C# Windows Forms in which we have created our first C# Windows Forms Project. After that we have discussed How to add C# Controls in Windows Form, in which we have added different C# controls in that Windows form. So, now we are gonna add back end programming in those Controls one by one. In today's tutorial, I am gonna add the code for the Buttons and you will see that it won't be any difficult to use them in your projects. So, let's get started with How to use Button in C# Windows Form. How to use Button in C# Windows Form ??? ...
Blog
Action Selectors in ASP.NET MVC
Action Selectors in ASP.NET MVC, selectors in asp, selectors in mvc, selectors in asp.net, nonaction selector in asp
Hello friends, I hope you all are having fun with your lives. In today's tutorial, we are gonna have a look at Action Selectors in ASP.NET MVC. It's the 11th tutorial in ASP.NET MVC series and if you have covered so far then that means you really want to learn this language. Action Selectors are also new for you as we haven't discussed them yet but they are not that difficult to understand. Action Selectors are built-in attributes of ASP.NET which are directly applied to action methods of Controllers. We use Action Selectors to influence on Controller's action methods. In simple words, we use Action Selectors to guide URL Routers in selection of correct action method. Let's have a detailed overview of Action Selectors: Action Selectors in ASP.NET ...