Skip to main content

गुड़गांव रेलवे स्टेशन में ऑटोमोबाइल कैरियर ट्रेन की शुरुआत हुई है

गुड़गांव रेलवे स्टेशन में ऑटोमोबाइल कैरियर ट्रेन की शुरुआत हुई है। यह ट्रेन ऑटोमोबाइल बनाने वाली कंपनियों के लिए एक बड़ी सुविधा है। इस ट्रेन की मदद से ऑटोमोबाइल बनाने के लिए आवश्यक सामान एक स्थान से दूसरे स्थान पर बड़ी संख्या में पहुंचा सकता है।

https://youtu.be/WtNBr7Pg46M

इस ट्रेन के शुरुआत होने से ऑटोमोबाइल उत्पादक कंपनियों को काफी लाभ होगा। यह ट्रेन ऑटोमोबाइल ट्रक के नुकसान को कम करने में भी मददगार होगी। इससे ऑटोमोबाइल ट्रक वालों को जल्दी से जल्दी लोडिंग और अनलोडिंग करने में सक्षम होने का भी फायदा होगा।

इस ट्रेन के द्वारा ऑटोमोबाइल कंपनियों को भारी साइकिलों और गाड़ियों को एक स्थान से दूसरे स्थान पर बड़ी संख्या में ले जाने में भी मदद मिलेगी। इससे ऑटोमोबाइल उत्पादन और वितरण में एक नई क्रांति आएगी।

Comments

Popular posts from this blog

Christmas is a Christian holiday Worshiping the birth of Jesus Christ

Hey, the guy’s Merry Christmas. As you know, every year Christmas is celebrated. So today we will talk about Christmas. Christmas is a Christian holiday Worshiping the birth of Jesus Christ Read Also: CAA and NRC final bill report and Internet service shutdown in 17 cities in u.p. About Christmas: Christmas is a Christian holiday worshiping the birth of Jesus Christ , who is believed to be the son of God. The festival of Christmas, which is celebrated on 25 December every year, The Christmas festival is celebrated on 25 December. On this day people feed each other cakes instead of sweets and greet the festival. Taking the form of Santa Claus, the person distributes toffees, gifts, etc. to the children. And children become little Santa Claus and do drama and distribution chocolate. There is also a tradition of giving sweets, chocolates, greeting cards, Christmas trees, decorative items, etc. to family members, friends, relatives and neighbors.

Flutter web file image picker and upload firebase storage

 Flutter web file image picker and upload Firebase storage In this post i am showing full coding of flutter web image picker to upload data in storage fully working code . import   'dart:html' ;     selectImageFile(context) async { try { InputElement input = FileUploadInputElement()..accept = 'image/*'; input.click(); setState(() { isLoading = true; }); input.onChange.listen((event) async { var file = input.files.first; var reader = FileReader(); reader.readAsDataUrl(file); reader.onLoadEnd.listen((event1) async { print('loading end'); var ref = storage.ref('complaints').child(basename(file.name)); firebase_storage.SettableMetadata metadata = firebase_storage.SettableMetadata( customMetadata: <String, String>{"uid": user.uid}, ); firebase_storage.UploadTask uploadTask = ref.putBlob(file, metadata); uploadTask.asStream().listen((event) { setState(() { isLoading = true; progress = event.bytesTransferred.toDouble() / e

angular 8 environment configuration, setup and create a new project

A ngular 8 environment and project setup hey, everyone, this is engineer Brijesh Kumar and today we teach you angular 8 environment setup and project creation. Node installation Angular 8 CLI installation Creating an Angular 8 project Read Also: FLUTTER MULTIPLE IMAGE UPLOAD INTO FIRESTORE  angular 8 environment configuration, setup and create a new project node 1. Node Installation :- goto Node official website and download Node package and install locally or follow the link and install. here you get various variants and os support download link choose right after install. and check after installation completion version code type command node --version, npm --version. 2. Angular 8 CLI installation:- goto the angular.io site and install the latest CLI version 8.3.3 or more latest or type the command in terminal  npm install -g @angular/cli, after installation complete check the angular 8 CLI version type the command ng --version after that you see th