GitHub Pages for Perl developers
1:13:02
Reading JSON files in Rust
1:07:42
2 ай бұрын
Functional programming in Python
1:13:59
Testing Python code with pytest
1:18:49
Web development in Rust using Rocket
1:22:15
GitHub pages for Rust developers
1:04:21
Пікірлер
@Maximus98245
@Maximus98245 5 күн бұрын
Great tutorial! Is there any way to load the file in chunks ? If I am reading a very large file, reading it into a string may not be a good idea. If we reading it in chunks, we have to be careful about the boundaries, it should not cut off Unicode character in half (first byte in chunk 1 and second byte in chunk 2 is bad). Thanks!
@CodeMaven
@CodeMaven 4 күн бұрын
That's a good extension to the exercise. Please open an issue on the GitHub repository with this idea so I'll be able to address it in the next video.
@user-hv9pj8lr1r
@user-hv9pj8lr1r 14 күн бұрын
hi, where to find the code ?
@CodeMaven
@CodeMaven 14 күн бұрын
Link to code added to the page about the video rust.code-maven.com/implementing-wc-in-rust
@rsalmei
@rsalmei 15 күн бұрын
Gabor, it doesn't make sense to `.collect().len()` an Iterator. Just `.count()` it.
@galiKZ0
@galiKZ0 15 күн бұрын
To skip the first argument (which is always the name of the program itself), you could use the following : for filename in std::env::args().skip(1) { println!("{filename}"); }
@CodeMaven
@CodeMaven 15 күн бұрын
nice
@CodeMaven
@CodeMaven 14 күн бұрын
thanks, added to the plans
@offic-coin
@offic-coin 17 күн бұрын
Great, love it!
@DaveCrossUK
@DaveCrossUK 27 күн бұрын
Thanks for the plug for my courses 🙂 You mentioned CNAME as being the older way to deal with custom domains. That's not really the case. CNAME is still the mechanism for configuring custom domains - and if you update the domain through the settings page, you'll get a commit to your repo that reflects that change in the CNAME file.
@arete_
@arete_ Ай бұрын
Thanks a billion for this video. I spent two days with this before I found your video. BTW you have the exact same voice as Jens Stoltenberg 😂
@szabgab529
@szabgab529 Ай бұрын
I hope people won't confuse the instructions we give 🙂
@tsaari_
@tsaari_ Ай бұрын
hi I saw your python course, are you going to do a similar one for Rust? interested because the simple things I can do with python just don't work at all if I try Rust
@CodeMaven
@CodeMaven Ай бұрын
Thanks. Maybe. I just ran a full course at a client so I think my material is pretty solid for a course, but I am not sure I'll have the time for the recordings now.
@nicklase0000
@nicklase0000 2 ай бұрын
It's a bit annoying that the video recording software is not properly capturing the updates in the git bash window. So the explanation you do at 28:00 and onward is a bit hard to follow.
@CodeMaven
@CodeMaven 2 ай бұрын
Oh, we had that during the event. I was hoping at least the recording will come out right. Apparently Zoom handled it badly. I guess I'll have to run this event once again with a different setup.
@360nickx
@360nickx 2 ай бұрын
wow thanks :)
@raj-we9yr
@raj-we9yr 2 ай бұрын
My sincere thanks for sharing your very useful Perl examples. In this video you have clearly shown a useful Perl idiom: reading text data and moving it into variables. May I ask if there is any video in this channel where you read fixed length binary data from a binary file and assign each binary record to perl variables? How would we unpack the file record in such case?
@Dmitrii_NY
@Dmitrii_NY 2 ай бұрын
Too long introducing 😂. 🐪
@takahashinji5286
@takahashinji5286 3 ай бұрын
Thanks for your effort on delivering this information
@takahashinji5286
@takahashinji5286 3 ай бұрын
Thank you for such informative session!
@awnion
@awnion 3 ай бұрын
🦀
@jhnb
@jhnb 3 ай бұрын
thanks
@VenkataRamana-oc9hu
@VenkataRamana-oc9hu 4 ай бұрын
simple and super easy
@jeffwark8137
@jeffwark8137 4 ай бұрын
Thank you for a great tutorial video.
@elina35462
@elina35462 5 ай бұрын
Note that clippy has a way to automatically apply fixes for some of the lints with cargo clippy --fix. These are called machine applicable rules
@Jucidful
@Jucidful 5 ай бұрын
Thank you, it was really useful
@AleksejsGluhovs
@AleksejsGluhovs 5 ай бұрын
This is the Way
@BrazenNL
@BrazenNL 5 ай бұрын
Most terminals allow you to click on a link, either with Cmd, Ctrl, Shift, whatever …
@sdlfljdfkl
@sdlfljdfkl 5 ай бұрын
Nice walk-through!
@jocketf3083
@jocketf3083 5 ай бұрын
Interesting! I was under the impression that strings would relocate every time they grew. Nice to see I was wrong!
@rsalmei
@rsalmei 5 ай бұрын
You can debug print a String (as in println!("{string:?}")), so that it gets automatically enclosed in double-quotes "string".
@CodeMaven
@CodeMaven 5 ай бұрын
Hmm, that's a good idea.
@reneribaud8912
@reneribaud8912 5 ай бұрын
This video is interesting and illustrates the memory reallocation process well. But you should emphasize more that this process also relies on the OS and is not solely dependent on Rust.
@alexikamran7039
@alexikamran7039 7 ай бұрын
do you do bootcam?
@yash1152
@yash1152 8 ай бұрын
5:40 1:32:05
@whatareyoulookingfor6789
@whatareyoulookingfor6789 8 ай бұрын
Coolnesssss!
@jacekjacenty
@jacekjacenty 9 ай бұрын
That reminds me of how recruiters think, how recruitment works and why I should never be on the market if I can avoid it. I feel sorry for the young, talented people at the bottom of the ladder. The odds are against them more than the average person without talent.
@user-ht7qi5fh5l
@user-ht7qi5fh5l 11 ай бұрын
Hello, at minute 1:27, after running the command 'docker build -t mydocker .,' the left side of the terminal changes to proceed with the tutorial. My question is, how did that change happen
@CodeMaven
@CodeMaven 11 ай бұрын
I am not sure what are you talking about. When running the docker build command you see the output of the command running and you get back the same prompt as before.
@user-ht7qi5fh5l
@user-ht7qi5fh5l 11 ай бұрын
The minute I put in my comment was not correct, I was referring to minute 1:23.
@CodeMaven
@CodeMaven 11 ай бұрын
@@user-ht7qi5fh5ldo you mean the reverse-i-search? That's part of the (Linux) shell, not of Docker. It lets search among the commands in your history. You get this by pressing Ctrl-r and then start typing an earlier command.
@user-tp3bd
@user-tp3bd Жыл бұрын
thanks
@Jinjr322
@Jinjr322 Жыл бұрын
apparently playwright.config file is being ignored when under cucumber.js test runner. im facing timeout 5000ms every time i use exact(....).toBeVisible() and similar from playwright/test library. furthermore it doesnt wait even 5000ms it just instantly fails test. any ideas?
@kimmartis317
@kimmartis317 Жыл бұрын
Question: mouse wheel works in TK:Listbox. Close the main window and open another window with a list box. Mouse wheel does not scroll in Listbox unless you click on list or scroll bar. Any suggestions?
@fpv_am
@fpv_am Жыл бұрын
Hi, I have a question, it works this way, but once I put that dockerfile in compose, cron doesnt start automatically, I need to connect to container shell and start cton manually, what am I doing wrong?
@CodeMaven
@CodeMaven Жыл бұрын
Without seeing your code it is rather difficult to know what's going on. Besides I think there are better forums to ask this.
@ElementResources-rp8ox
@ElementResources-rp8ox Жыл бұрын
Very nice video. Thank you.
@shmuelk3018
@shmuelk3018 Жыл бұрын
I have already opened 8 PR, and 4 already Merged😊 Thank you very much
@BigBrother4Life
@BigBrother4Life Жыл бұрын
Thank you sir, i made my first contribution through this.
@yaroshchenko_coder
@yaroshchenko_coder Жыл бұрын
Please tell me how games are made on Perl 5??? How is the graphics rendered? I understand that Perl 5 runs on a server, but how does it handle graphics??? There are game engines for Perl, if possible, tell us about this method... Thanks...
@szabgab529
@szabgab529 Жыл бұрын
Wouldn't it better to ask it on a public forum and not on a random video about Perl?
@yaroshchenko_coder
@yaroshchenko_coder Жыл бұрын
@@szabgab529 Unfortunately, I'm new to Perl programming and I don't know where to write and how to reach out to the community. I have bad English and I comprehend knowledge through old books and articles + KZbin channels, I asked the question because I have been spotting your channel for a long time and heard about the game on the Web from this video. I really want to make a website, but I don't know how to administer it, I have experience in Php, everything is simple there, there is support, but there is a problem with Perl 5, the hosting services support the old version, not 5.36.0.
@CodeMaven
@CodeMaven Жыл бұрын
Here you can find a few places where you can get help: for perl-related questions perlmaven.com/help
@yaroshchenko_coder
@yaroshchenko_coder Жыл бұрын
Hello, <<TEXT /** ... */, can I put it in a variable, array or other and output it? print <<ETEXT ...txt... ETEXT; - works, my $a = <<ETEXT .... /// print $a; - no. How do I copy the contents of here-document (here-doc), using Perl 5? Maybe there are built-in functions in Perl for working with the buffer: - Retrieve content from buffer - Copy - Paste into a text file Is something like this possible in Perl? Thanks for the answer and helpful content!
@lutzfilor56
@lutzfilor56 Жыл бұрын
Just stumbled about this project - try to catch up and start from the beginning - Love it
@SuperAdil08
@SuperAdil08 Жыл бұрын
Thx❤
@yaroshchenko_coder
@yaroshchenko_coder Жыл бұрын
Вы и на Ruby пишете? Круто! 🙂
@yaroshchenko_coder
@yaroshchenko_coder Жыл бұрын
Я изучаю Perl5 в 2023, не понимаю где Perl7???
@renren3938
@renren3938 Жыл бұрын
Bravo
@RachelAmadoBortnick
@RachelAmadoBortnick Жыл бұрын
maraviya, a kontinuar!
@daughterofarevolutionary-s4376
@daughterofarevolutionary-s4376 Жыл бұрын
Hello Sir, Thank you so much for making this possible for us. I look forward to learning about this course. How do I view the schedule?
@CodeMaven
@CodeMaven Жыл бұрын
This is the announcement of the course where you can also see the time of the meetings: If you'd like to actively participate then contact me via email and I'll send you the payment information. osdc.code-maven.com/c/osdc-2023-01-perl
@RachelAmadoBortnick
@RachelAmadoBortnick Жыл бұрын
Fabulous work. I recommend it to all learners of Ladino.
@szabgab529
@szabgab529 Жыл бұрын
Thank you! The best recommendation I could dream of!
@RachelAmadoBortnick
@RachelAmadoBortnick Жыл бұрын
Gabor, you did an excellent job explaining the language.
@szabgab529
@szabgab529 Жыл бұрын
Thank you!. This coming from you makes me really happy!
@StevenBoutcher
@StevenBoutcher Жыл бұрын
This is great! I'm currently stealing pieces of this awesome framework to add Cucumber to my Playwright framework that tests ElectronJS apps (Playwright's got experimental support). Thanks for making this video to help explain the framework!
@Yasser-hq1xo
@Yasser-hq1xo Жыл бұрын
could you share your repos please
@jesuss0777
@jesuss0777 Жыл бұрын
I cant run feature files because It doesn't see Scenarios, given when ... I have extensions