Thankyou very much, awesome. That worked really well for me. I am following arm assembly video tutorials, but so far their examples do not work on my Raspberry Pi 4b, your tutorial works awesome. Can you do a assembly series, would love to follow along. Assembly is excellent.
@Linguaexpress3 ай бұрын
Good points
@Kingpig-b1x Жыл бұрын
Thanks bro
@jezura777 Жыл бұрын
Would it be possible to write programs for mobiles with this?
@nirlichtman Жыл бұрын
depends, which mobile do you want to write for? for example it is possible to write arm assembly for android apps
@ikemkrueger Жыл бұрын
Are you the guy from "Nirsoft"?
@nirlichtman Жыл бұрын
😂 nope
@stephenhaslam66425 ай бұрын
Hi about a month ago, i asked if you would be interested in doing a arm 64bit assembly tutorial series. have not seen any replies, so far..
@Elliot-69 Жыл бұрын
Make a video on how to install multiple Ubuntu packages by bash scripting soo it will be more easier if I do setup on new PC just run 1 file and then no worries
@nirlichtman Жыл бұрын
You can do that with a single line since "apt install" supports multiple packages separated by spaces for example "apt install vim git" will install vim and git, so you can just put that line into a text file and add execution permission to the file with "chmod u+x file.sh", then you can just run the file with "./file.sh"