Skip to main content

Posts

Auto-Image Slider using Javascript

  Introduction Image Slider is a way of displaying multiple images, videos or graphics which is created using javascript. Preview HTML Code <!DOCTYPE html> < html lang = "en" > < head > < meta charset = "UTF-8" > < meta name = "viewport" content = "width=device-width, initial-scale=1.0" > < title > Auto-Image Slider </ title > < link rel = "stylesheet" href = "https://use.fontawesome.com/releases/v5.15.1/css/all.css" > < link rel = "stylesheet" href = "ImageSlider.css" > < script src = "ImageSlider.js" > </ script > </ head > < body > < div class = "container" > < div class = "slides" > < div class = "slide" > < img src = "https://cdn.pixabay.com/photo/2020/11/20/01/10/glacier-5760277_960_72
Recent posts

Instagram Post Downloader using JQuery and Ajax

  Introduction In this project, we will learn to get the data from Instagram using the link given by the user. First the given link is modified and passed to the instance of XMLHttpRequest. Using instance of XMLHttpRequest, we will get JSON data and Access the required data such as image url, video url and create image and video tag respectively. Now you can download image as well as video as shown in the preview video. Pre-Requisite you should know to use JSON data, to access the required data ( object, arrays, string etc ). you should know to use XMLHttpRequest, to send the request, to get the data from the response. basic of JQuery is enough. Preview HTML Code <!DOCTYPE html> < html lang = "en" > < head > < meta charset = "UTF-8" > < meta name = "viewport" content = "width=device-width, initial-scale=1.0" > < title > Document </ title > < link rel = "stylesheet"

Mini J.A.R.V.I.S using Python

Description Python is a programming language that lets you work quickly and integrate system more effectively. In this project we are going to give voice as an input and convert it to text and proceed to further task like opening other application etc...So Let's Start... Source code will be provided below. Demo Video Libraries needed for this project are Function for taking your voice as input and converting voice into Text Here is the function we call when ever we want to print as well as speak the text In This Function we are getting local time using time library Function for opening chrome using webbrowser Library Searching in chrome, youtube

Voice controlled Bulb by Bluetooth using Relay Module in Adruino.

  Description In this project we are using Bluetooth, Voice Control App and Relay Module to control the bulb. The App we are using is Aduino Bluetooth Voice Controller to send the commands to the Arduino using Bluetooth. Relay module is a electrically operated switch which requires power supply of 5V to turn ON/OFF. There are terminals mainly--NO(Normally open),NC(Normally closed),COM(Common). NO supply current when relay is activated. NC do not supply current when relay is activated. COM is common between NO and NC and it is a moving part in relay module. Demo Video Working Using App we send voice command to ON/OFF the bulb and it is send through bluetooth connection where HC - 05 Bluetooth Module will recieve the command and pass it to the arduino.  And After Receiving the command, current is supplied from arduino to relay module, Inside a relay module the COM part will move due to Induction of electromagnetic field. This will make it work by turning ON/OFF by the given Instruction i

Music Player using Android Studio.

Description In this Project we are going to make a music player. Here the app has play and pause button for the music.App also contain Volume seekbar to increase or decrease the volume  and Next and Previous Button to change the Music. Demo Video Step 1 Open the Android Studio and Create a project. Note:  You need to download some music to play in the app. Step 2 Create a raw folder in the resource folder and paste the music in the raw folder. Note:  the folder named must be "raw".Do not change the name of the folder. Step 3 Next paste the Given xml code in the activity_main.xml Step 4 Next paste the given java code in the MainActivity.java Note:  change the code while adding the music name.(Commented line) Step 5 Run the code in your mobile.                                  Thank You