Math, crypto and random number in golang
HTML-код
- Опубликовано: 8 фев 2025
- Welcome to a youtube channel dedicated to programming and coding related tutorials. We talk about tech, write code, discuss about cloud and devops. That’s what we do all day, all year. We roll out a lot of series and videos on our channel.
All the learning resources such as code files, documentations, articles and community discussions are available on our website:
chaicode.com/
You can find our discord link, github link etc on the above website.
Twitter/X link: x.com/hiteshdo...
Discord link: hitesh.ai/discord
Learn React with 10 projects: • Let's learn react from...
Learn Docker: • A practical guide on D...
Learn Kubernetes: • Complete Kubernetes Co...
How does a browser works: • How does a browser wor...
How nodejs works: • How node JS works | En...
Learn Redux-toolkit: • Learn Redux Toolkit in...
Learn NextJS: • Nextjs Full stack course
Learn Typescript: • Why to learn Typescript
Learn Javascript: • Welcome to new JavaScr...
Learn React Native: • React Native Mastery: ...
Learn Zustand: • React state management...
Learn Golang: • How to get started wit...
Awesome. Just completed the playlist.
Thank you for your hard work. 😃
Coll! Just completed the playlist without skipping a single second of the playlist. Thanks Hitesh and Love from Bangladesh♥♥
Series is getting Interesting by every video. I can't thank you enough for this series
I completed all series. ❤thanks now I making a core blockchain implementation in golang as my project of college
Helpful course !! I am using Golang for blockchain miner and found this series helpful for quick introduction
Like I trust google instead of its alternatives, I trust your videos, and honestly, they ae really awesome! Big HEART from INDIA!
I completed all 57 video series in one shot. I learned a lot of tricks and approaches for coding with Go. Thank you so much 👈👈
This is such an amazing seres! I just finished it all! Question for you, in case I missed something... It looks like the crypto documentation says that the range is [0,n) where n is not inclusive. If this is the case, would your example never show 5 (or 6 if using result + 1)? Just want to make sure I'm reading things correctly as I follow along! BTW, your concurrency videos were brilliant!
Will there be any series on golang updated in 2023? Complete fullstack ❤️
Hitesh Sir, Thank you so much for this free course.
grateful to you my guy, learnt a lot. Thanks!!
Thanks for the great videos. Waiting for more.
Thank You for the great series👍
Completed the playlist.
Thank you Hitesh sir!
so this is the last and complete tutorial for golang right?
@@vishal4400 actually last video which is Channels & Deadlocks is last one this is actually misplaced in the playlist
Why haven't you uploaded today's video?
Bhai--you did not tell how to add int and float..Should I convert int to float inorder to save precision because float gets default converted to int when doing sum
Thank You very much, Sir 🤍
Thank you so much for this course.
Wouldnt this cause an issue where if the person knows the timestamp he can easily find the random number generated?
Thank you Hitesh😃
I believe this thing of the seed was fixed already, isn't it? rand.Intn(5) alone provides me with random numbers, each one potentially different with each iteration.
Random number starts from 4:25
Thanks Hitesh
Thanks very much ❤
sir is it last video...or your planning to upload
Keep continue ...sir ❤️❤️
This video is missing from the go lang playlist
Very nice video 👌
So, suppose if we want to add int and float number then what should be done?
hi, when i just run the line fmt.Println(rand.Intn(5) ) -->> it always gives me different result without using the random Seed . my go version is 1.20.2 linux/amd. Is this ok?
Yes, same for me might be taken care in the update.
Yeah it is normal rand.seed is deprecated from 1.20
Asibonge mfokaHitesh ❤
is this the end of the series sir ???
What is seed?
Where is next vedio sir?
Thank you sir
What about today's video
is golang is good for webdevelopment?
obviously bro..you know lot's of industrial project now developing by using golag..
please visit our channel.I have also quite interesting stuff regarding golang
hii
can anybody tell me if this is a complete course like playlist or is it incomplete ?
have you completed this is this the end any idea now?
knowing these things as beginner is a complete. wanna stick to go lang for building things its incomplete
now seed not req for random
Sir Today video 😭😭😭😭
idk why but i am getting random number everytime
package main
import (
"fmt"
"math/rand"
)
func main() {
fmt.Println(rand.Intn(10))
}
with this program and i guess that seed is deprecated
You may be using GO version >= 1.20. rand.Seed() is deprecated now and rand.Intn() will provide random numbers even without seeding it.
rand.Seed is deprecated
Hey Hitesh, please move this video to it's actual place as it shows 05mymath
rand.seed is deprecated
works for learning