Пікірлер
@Bol_imla
@Bol_imla 3 сағат бұрын
great teacher..thanks a lot for the explanation..it really sticks on my mind now how to use jsonplaceholder
@ahem6679
@ahem6679 7 сағат бұрын
Hi Coding shiksha I just wanted to know if it will be possible to get the likes and dislikes from the recent Mr Beast video it will be very viral if it can be done
@premchanddasari225
@premchanddasari225 13 сағат бұрын
Actually sending a file in the post data has a limit of size and execution of php file is also limited ,so sir can u make a feature that can uppload more huge sizes of gb files ,
@sciencemine
@sciencemine Күн бұрын
do you have git code
@tiffanyw3794
@tiffanyw3794 Күн бұрын
Can you do frames
@CodingShiksha
@CodingShiksha Күн бұрын
Frames are there in editor you can purchase
@undergraduate6050
@undergraduate6050 2 күн бұрын
What library or API is used for Pdf editing?
@CodingShiksha
@CodingShiksha Күн бұрын
Built it from scratch you can purchase
@timepasi
@timepasi 2 күн бұрын
informative video bro
@user-zx6jb6ic5e
@user-zx6jb6ic5e 3 күн бұрын
Nicely explained, what I was looking for is how to display the form data in the database in the UI. Thanks again.
@gireesht2487
@gireesht2487 4 күн бұрын
Super
@kantyDarius
@kantyDarius 4 күн бұрын
👏👏👏👏 Amazing job
@s_7even545
@s_7even545 5 күн бұрын
thank you bro
@shubhamchandel-gs4so
@shubhamchandel-gs4so 5 күн бұрын
bhai pura pura code npm se utha ke as it is yaha hagg raha hai tu, isme tera apna ek paise ka input nahi hai, tabhi mai sochu ki class based component kyu use kar raha hai. matlab bhai thodi mehnat karke usko functional mei to convert karta. upar se bol raha hai, "Lets make this project from scratch". thodi sharam kar bhai, chaar logo ne doubt pucha vo bataya nahi gaya tujhse. Itne subs ho gaye hai thoda genuine content daal jisme khud ki bhi mehnat ho.
@HowTo-nr7uk
@HowTo-nr7uk 5 күн бұрын
Here’s an HTML page with two input fields for the user to enter the origin and destination, and a button to calculate and display the distance, time, and route between the two locations. This example uses the Google Maps Distance Matrix API and the Google Maps JavaScript API for rendering the route on a map. ### HTML & JavaScript Code ```html <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Distance Calculator</title> <style> #map { height: 400px; width: 100%; } #output { margin-top: 20px; } </style> <!-- Include Google Maps JavaScript API --> <script src="maps.googleapis.com/maps/api/js?key=YOUR_GOOGLE_MAPS_API_KEY&libraries=places"></script> </head> <body> <h1>Distance Calculator</h1> <div> <label for="origin">Origin: </label> <input type="text" id="origin" placeholder="Enter origin" /> </div> <div> <label for="destination">Destination: </label> <input type="text" id="destination" placeholder="Enter destination" /> </div> <div> <button onclick="calculateDistance()">Calculate</button> </div> <div id="output"> <p id="distance"></p> <p id="duration"></p> </div> <div id="map"></div> <script> function calculateDistance() { const origin = document.getElementById('origin').value; const destination = document.getElementById('destination').value; // Create a new instance of the Distance Matrix Service const service = new google.maps.DistanceMatrixService(); // Define the parameters for the request const request = { origins: [origin], destinations: [destination], travelMode: 'DRIVING', }; // Make the request to the Distance Matrix API service.getDistanceMatrix(request, function(response, status) { if (status === 'OK') { const distance = response.rows[0].elements[0].distance.text; const duration = response.rows[0].elements[0].duration.text; document.getElementById('distance').textContent = `Distance: ${distance}`; document.getElementById('duration').textContent = `Duration: ${duration}`; // Draw the route on the map drawRoute(origin, destination); } else { alert('Error: ' + status); } }); } function drawRoute(origin, destination) { const map = new google.maps.Map(document.getElementById('map'), { zoom: 7, center: { lat: 37.7749, lng: -122.4194 } // Default center (San Francisco) }); const directionsService = new google.maps.DirectionsService(); const directionsRenderer = new google.maps.DirectionsRenderer({ map: map }); const request = { origin: origin, destination: destination, travelMode: 'DRIVING' }; directionsService.route(request, function(response, status) { if (status === 'OK') { directionsRenderer.setDirections(response); } else { alert('Directions request failed due to ' + status); } }); } </script> </body> </html> ``` ### How It Works 1. **Google Maps API Integration**: The HTML page includes the Google Maps JavaScript API with the `libraries=places` to enable location autocomplete features and other map functionalities. 2. **Input Fields**: The page has two input fields (`origin` and `destination`) for the user to input locations. 3. **Calculate Button**: When the user clicks the "Calculate" button, the `calculateDistance` function is triggered. 4. **Distance Calculation**: The `calculateDistance` function uses the Google Maps Distance Matrix API to calculate the distance and time between the origin and destination. 5. **Route Display**: The `drawRoute` function uses the Google Maps Directions Service and Directions Renderer to display the route on the map. 6. **Display Results**: The distance and duration are displayed below the input fields, and the route is drawn on the map. ### Notes - **API Key**: Replace `"YOUR_GOOGLE_MAPS_API_KEY"` with your actual Google Maps API key. - **Error Handling**: This example includes basic error handling. You can expand it to handle specific errors or improve user experience. - **Styling**: The page has basic styling. You can enhance the appearance as needed. You can copy this code into an HTML file and open it in a web browser to test. Make sure to have your API key ready.
@learner5839
@learner5839 6 күн бұрын
Will your app record tab audio. Example I record a youtube tab and it should record video with audio of that youtube tab. If not place make video on that
@harshsharma8154
@harshsharma8154 6 күн бұрын
Really Helpful Brother
@beyzaaslantatar8407
@beyzaaslantatar8407 7 күн бұрын
mapTypeId: google.maps.MapTypeId.ROADMAP it says 'google is not defined' for this code in the console i can't solve this problem
@Eden-f4d
@Eden-f4d 7 күн бұрын
CapCut PC is incredibly useful for video editing. The interface is user-friendly, and it offers a wide range of features that make the editing process smooth and efficient. It’s great for both beginners and experienced editors.
@RichardTan-zr9ji
@RichardTan-zr9ji 7 күн бұрын
bro I dont want to download ffmpeg in my system but in my project
@jorgeduran1886
@jorgeduran1886 8 күн бұрын
did you use a library to make the timeline ?
@alexguitarwatson3215
@alexguitarwatson3215 8 күн бұрын
96 Euro for this little code snippet?! Yeah right
@emiliekevinekengnimbou4067
@emiliekevinekengnimbou4067 8 күн бұрын
hello thank you for this content. I have a Java application for managing a bakery that runs locally. I want to save the data from the invoice table in my MySQL database in a Google sheet file, how to do it? THANKS
@bharisankarpatra5846
@bharisankarpatra5846 8 күн бұрын
So nice 👍
@user-bq7sq6lj2i
@user-bq7sq6lj2i 9 күн бұрын
Hey bro where are you located in India I’m working on a project it’s giving me hard time
@renanmonteirobarbosa8129
@renanmonteirobarbosa8129 9 күн бұрын
You are missing 90% of the useful thing, filtering, codec, resolution, choosing frames ....
@kaustavkapil1407
@kaustavkapil1407 10 күн бұрын
Having the same issue. Its very irritating
@upendrareddybade5118
@upendrareddybade5118 10 күн бұрын
I am having trouble accessing a specific folder in Google Drive using the Google Drive API. I am trying to access a folder named "Reports," which is under "Shared with Me," but I can only access the root folder. Additionally, I am unable to create any directories under the "Reports" folder. What could be the reason for this issue?
@Infokon
@Infokon 11 күн бұрын
thank you, bro, it help me lots
@KillAllCommies2
@KillAllCommies2 11 күн бұрын
Workspace Settings: Configure the terminal to open in the workspace folder: Open your workspace settings by navigating to File > Preferences > Settings or pressing Ctrl + , (Cmd + , on macOS). Search for terminal.integrated.cwd. Set this to your desired workspace folder.
@mohammadabbas1623
@mohammadabbas1623 12 күн бұрын
That's something i was looking for to integrate in my task management site in Next.js, but the price is so high can you provide any coupons code for me so that i can able to purchase this
@CodingShiksha
@CodingShiksha 12 күн бұрын
You can message me here at [email protected] for discount
@alhassanbaabaabdullahi2777
@alhassanbaabaabdullahi2777 12 күн бұрын
Can you pass a file to your backend and then extract the text from that file without first saving the file?
@mzy3ogvkmditmjmzy3ogvkmdit41
@mzy3ogvkmditmjmzy3ogvkmdit41 12 күн бұрын
Thank you for working so hard to release videos to us! I am sorry your channel hasn't grown so much anymore. I hope you find something that makes you happy and you live a strong life Shiksha. Love from Canada!
@CodingShiksha
@CodingShiksha 12 күн бұрын
Thanks bro
@shyamsundarks6610
@shyamsundarks6610 13 күн бұрын
waste of time
@LingeshSaiM
@LingeshSaiM 13 күн бұрын
Thank You Sir !
@shivamgamer2404
@shivamgamer2404 13 күн бұрын
Sir when i cli method for installation . When step 4 mai input file se output css file banata hu tab blank output css file banati hai
@NiceChange
@NiceChange 14 күн бұрын
Great tip thanks.😊
@tecno_aryan
@tecno_aryan 14 күн бұрын
Hey mate how can I contact you, I need some help
@amaurirodrigues8798
@amaurirodrigues8798 14 күн бұрын
Hello! Does anyone know how to transcribe system and mic audio and recognize where each sound comes from using react?
@tejas-tagline
@tejas-tagline 15 күн бұрын
8000 for this?
@kainathafeez129
@kainathafeez129 15 күн бұрын
Sir is code sy hum instagram ki story download kar sakty ha?
@freemediatools
@freemediatools 15 күн бұрын
yes I recently purchased the code it is working 100% fine you can safely purchase it
@TravelTales-a
@TravelTales-a 15 күн бұрын
after wasting alot of time aah thank you brother
@wingsaber629
@wingsaber629 16 күн бұрын
How do you stop it?
@mellow_junior
@mellow_junior 16 күн бұрын
thank you very much sir, you really saved alot of time
@RajuKadduri
@RajuKadduri 17 күн бұрын
Please share the demo application so we can evaluate it. At this point, it doesn't seem credible.
@CodingShiksha
@CodingShiksha 17 күн бұрын
Bro after payment you will get full source code and you can run the app and I will support you if you face any issues my email and phone number are there on website
@antoniong4380
@antoniong4380 17 күн бұрын
Kudos for going straight to how VSCode already has the functionality installed. It saved a lot of time :p
@lure5448
@lure5448 19 күн бұрын
thanks for the video!!
@swapnilkatarnavare1110
@swapnilkatarnavare1110 19 күн бұрын
nice explanation !
@vlogsbyzeeshan3526
@vlogsbyzeeshan3526 20 күн бұрын
you should title video Express.js Formidable File Upload Example
@saipradeepbombothula3481
@saipradeepbombothula3481 21 күн бұрын
pls give source code for free
@firstlast493
@firstlast493 22 күн бұрын
15:04 The password must contain only uppercase and lowercase letters, without symbols.
@ToanNguyen-dz4vz
@ToanNguyen-dz4vz 22 күн бұрын
It's helpful to me, thank you very much