Topics 00:00 Introduction 01:10 Sample RPG program - fixed format 02:35 Sample RPG - fully free 03:18 Problem with SEU editor 05:44 Convert fixed form code to free form 08:15 Writing RPG in IFS 09:10 Compiling RPG in IFS 10:15 Writing the code in VS code editor 11:55 Moving the code from PC to IBMi 14:00 Intro to GitHub 14:35 Pusing the code from PC to GitHub 16:35 Pulling the code to another folder 17:35 Git in IBMi
@deekay_sabs5 жыл бұрын
Hi Mohammed I need your help with an exercise I've got
@deekay_sabs5 жыл бұрын
Do you happen to have a mail address?
@mohamedsahfersathiqnooghu13464 жыл бұрын
Adadada enna oru gnyanam!!!
@higiniofuentes25514 жыл бұрын
WOW! I refresh myself with your nice videos, and each time I watch them, I always found something interesting! The GIT relationship with IBM i ! I love this machine, is so flexible! Thank you as usual Mohammed!!!
@rafaeleduardomantillamarin85883 жыл бұрын
New follower =). Excellent introduction to the Fully Freee RPG, adding concepts from GITHUB... Thank You!.
@Filippo5794 жыл бұрын
Nice as usual. But one last piece is missing: is it possible to compile source files directly from VS Code? I saw on youtube a short demo in which "it seems" that it could be possible, but the only thing I could see is a macro call (?) via VS Code command line (?!?!)... Did you have any suggestion about this? At the moment, searching through the internet, I found an interesting VS Code extension to manage source file transfers directly using SSH and another that highlights also fixed format RPG, SQL and free RPG (but no intellisense)....
@PRAVINCHOTHE20085 жыл бұрын
Thanks Tala.. That's awesome..
@rajrajan3 жыл бұрын
Awesome. Thanks
@kmmjka5 жыл бұрын
Just wanted to ask if I should continue learning RPG programming given that there aren’t many jobs that uses this language compared to the other? And also, does RPG have future?
@dipukrishna855 жыл бұрын
Great Yusuf.. really interesting..
@lathap64494 жыл бұрын
Hi, I was trying to connect to Pub400 using Filezilla. I gave the protocol as sftp. But it gives fatal error: Network error. What could be the reason?
@Mallikanaidu-h8y Жыл бұрын
Sir rpgle free formate dcl-s not valid sir .how to work please give me solve this sir pls reply
@rameshs76694 жыл бұрын
Hi Yusuf, Please upload the video regarding soundex in SQL.
@MohdFaheem-ep6fw5 жыл бұрын
Do you know mahesh k?
@naanzen38315 жыл бұрын
Nice video, I know you are from Chennai .... Next time when you travel to Chennai pls let me know i will also fly to Chennai and give you party! How i know you are from Chennai ? because you are smart!.
@Bassamsater3 жыл бұрын
nice video, but please try to speak a bit slower and Breath
@yusy4code3 жыл бұрын
I am still working on this. I will try my best. Thanks.
@einfachfureuch-personlichk28353 жыл бұрын
Why are you trimming the Name var instead of just adding the name like dsply ('Hello dear ' + Name); Thanks for every Message Im new in rpg, please everyone dont judge me :D
@yusy4code3 жыл бұрын
Dsply can handle only 52 char . If your name variable is 100 length and you store “John” as name then displaying name variable will not work. Cos dsply function will think the variable is 100 chars. But trim(name) will pass only thr exact name value to the function and hence it will be displayed.