Posts

Showing posts from August, 2021

summer task 8

Image
  Object Recognition using CNN model   Task Description 💬 📌 In this task : 👉Create a model that will detect a car in a live stream or video and recognize characters on the number plate of the car  👉Secondly, it will use the characters and fetch the owner's information using its own API. 👉Create a Web portal where all this information will be displayed (using html,CSS, and js) Step 1: Create an ML model detecting vehicle number plate         Step 2: Display the screen showing the WebApp taking the input car number from the user       Step 3: Display the final output showing the details of the car   Thank you very much for your valuable time reading this article...      

Summer Task 9

Image
Kubernetes Integration with Python-CGI     What is Kubernetes?   Kubernetes is a portable, extensible, open-source platform for managing containerized workloads and services, that facilitates both declarative configuration and automation. It has a large, rapidly growing ecosystem. Kubernetes services, support, and tools are widely available.    What is Kubernetes? Kubernetes is a portable, extensible, open-source platform for managing containerized workloads and services, that facilitates both declarative configuration and automation. It has a large, rapidly growing ecosystem. Kubernetes services, support, and tools are widely available.   What is Python? Python is an interpreted, object-oriented, high-level programming language with dynamic semantics. Python's simple, easy-to-learn syntax emphasizes readability and therefore reduces the cost of program maintenance. Python supports modules and packages, which encourages program mod...

Summer Task 7 - (07.2 )

Image
  Introduction JavaScript is a programming language used primarily by Web browsers to create a dynamic and interactive experience for the user. Most of the functions and applications that make the Internet indispensable to modern life are coded in some form of JavaScript. The earliest incarnations of JavaScript were developed in the late 1990s for the Netscape Navigator Web browser. At the time, Web pages were static, offering little user interaction beyond clicking links and loading new pages. For the first time, JavaScript enabled animation, adaptive content and form validation on the page. JavaScript did not become standardized and widely adopted until 1999. Even after standardization, browser compatibility remained an issue for over a decade. JavaScript is used in almost every domain Web Applications Web Development Mobile Applications Server Applications Web Servers What is JavaScript used for? JavaScript is mainly used for web-based applications and web browsers. ...

Summer TASK 7 ( 07.01 )

Image
What is python CGI? Python is one of the most popular languages nowadays and Docker is used for containerization.  A CGI script is invoked by an HTTP server, usually to process user input submitted through an HTML <form>  or <isindex>  element. Most often, CGI scripts live in the server’s   special cgi-bin  directory. The HTTP server places all sorts of information about the request (such as the client’s hostname, the requested URL, the query string, and lots of other goodies) in the script’s shell environment, executes the script, and sends the script’s output back to the client. For more info visit : https://docs.python.org/3/library/cgi.html What is docker? Docker  is a set of platform as a service(PaaS) products that uses OS-level virtualize OS-level virtualization to deliver software in packages called containers. Containers are isolated from one another and bundle their own software, libraries, and configuration files; they ...