- Видео 168
- Просмотров 341 495
Code with Kavit
США
Добавлен 6 авг 2013
Hi Everyone, my name is Kavit.
I am a Stock trader and a Software Engineer by day. Gamer by night. Through this channel, I want to share my knowledge about tech and stocks and how one can get better in those areas. By no means, I am a pro in any of the above mentioned areas but i want to share what I have learnt over past few years.
I am a Stock trader and a Software Engineer by day. Gamer by night. Through this channel, I want to share my knowledge about tech and stocks and how one can get better in those areas. By no means, I am a pro in any of the above mentioned areas but i want to share what I have learnt over past few years.
Flutter: Build a Beautiful Pokemon App | Animation | Widgets | JSON API
In this video, we will build a beautiful Pokemon app with animations and json api call. This video is mainly for beginners.
#Pokemon #Flutter #BeautifulApp
Please give stars for this project on Git and like the video.
Source Code - github.com/Kavit900/flutter_json_parser-pokemon-app
Be sure to ask for help in the comments if you need any. Suggestions for future Flutter tutorials are also very welcome! :)
Flutter is an SDK owned by Google to create applications for Android and iOS using a single codebase. Flutter uses the Dart programming language (also owned by Google). Flutter was in beta when I released this video, so things might still change a bit. But the SDK is already mature enough to w...
#Pokemon #Flutter #BeautifulApp
Please give stars for this project on Git and like the video.
Source Code - github.com/Kavit900/flutter_json_parser-pokemon-app
Be sure to ask for help in the comments if you need any. Suggestions for future Flutter tutorials are also very welcome! :)
Flutter is an SDK owned by Google to create applications for Android and iOS using a single codebase. Flutter uses the Dart programming language (also owned by Google). Flutter was in beta when I released this video, so things might still change a bit. But the SDK is already mature enough to w...
Просмотров: 3 154
Видео
How to containerize your Go app in 10 minutes!
Просмотров 1,9 тыс.2 года назад
Let's Learn how to containerize your Go app in 10 minutes, and also, let's try to reduce the size of our docker container image. Hi Folks! I am Kavit, a software engineer with a passion for teaching. Please follow me and show your support, so that I can keep bringing this type of content. 📹 RUclips: ruclips.net/channel/UCV-_hzlbVSlobkekurpLOZwfeatured 📸 Instagram: code_with_kavit...
Discord Bot in Golang
Просмотров 4,4 тыс.2 года назад
In this video, we will be creating a simple discord bot that will return pong, when we type ping. Hi Folks! I am Kavit, a software engineer with a passion for teaching. Please follow me and show your support, so that I can keep bringing this type of content. 📹 RUclips: ruclips.net/channel/UCV-_hzlbVSlobkekurpLOZwfeatured 📸 Instagram: code_with_kavit 📂 Github: github.com/Kavit900 ...
Flutter Google Maps API Tutorial
Просмотров 3,1 тыс.2 года назад
Learn how to add Google Maps to your Flutter apps. I'll go over how to add map markers, get the user's current location, and animate the map camera. Code Github Link:- github.com/Kavit900/flutter-google-maps-api-tutorial » Timestamps 🕒 00:00 Demo 00:49 Pubspec Packages 01:28 Setup Flutter application 01:38 Setup Google cloud application 03:13 Get Google Maps API Key 04:47 Start Development 16:3...
How to Build a Command Line (CLI) Application with Go | Stock Chart Analysis Tool
Просмотров 7852 года назад
Today we're going to take our Go learning to the next level and see how to build a basic command-line interface. Source Code 🧐 gist.github.com/Kavit900/b2e4df857d5119776517da63fc324ac5 Hi Folks! I am Kavit, a software engineer with a passion for teaching. Please follow me and show your support, so that I can keep bringing this type of content. 📹 RUclips: ruclips.net/channel/UCV-_hzlbVSlobkekurp...
Flutter and MongoDB #4 | Delete Document
Просмотров 2,1 тыс.2 года назад
In this video, you can learn how to delete our documents in MongoDB using Flutter This is a new mini-series on Flutter and MongoDB. Package Link: pub.dev/packages/mongo_dart MongoDB: www.mongodb.com/ Hi Folks! I am Kavit, a software engineer with a passion for teaching. Please follow me and show your support, so that I can keep bringing this type of content. 📹 RUclips: ruclips.net/channel/UCV-_...
Flutter and MongoDB #3 | Update Document
Просмотров 3,5 тыс.2 года назад
In this video, you can learn how to update our collection in MongoDB using Flutter This is a new mini-series on Flutter and MongoDB. Package Link: pub.dev/packages/mongo_dart MongoDB: www.mongodb.com/ Hi Folks! I am Kavit, a software engineer with a passion for teaching. Please follow me and show your support, so that I can keep bringing this type of content. 📹 RUclips: ruclips.net/channel/UCV-...
Codeforces Round 798 - A,B,C
Просмотров 2332 года назад
I am sharing my thought process on how I approached the recent Codeforces round. It's been really long since I tried any competitive contest. Timestamps:- 00:01 - A 06:30 - B 11:03 - C I am attaching the solutions to the contest here:- A - codeforces.com/contest/1689/submission/160095440 B - codeforces.com/contest/1689/submission/160103094 C - codeforces.com/contest/1689/submission/160127972 Hi...
Go Tutorial | Read CSV
Просмотров 1,1 тыс.2 года назад
In today's tutorial, we will learn, how we can read data from a CSV File using Go. CSV (Comma Separated Values) is a very popular import and export data format used in spreadsheets and databases. Each line in a CSV file is a data record. Each record consists of one or more fields, separated by commas. While CSV is a very simple data format, there can be many differences, such as different delim...
Go Tutorial | Write to CSV
Просмотров 1,2 тыс.2 года назад
In today's tutorial, we will learn, how we can write data to a CSV File using Go. CSV (Comma Separated Values) is a very popular import and export data format used in spreadsheets and databases. Each line in a CSV file is a data record. Each record consists of one or more fields, separated by commas. While CSV is a very simple data format, there can be many differences, such as different delimi...
Go Tutorial | Web Scraping with Golang
Просмотров 4,5 тыс.2 года назад
In this video, we will try to web scrap stock prices using Yahoo Finance. Golang is efficient, very efficient. Much of this efficiency is attributed to its unique abstractions when dealing with concurrency. Java fo,r example, maps its threads to OS threads, while Go uses its own goroutines scheduler to further abstract its lightweight goroutines from OS threads. In short, Golang is very frugal ...
Golang Tutorial | How To Implement Concurrency With Goroutines and Channels
Просмотров 1,6 тыс.2 года назад
Golang is efficient, very efficient. Much of this efficiency is attributed to its unique abstractions when dealing with concurrency. Java fo,r example, maps its threads to OS threads, while Go uses its own goroutines scheduler to further abstract its lightweight goroutines from OS threads. In short, Golang is very frugal with how it uses OS threads; if a goroutine becomes blocked, Go’s schedule...
Golang Installation
Просмотров 1702 года назад
In this video, we will look into how we can set up Golang on our Mac and then create and run a main.go file. Hi Folks! I am Kavit, a software engineer with a passion for teaching. Please follow me and show your support, so that I can keep bringing this type of content. 📹 RUclips: ruclips.net/channel/UCV-_hzlbVSlobkekurpLOZwfeatured 📸 Instagram: code_with_kavit 📂 Github: github.co...
Flutter and MongoDB #2 | Insert Document into MongoDB
Просмотров 7 тыс.2 года назад
In this video, you can learn how to set insert document into MongoDB using Flutter. This is a new mini-series on Flutter and MongoDB. Package Link: pub.dev/packages/mongo_dart MongoDB: www.mongodb.com/ Hi Folks! I am Kavit, a software engineer with a passion for teaching. Please follow me and show your support, so that I can keep bringing this type of content. 📹 RUclips: ruclips.net/channel/UCV...
Flutter and MongoDB #1 | Connection setup
Просмотров 24 тыс.2 года назад
In this video, you can learn how to set up your flutter application to MongoDB. This is a new mini-series on Flutter and MongoDB. Package Link: pub.dev/packages/mongo_dart MongoDB: www.mongodb.com/ Hi Folks! I am Kavit, a software engineer with a passion for teaching. Please follow me and show your support, so that I can keep bringing this type of content. 📹 RUclips: ruclips.net/channel/UCV-_hz...
Flutter Tutorial - Multiple Image Picker From Gallery | The Right Way [2022]
Просмотров 9 тыс.2 года назад
Flutter Tutorial - Multiple Image Picker From Gallery | The Right Way [2022]
Solidity Dapp Tutorial | Library Catalog Management Application | React.JS MetaMask and Hardhat
Просмотров 3,2 тыс.2 года назад
Solidity Dapp Tutorial | Library Catalog Management Application | React.JS MetaMask and Hardhat
Load Balancer Algorithms | System Design Concept
Просмотров 1882 года назад
Load Balancer Algorithms | System Design Concept
Firebase Authentication NODE JS using REST API and async-await
Просмотров 47 тыс.2 года назад
Firebase Authentication NODE JS using REST API and async-await
Greedy Approach | Minimum Time to Make Rope Colorful | LeetCode 1578
Просмотров 1,7 тыс.2 года назад
Greedy Approach | Minimum Time to Make Rope Colorful | LeetCode 1578
System Design Concept - Load Balancers
Просмотров 472 года назад
System Design Concept - Load Balancers
System Design Concept - Bloom Filters
Просмотров 2942 года назад
System Design Concept - Bloom Filters
How to upload files to Firebase Storage in Flutter
Просмотров 2,4 тыс.2 года назад
How to upload files to Firebase Storage in Flutter
Google Code Jam 2022 | Qualification Round | Punching Cards | 3D Printing | d1000000
Просмотров 3162 года назад
Google Code Jam 2022 | Qualification Round | Punching Cards | 3D Printing | d1000000
Building a Web3 dApp authentication with React, Web3.js and Metamask
Просмотров 15 тыс.2 года назад
Building a Web3 dApp authentication with React, Web3.js and Metamask
Google Interview Question - Area of Overlapping Rectangles
Просмотров 6272 года назад
Google Interview Question - Area of Overlapping Rectangles
Error creating user : Error: 5 NOT_FOUND:
brasil here
THANK YOU SO MUCH!
Not even once it felt like he is trying to teach us! he is just doing it for himself, total waste of an hour!
What extension is that
4:50 this remindet me of turing machines
What I cant comprehend is: What is the size of the lshape? do i need to assume that an lshape has a fixed amount of elements?
dude, if you've to imprt all the package first, then you can code in note pad.
What I have to add in case of the separator is :? What I have to do for the encoding utf8, unicode, ...? Thank you!
Thank you for this very useful video!
If the csv file is separate by : the program is the same or any changes? There are any control for the file if is utf8 or unicode or ...? Thank you!
Thank you for this very useful video!
My app freezes everytime I try to read file from the gallery, that means I may need to add some permissions. That's the last option, I have use more than 4 hours figuring why it isn't working. This is like 10th tutorial to watch
great video
Awesome brother
The data i post from the postman is show in the terminal but it can't show on firebase collection
Error: MongoDB ConnectionException: Could not connect to ac-x2lueh4-shard-00-00.vxyr9nh.mongodb.net:27017 how to solve this exception
And for login?
when I go to send the request in postman to the endpoint I get the following error: "Error fetching access token: invalid_grant (Invalid JWT: Token must be a short-lived token (60 minutes) and in a reasonable timeframe. Check your iat and exp values in the JWT claim.)" Any idea how to fix it?
Thank you man i was haaving problem in backend to send users to firestore whenever new user signs up or uses google auth. Now i can implement private firestore chat with those users
thank u :)
Will this still work ? because rinkeby testnet got deprecated. will it work? i'm a beginner to web3
good job bro
Hi npx create-next-app -e with-tailwindcss client the above command doesn't create any other folder other than the client itself ...why is it so? is there any other alternatives with react.js?
How to upload it to rest api server using multiport request post api???
clear explanations. Thanks
we have no time please help me something send me your whatsapp number
hii bro how i can run this project please tell me .....give me your whatsapp number
👍👍👍👍👍
Thank you!
Thanks a lot for the video! but what about sign in and signout
i need this crud code
Top notch explanation man!! No nonsense video... Loved it.
just learn new thing in a job thanks broo... i am junior nodejs developer...luv u broo
Mee too
greatvideo
Amazing, loved it❤. Please provide github link for this code.
E/flutter (15189): [ERROR:flutter/runtime/dart_vm_initializer.cc(41)] Unhandled Exception: MongoDart Error: Db is in the wrong state: State.INIT error pls help me
Thank you.
❤ PLEASE MAKE FOR LOGIN AND CLOUD MESSAGING THANK YOU 😊
sparati
Make the sign in one pls
Here is my python solution def getEgyptianNum(fraction): res = [] remainder = fraction divider = 2 # because the problem states that a is always < b while remainder > 0: subtractor = Fraction(1, divider) if subtractor <= remainder: remainder = remainder - subtractor res.append(subtractor) divider += 1 return res
I am unable to install hardhat ether waffle
Love your teaching skill. Keep it up.
Hey, nice dp concept . Thanks
A very simple yet helpful video brother, thanks! make more such videos on flutter
thank you Nice job
Can I use the same method in Polygon Mumbai Testnet? Or should I change something in the frontend?
Sir i am trying to run the project but its showing that "You are not connected to the rinkeby testnet" and i don't know hoewto change this can you please help me to resolve this. also i have sent you a text regarding the same issue on instagram so please ignore if you have replied on either of the platforms. thankyou!
rinkeyby got removed use sepholia
can make more videos for firebase and node js