Rust Crash Course Tutorial for Solana

  Рет қаралды 102,425

Josh's DevBox

Josh's DevBox

Күн бұрын

Пікірлер: 100
@13YoshiMan
@13YoshiMan 2 жыл бұрын
best video for those who has past programming experience too, you're a legend
@Joshdevbox_my_Teleqram_id
@Joshdevbox_my_Teleqram_id 2 жыл бұрын
👆send a direct message for support and guidance .
@zb2747
@zb2747 2 жыл бұрын
After going through the book for understanding ownership I find this a nice quick overview of rust for devs to get up and running with not only the language but for solana- thanks bro!🙏🏾
@Joshdevbox_my_Teleqram_id
@Joshdevbox_my_Teleqram_id 2 жыл бұрын
👆send a direct message for support and guidance .
@zero_Ash
@zero_Ash 3 жыл бұрын
Thanks for the video. I wanted to get a quick overview before getting into solana. And this is exactly what I wanted.
@JoshsDevBox
@JoshsDevBox 3 жыл бұрын
I'm glad you found it useful! Making the video also helped me further solidy the knowledge of the language!
2 жыл бұрын
Brilliant, perfect intro to rust to get started in less than 1h, thanks
@Joshdevbox_my_Teleqram_id
@Joshdevbox_my_Teleqram_id 2 жыл бұрын
👆send a direct message for support and guidance .
@deathdefier45
@deathdefier45 2 жыл бұрын
Thank you so much for this series, I was looking for one for the longest time!
@mattgomes100
@mattgomes100 2 жыл бұрын
Thanks Josh! You’re amazing. You know how to teach directly and logically. My favorite KZbin channel.
@CYBERENA
@CYBERENA 2 жыл бұрын
Thanks man... most helpful crash course to Rust on the internet! I will recommend you to everyone...
@dzprotrader9587
@dzprotrader9587 2 жыл бұрын
i agree thak you josh
@roshanDash
@roshanDash 2 күн бұрын
Simply lovely. TY fo sharing this
@abhinavsingh7919
@abhinavsingh7919 9 ай бұрын
Thanks josh for this wonderful intro. You are awesome!
@andydataguy
@andydataguy 3 жыл бұрын
Newbie dev here. Thanks for making this intro video was super useful!
@Joshdevbox_my_Teleqram_id
@Joshdevbox_my_Teleqram_id 2 жыл бұрын
👆send a direct message for support and guidance .
@digitalstorm3028
@digitalstorm3028 3 жыл бұрын
perfect for me since im new to programming, i really loved the video, i hope you make more!
@Joshdevbox_my_Teleqram_id
@Joshdevbox_my_Teleqram_id 2 жыл бұрын
👆send a direct message for support and guidance .
@debeshmandal2215
@debeshmandal2215 2 жыл бұрын
Great video for people familiar with other programming languages to get up to speed quickly!
@Joshdevbox_my_Teleqram_id
@Joshdevbox_my_Teleqram_id 2 жыл бұрын
👆send a direct message for support and guidance
@jonathanmoore5619
@jonathanmoore5619 3 жыл бұрын
A lot of people hating on rust at the moment. Thks for your efforts.
@Joshdevbox_my_Teleqram_id
@Joshdevbox_my_Teleqram_id 2 жыл бұрын
👆send a direct message for support and guidance .
@mikeylikesit9530
@mikeylikesit9530 2 жыл бұрын
Such a great, succinct tutorial. Excellent job!
@lmaoiwaslikelmao1132
@lmaoiwaslikelmao1132 Жыл бұрын
Excellent video. You are a wonderful teacher.
@ilkandi1
@ilkandi1 2 жыл бұрын
You tied all the examples together well. Ready to move on. Thank you!
@Joshdevbox_my_Teleqram_id
@Joshdevbox_my_Teleqram_id 2 жыл бұрын
👆send a direct message for support and guidance
@assetlover6236
@assetlover6236 Жыл бұрын
underrated channel
@jacobreed953
@jacobreed953 2 жыл бұрын
Thanks for the video, very helpful for someone with some programming knowledge but no experience with Rust :)
@Joshdevbox_my_Teleqram_id
@Joshdevbox_my_Teleqram_id 2 жыл бұрын
👆send a direct message for support and guidance .
@noorulainafaqahmed7124
@noorulainafaqahmed7124 4 ай бұрын
best so far !!
@kiaraki7186
@kiaraki7186 9 ай бұрын
26:59 , why is it that str.push('1') doest thow an error but string.push() does thank you
@irsandaps23
@irsandaps23 2 жыл бұрын
love it bro, keep up the good work!
@Joshdevbox_my_Teleqram_id
@Joshdevbox_my_Teleqram_id 2 жыл бұрын
👆send a direct message for support and guidance ...
@_benff
@_benff 2 жыл бұрын
Thank you for this! Very helpful
@TheVioArtsofficial
@TheVioArtsofficial 8 ай бұрын
Really nice video bro! Like it!
@calv.io.n8080
@calv.io.n8080 2 жыл бұрын
hey leet dev you rock man! i'll sub. You boost me along quickly through the language and get me up and running fast!!
@Joshdevbox_my_Teleqram_id
@Joshdevbox_my_Teleqram_id 2 жыл бұрын
👆send a direct message for support and guidance .
@cdhiraj40
@cdhiraj40 2 жыл бұрын
Hey, great video. Keep them coming, I am starting my solana development with you :)
@Joshdevbox_my_Teleqram_id
@Joshdevbox_my_Teleqram_id 2 жыл бұрын
👆send a direct message for support and guidance ...
@kanishkmair2920
@kanishkmair2920 2 жыл бұрын
At 10:25 the negative integers must have their numbers flipped, right? Like -3 should be 1100
@JoshsDevBox
@JoshsDevBox 2 жыл бұрын
Nope! That's actually not the case here. Negative numbers (for signed integers) use the last bit (the left most bit) to indicate if a number is positive or negative. The numbers are still represented the same way. We're reducing the # of bits we have available by 1 to use it to represent a negative/positive number. So in the example, we have 4 bits with 1 being used as the negative/postiive symbol, 011 represents 3, if we want the # to be negative, the last bit would be a 1, giving us 1011.
@Alex-bs7uk
@Alex-bs7uk 2 жыл бұрын
This is the exact moment I got heart attack due to the volume issue
@nyima8695
@nyima8695 2 жыл бұрын
@@JoshsDevBox Please do some research on signed binary numbers. You are teaching people false information. You need to find the two-complement of the positive version of the number. so -3 is actually represented as 1101. The way you taught this in the video is also wrong you'll need to update.
@its_theday
@its_theday 2 жыл бұрын
Thanks for the perfect video!
@sdfsdf-f1j
@sdfsdf-f1j 4 ай бұрын
nice video josh
@BodrumDrone
@BodrumDrone 2 жыл бұрын
Greetings from Bodrum Turkey. This video clearly 🦀
@Joshdevbox_my_Teleqram_id
@Joshdevbox_my_Teleqram_id 2 жыл бұрын
👆send a direct message for support and guidance ...
@celikkoseoglu
@celikkoseoglu Жыл бұрын
This was super helpful! Thanks.
@pamarthisainarasimham8444
@pamarthisainarasimham8444 5 ай бұрын
sir,nowadays this rust software is unavailable,so wat should i do now ,,
@dennis_made_it
@dennis_made_it 6 ай бұрын
love it
@temzeks
@temzeks 7 ай бұрын
Are there any alternatives for a javascript developer to develop on solana with js instead of rust?
@skippy0901
@skippy0901 2 жыл бұрын
Does solidity devs paid more than rust(solana) devs?
@drac8854
@drac8854 2 жыл бұрын
Hi thanks for creating this video it really helps me understand rust even though i haven't code in rust at all (have experience in coding python) One question can we expect solana videos as well like from staring (i just have started to look into solana and smart contract stuff) And if we are getting solana videos Could you. Please start with something like building a bolg site or something easy Not to just at creating NFT in solana i watched those videos in KZbin but honestly didn't understand anything Thanks. 😊😊😀
@JoshsDevBox
@JoshsDevBox 2 жыл бұрын
Yup that's the plan! I want to start simple and continue adding new functionalities!
@drac8854
@drac8854 2 жыл бұрын
@@JoshsDevBox thanks
@MarKac9090
@MarKac9090 2 жыл бұрын
greate video, thanks for making
@josemfcheo
@josemfcheo 2 жыл бұрын
Thanks man!
@gyanaranjan6526
@gyanaranjan6526 Жыл бұрын
bro I love you
@scottlim5597
@scottlim5597 3 жыл бұрын
great video
@spark-u4w
@spark-u4w 9 ай бұрын
thanks
@pengye5280
@pengye5280 11 ай бұрын
非常感谢您的视频教程,这对我非常有帮助
@FabioIssamuOshiro
@FabioIssamuOshiro 2 жыл бұрын
Great video! This address is a solana account? Do you have github, twitter, etc?
@JoshsDevBox
@JoshsDevBox 2 жыл бұрын
Yup! I was encouraged to put it up for donations. I do have some social media accounts, but I'm just a lurker!
@chadwittman6292
@chadwittman6292 2 жыл бұрын
Thanks for assuming I'm not an idiot.(even thou that up for debate) I like how you compared things to other languages to give a quick run down
@Joshdevbox_my_Teleqram_id
@Joshdevbox_my_Teleqram_id 2 жыл бұрын
👆send a direct message for support and guidance .
@omarb155
@omarb155 2 жыл бұрын
Nice!
@geepy5708
@geepy5708 2 жыл бұрын
Can you use solidity for solana?
@maxwellspincer8114
@maxwellspincer8114 2 жыл бұрын
No. Solidity can only be used for Ethereum based blockchain like BSC
@markobe08
@markobe08 2 жыл бұрын
is there any Solana crash restart tutorial?😆
@Joshdevbox_my_Teleqram_id
@Joshdevbox_my_Teleqram_id 2 жыл бұрын
👆send a direct message for support and guidance
@Ben-pt9mh
@Ben-pt9mh 2 жыл бұрын
I jumped at "THE LAST BIT"
@gouravsinghrawat361
@gouravsinghrawat361 2 жыл бұрын
" *THE LAST BIT* " vs " _even or odd_ "
@proIdeas37
@proIdeas37 2 жыл бұрын
I was able to understand all concept without having any problem! What is my level in Rust?😂Out of 10!
@Joshdevbox_my_Teleqram_id
@Joshdevbox_my_Teleqram_id 2 жыл бұрын
👆send a direct message for support and guidance .
@user-mi6ll8vb4h
@user-mi6ll8vb4h 3 жыл бұрын
rrr dude I hope you haven't given up on Plutus?
@JoshsDevBox
@JoshsDevBox 3 жыл бұрын
I'm afraid so. I might pick it up again in the future, but when I found out that multiple other smart contract platform uses Rust and that Solana costs fractions of a penny to make a transactions, I knew I wanted to explore it more.
@user-mi6ll8vb4h
@user-mi6ll8vb4h 3 жыл бұрын
@@JoshsDevBox Ahh sorry to see you go, I was in the first cohort with you and I found your videos really helpful. Learning Plutus has been extremely frustrating at times, but its now started to click for me and I'm happy I stuck with it. Thanks for all your content!
@ThePandaGuitar
@ThePandaGuitar 2 жыл бұрын
wheres the solana part
@Joshdevbox_my_Teleqram_id
@Joshdevbox_my_Teleqram_id 2 жыл бұрын
👆send a direct message for support and guidance .
@hf1788
@hf1788 2 жыл бұрын
Mate How We can Contact u ?
@Joshdevbox_my_Teleqram_id
@Joshdevbox_my_Teleqram_id 2 жыл бұрын
👆send a direct message for support and guidance
@EveryorNothing
@EveryorNothing 2 жыл бұрын
cool,but we need repo
@freebird649
@freebird649 3 жыл бұрын
where is solana ?
@JoshsDevBox
@JoshsDevBox 3 жыл бұрын
Don't worry, it's coming up!
@TheVioArtsofficial
@TheVioArtsofficial 8 ай бұрын
HAHAH this [0..6]
@NoumanKhan-ck7vx
@NoumanKhan-ck7vx 2 жыл бұрын
35:15 ,,, this is the MF language I've ever worked with I swear to god this is cancer but I have to work with it f***k
@Joshdevbox_my_Teleqram_id
@Joshdevbox_my_Teleqram_id 2 жыл бұрын
👆send a direct message for support and guidance
@jamesmonserrate323
@jamesmonserrate323 3 жыл бұрын
This is too basic, want more advanced Smart Contract stuff.
@JoshsDevBox
@JoshsDevBox 3 жыл бұрын
Don't worry, those are coming up! We have to be able to Rust before we can Solana!
@kavanihmohd7479
@kavanihmohd7479 11 ай бұрын
@@JoshsDevBoxdo you have twitter or discord community… I have some questions
@ivanabregu1
@ivanabregu1 2 жыл бұрын
Thanks a lot bro! Truth be told, what ugly language for the eyes.
@Joshdevbox_my_Teleqram_id
@Joshdevbox_my_Teleqram_id 2 жыл бұрын
👆send a direct message for support and guidance .
@IBNez
@IBNez 2 жыл бұрын
Nothing to do with Solana. Just a rust low level vid.
@Joshdevbox_my_Teleqram_id
@Joshdevbox_my_Teleqram_id 2 жыл бұрын
👆send a direct message for support and guidance .
@alexzander__6334
@alexzander__6334 2 жыл бұрын
this video has nothing to do with solana!! its just a rust tutorial ....
@Joshdevbox_my_Teleqram_id
@Joshdevbox_my_Teleqram_id 2 жыл бұрын
👆send a direct message for support and guidance .
@naadodi_tamilan
@naadodi_tamilan Ай бұрын
That was one awesome video mate 🎉
Solana Development: Smart Contract Life Cycle High Level
12:16
Josh's DevBox
Рет қаралды 28 М.
My Experience with Rust as a Java Dev
19:43
ForrestKnight
Рет қаралды 37 М.
Quando eu quero Sushi (sem desperdiçar) 🍣
00:26
Los Wagners
Рет қаралды 15 МЛН
Try this prank with your friends 😂 @karina-kola
00:18
Andrey Grechka
Рет қаралды 9 МЛН
So Cute 🥰 who is better?
00:15
dednahype
Рет қаралды 19 МЛН
Сестра обхитрила!
00:17
Victoria Portfolio
Рет қаралды 958 М.
A Simpler Way to See Results
19:17
Logan Smith
Рет қаралды 119 М.
Python laid waste to my C++!
17:18
Sheafification of G
Рет қаралды 182 М.
This is your last video about Golang Structs!
15:57
Flo Woelki
Рет қаралды 11 М.
Что такое Solana? Обзор SOL с анимацией
10:27
Whiteboard Crypto на русском
Рет қаралды 30 М.
Solana Smart Contract Tutorial: Logging and Testing Examples
19:51
Josh's DevBox
Рет қаралды 7 М.
Quando eu quero Sushi (sem desperdiçar) 🍣
00:26
Los Wagners
Рет қаралды 15 МЛН