How to Use Kali Linux for Beginners
14:25
14 сағат бұрын
Leetcode Interviews
6:08
Күн бұрын
Can AI Replace Software Developers
14:41
Rust By Example: Functions and Methods
16:13
Quantization in LLM
9:06
21 күн бұрын
Should I Use JWT for Authentication
15:52
Socket Programming in Python
14:01
Rust By Example: Crates
7:08
Ай бұрын
Rust By Example: Infinity
2:32
REST API Tutorial for Beginners
21:37
Use REST API
7:56
Ай бұрын
Пікірлер
@yvesbernas1772
@yvesbernas1772 9 сағат бұрын
I might be missing something but I dont believe Q, K and V are identical, if they were they would not be differentiated. Is this a parody of LLM teaching videos ?
@StephenBlum
@StephenBlum Сағат бұрын
Yes good point! The source data needs to attend to itself. So we need copies of the input/output data to compare. That's why the QKV variables are the same. Duplicate data for self-attention so we can multiply the vector with itself to create the attention between each token. Example of translating between English and German: 1- Encoder Self attention Q = K = V = Our source sentence(English) 2- Decoder Self attention Q = K = V = Our target sentence(German) 3- Decoder-Encoder attention Q = Our target sentence(German) K = V = Our source sentence(English)
@yvesbernas1772
@yvesbernas1772 34 минут бұрын
Again neither the query, key and value vectors are identical nor their weight matrices Q, K and V. The 3 vectors do stem from the same hidden vector h pertinent to the same word, i.e. q = Q.h , k = Kh, v = V.h , but that is it, they are not identical. Is this an experiment/joke or what?
@Oracle_ok
@Oracle_ok 2 күн бұрын
What about rocket??
@StephenBlum
@StephenBlum 23 сағат бұрын
Good point! Rocket looks clean. Like a simple and elegant web app server framework. Simplicity is key. And it looks like Rocket does a great job 😄
@Oracle_ok
@Oracle_ok 23 сағат бұрын
@StephenBlum yes it does and easier to pick up. My opinion though.
@samtobin35
@samtobin35 3 күн бұрын
Great video! I’ve been using shadcn-svelte recently and I’m really enjoying it
@CommonUse-zm3di
@CommonUse-zm3di 4 күн бұрын
What font are you using
@StephenBlum
@StephenBlum 3 күн бұрын
`Manaco 15` is the font 😊
4 күн бұрын
A checklist would be phenomenal! This is great stuff!
@StephenBlum
@StephenBlum 3 күн бұрын
Good idea! Here is the checklist direct from the video: docs.google.com/document/d/1I_9e0kESyWCcoqiLfdCfjctvul7RaO0DLpLx-ynnlY0/edit?usp=sharing
@joeydgaf
@joeydgaf 5 күн бұрын
Do you have a link to this checklist? Would love this
@StephenBlum
@StephenBlum 3 күн бұрын
Yes absolutely. Here is the checklist from the video: docs.google.com/document/d/1I_9e0kESyWCcoqiLfdCfjctvul7RaO0DLpLx-ynnlY0/edit?usp=sharing
3 күн бұрын
@@StephenBlum Thank you!!!!
@shashankpandey8346
@shashankpandey8346 6 күн бұрын
I am currently using react in my company portfolio website and I think it is pretty slow and heavy for just rendering some shadcn components and framer-motion and static data. I have rarely used useState too, let alone other hooks like useeffects, reducer, memo and callbacks. But I don't think this is for me, since the syntax are basically different and I would be converting like entire code manually. Last time I checked, there were at least 20 components and 10 pages. not gonna transfer.
@StephenBlum
@StephenBlum 5 күн бұрын
Yes you are right. ReactJS is very slow. Preact can help speed it up. And if you use the preact-compat library, most components should work github.com/preactjs/preact/blob/main/compat/package.json
@joexuan6739
@joexuan6739 6 күн бұрын
Great explanation and video! Everything is great, except that the meaning of row and column in the Q/K/V matrices might be switched, Am I right? is Q dot t(K) a token-by-token matrix?
@StephenBlum
@StephenBlum 5 күн бұрын
Good point! Q dot t(K) is the token by token matrix. Each token is a vector, commonly 512 floats per token. Both Q and K are the same array of tokens
@viggybhai
@viggybhai 6 күн бұрын
How do I customize Kali Linux for specific penetration testing tasks?
@StephenBlum
@StephenBlum 5 күн бұрын
Kali Linux comes installed ( or offers easy access ) to all pentest tools. For specific pentesting, you just need to create a list of your favorite pentest tasks. A great way to get a list of ideal tools available, most of the LLMs can provide a list that matches your specific tasks 🎉
@viggybhai
@viggybhai 5 күн бұрын
@@StephenBlum thanks for ur advise
@rjtkoh
@rjtkoh 6 күн бұрын
thanks for the video. How about good easy ways to create the textured look and export it to web ready format? say from Illustrator or others?
@StephenBlum
@StephenBlum 5 күн бұрын
Great suggestion. Illustrator can export directly to web-ready SVG. And you can use that SVG to make fantastic textures 🎉 just save/export the file to SVG. If there is an optimization option for web export, make sure to select that option so the file is smaller
@sergannn
@sergannn 7 күн бұрын
I need Million polygons on flutter map with onclick and state How can I make it work fast?
@StephenBlum
@StephenBlum 7 күн бұрын
good question! for "fast" with a million polygons, you have to do it progressively. If you are looking to draw all polygons on the screen at the same time, then it might be a non-starter. If you are only showing some of the polygons on the screen, then using most 3D render frameworks will automatically take care of this for you by only drawing the visible polygons in the viewport. 3D frameworks automatically cull. Here are some types of culling: Back-face culling: A technique that avoids drawing polygons that are facing away from the camera. A polygon's vertices have a clockwise winding if you're looking at the back face, and a counter-clockwise winding if you're looking at the front face. View-frustum culling: A visibility culling technique. Occlusion culling: A visibility culling technique.
@sergannn
@sergannn 7 күн бұрын
@ so it meant to show it effectively - don’t show what is not visible at moment? I had in idea for example to have 20 layers for 20 zoom levels and cluster polygons when zoom out , and when zoom in hide what’s not visible in the area. Something like that
@sergannn
@sergannn 7 күн бұрын
@ by the way, happy New Year! Very nice channel
@StephenBlum
@StephenBlum 5 күн бұрын
@@sergannn thank you! happy New Year! 🎉
@StephenBlum
@StephenBlum 5 күн бұрын
@@sergannn that's a great idea! that would dramatically improve performance. Multiple LOD level-of-detail layers/zooms so that when the camera is zoomed out, a simple model with fewer polygons is drawn instead of the full 1m polygon model
@mriduljain1981
@mriduljain1981 7 күн бұрын
thanks dude
@StephenBlum
@StephenBlum 7 күн бұрын
you're welcome! 👍😄
@ElixExo
@ElixExo 8 күн бұрын
Most of the software that needs to be built, has already been built. At this point we may tweak things here and there, but any further innovation will provide only marginal improvements.
@StephenBlum
@StephenBlum 7 күн бұрын
that's actually a really good point! as of today, most of the software we need has already been built and it works mostly well. we can make improvements and fixes. other then that, it's already been written
@pradumnasaraf
@pradumnasaraf 8 күн бұрын
Hey Stephen, Thank you so much for reacting to/explaining my blog. It was an awesome video!
@StephenBlum
@StephenBlum 7 күн бұрын
great to hear you say the video was helpful, your blog is really well written 🎉😄 your blog helped me out a lot thank you!
@pradumnasaraf
@pradumnasaraf 5 күн бұрын
​@@StephenBlumThank you
@siddharthmanumusic
@siddharthmanumusic 9 күн бұрын
Great video! Loved that all my C++ knowledge is still relevant lol
@StephenBlum
@StephenBlum 9 күн бұрын
@@siddharthmanumusic thank you! 😄 Yes absolutely you are right. C++ is relevant and heavily used in advanced AI frameworks
@LeadingNPC
@LeadingNPC 9 күн бұрын
Thanks man.
@StephenBlum
@StephenBlum 7 күн бұрын
No problem! glad you found the video 😀
@exactzen
@exactzen 9 күн бұрын
Thanks for info !!
@StephenBlum
@StephenBlum 7 күн бұрын
Any time 😊 thank you!
@مقاطعمترجمة-ش8ث
@مقاطعمترجمة-ش8ث 13 күн бұрын
Sadly it's heavily censored making it useless, it's nightmare to tweaking it.
@StephenBlum
@StephenBlum 11 күн бұрын
agreed, the Gemma models and Google AI models are heavily censored for safety. This can become a problem even for seemingly simple tasks, the AI will guard it's answers
@sujitbalmiki8216
@sujitbalmiki8216 13 күн бұрын
What's the font family name used @1:10 ?
@StephenBlum
@StephenBlum 11 күн бұрын
`Monaco 15` is the font family. running on a Mac terminal emulator window
@sujitbalmiki8216
@sujitbalmiki8216 11 күн бұрын
@@StephenBlum thank you
@rcmag13
@rcmag13 13 күн бұрын
A big part of it is interest rates though. here is the reason: When investors have cheap money, large green projects can start which requires a lot of software development. However, when money is expensive, companies and investors typically stop those types of project and just focus on their bread and butter which churn out profits. Those types of projects usually require much less software developers to maintain. That is the short of it, more or less.
@StephenBlum
@StephenBlum 11 күн бұрын
you're right, that's an important perspective on interest rates. with cheap money, large green (new) projects start with lots of software development. Without cheap money, companies stop making new projects
@mangadecades9790
@mangadecades9790 14 күн бұрын
About how much did that ec2 instance cost for the time used to create this video?
@StephenBlum
@StephenBlum 14 күн бұрын
Smart question! you figured it out. Yes processing videos on servers is smart that you figured this out. AWS charges for each second the EC2 instance is turned on. The time is about 2-3 minutes per video ( about $0.50 per video ~ )
@mangadecades9790
@mangadecades9790 13 күн бұрын
Cool Thx!
@tevinwright5109
@tevinwright5109 16 күн бұрын
Beautifully explained
@StephenBlum
@StephenBlum 15 күн бұрын
I appreciate that! I put a lot of effort into creating this video 🎉
@tevinwright5109
@tevinwright5109 15 күн бұрын
@@StephenBlum you have really good content. If you use canva or Microsoft designer for video cover. Makes them more clickable. And call to action in your videos to subscribe. Love your content. Should be hitting 50k subs with a few tweaks. Especially on topics like pandas, ML and LLMs
@StephenBlum
@StephenBlum 11 күн бұрын
you have good video tips! this is helpful thank you! 😊
@timrehak4048
@timrehak4048 16 күн бұрын
this is cool but how can I do this but outside my network as well? I have a AI server running Zorin with Ollama but when im not at home I want to use these big models with out using the resources of my current machine or device using enchanted. all of my other devices are MacOS. I looked at ngrok but they time out after 8 hrs it looks like and I wouldn't mind paying for it if I there wasn't a cap on it.
@StephenBlum
@StephenBlum 15 күн бұрын
one option to get 100% up and running with your at-home GPU and remote access is to use PubNub.com API to send/receive the text data. it does take some setup and coding. you can create a chat app interface that delivers the prompt to your GPU running the model, and then publishes the response back. user app -> PubNub Publish API user prompt -> your server subscribes to the events and submits the prompt to the GPU model -> your server publishes back the answer to -> user app is subscribed to the response channel and receives the answer. Copy and paste the description above into an AI tool to build the app for you 🚀
@eriks2962
@eriks2962 16 күн бұрын
A couple comments. The article reads a lot like "Man selling shovels says the gold rush is real". I feel like there is a lot of confusion behind what developpers do. At this point if AI tools are significantly accelerating your workflow. I have lots of questions about what you do. I find it most helpful working at the edge of what I usually do. The places where I know there is a library doimg it and I have a sense of how it works. But I'll need a lot of googling to get things started and get then quite right. In the things I do regularly, it's at best a typing assistant. In the things I don't understand how they work. You won't get much further than hello world style things because you don't understand it enougj to fix it when it does nonsense.
@StephenBlum
@StephenBlum 15 күн бұрын
you make a strong point. the AI is just a tool. let's imagine for a second that there is an AI tool that creates perfect code. You still need a human software engineer to direct it because there's scenarios like you describe where the software needs to be maintained. The tool needs guidance
@true_visual
@true_visual 16 күн бұрын
Where's the tutorial? Discussing about a tool is called a tutorial now? Nice video but wrong title.
@StephenBlum
@StephenBlum 15 күн бұрын
you are right, the title is wrong because it's mostly a discussions video and a mini getting-started intro with a code walkthrough. that doesn't really count as a tutorial in this case, more like it's an overview
@falcondianel
@falcondianel 17 күн бұрын
I work in AI development for bank. And I started to use gpt for coding help just because managers nowadays are so obsessed with this thing and you have a lot of simultaneous project that you cannot cope without using helpers such as code copilots just to speed up your work.
@StephenBlum
@StephenBlum 17 күн бұрын
the managers think that it saves more time than it actually does. there is a lot of hype. the GPT tools do help a bit. it's great that it saves some time we using AI tools. It allows us to focus on the more creative parts of our work
@RossPfeiffer
@RossPfeiffer 17 күн бұрын
This is what I need to explore. Just getting started.
@StephenBlum
@StephenBlum 17 күн бұрын
nice! yes it's pretty great to see that the government has job listings like this. you can bid on the listing and make a great outcome
@usernamediv
@usernamediv 17 күн бұрын
We are at the end of 2024 not 2023.
@StephenBlum
@StephenBlum 17 күн бұрын
Good catch you found a mistake I made 😅
@usernamediv
@usernamediv 16 күн бұрын
@ I thought I was going crazy for a second lol
@Leo007619
@Leo007619 17 күн бұрын
Hi, there! :) I'm Ilya, I'm 27, living in Russia. I've been working in completely different field, and am now thinking of starting to learn Python. I have actually been trying to study it for one week now, but I have serious worries. I'm not sure if I should actually start (or should I say continue) learning given the high competition in this field and the AI concern. I feel like I've wasted my twenties, working the job I dislike instead of starting to learn programming at a much younger age. At the same time, I feel that I've found what I really love and want to do, but why have I done so now, not sooner... :( What do you think? Is today as good of a time to start as, say, 5 years ago?
@nicohornswag
@nicohornswag 17 күн бұрын
Don't get discouraged, these are all marketing stunts to appeal to CEO's and VC's. Coding and development will still be around for a long time. I'm a systems engineer and full stack software developer who uses SOTA LLM models everyday and I can tell you for a fact that LLM's are just a tool.
@StephenBlum
@StephenBlum 17 күн бұрын
Ilya, it's never too late to start programming!😊 python is a great staring point. It's also a really popular choice these days as it's the primary language used for AI programming 🎉 get started today!
@StephenBlum
@StephenBlum 17 күн бұрын
agreed with @nicohornswag LLMs are just a tool. LLMs are a large paintbrush. rather than typing individual keystrokes, you can use an LLM to paint larger segments of code for you
@Kmps2341af
@Kmps2341af 15 күн бұрын
Same here , infact I am a bit older 32 and I have also wasted my 20s doing spontaneous job, and finally I found my love for coding. I have been coding since one year now and I am able to build up something. But I realised the love for coding has not developed because I was meant for it, but rather becuase it has become very easy to learn to code and with so many resources available. But since yesterday's development a big fear has developed inside me,
@StephenBlum
@StephenBlum 15 күн бұрын
@@Kmps2341af nice! great you have found your love for coding 🎉 it's a lot of fun right? And it can be concerning when we hear about the new GPT o3 model, where it has become the top 200 best software engineer in the world for coding challenge benchmark
@KulaGGin
@KulaGGin 18 күн бұрын
"leaked recording", "AI takes over" yeah, right. More like "please buy our stocks, make us richer" If anyone will manage to make an actual coder, it's basically going to be Skynet, at that point everyone can stop working and doing everything, it will just take care of everything in any way it wishes and we won't be able to do anything.
@StephenBlum
@StephenBlum 17 күн бұрын
haha yes! you are right. It's pretty much exactly "buy our stocks". we are years away from AGI at this point
@yousifalfaki4389
@yousifalfaki4389 18 күн бұрын
I love nim
@StephenBlum
@StephenBlum 17 күн бұрын
thank you 😊
@sonicobg1
@sonicobg1 19 күн бұрын
as an artist, your paintbrush analogy was great. coat an area with large brushes, then fill in any gaps or unstraight strokes/air bubbles.
@StephenBlum
@StephenBlum 18 күн бұрын
Yes! I like that analogy. it makes the AI seem less scary. it's helping us create things by using large brushes, rather than individual keystrokes and mouse clicks
@sonicobg1
@sonicobg1 19 күн бұрын
short answer: no. long answer: potentially if the ai is instructed correctly by someone with programming experience like myself. i actually made a video about this on my channel.
@StephenBlum
@StephenBlum 18 күн бұрын
yes exactly. you got it! AI can't yet replace software developers. today the AI can help make a software developer more efficient. usually we have to lookup a lot of docs, read the docs, then construct a solution based on our understanding. the AI can do all of this for us in the IDE 😊
@KulaGGin
@KulaGGin 18 күн бұрын
_"potentially if the ai is instructed correctly by someone with programming experience"_ So like one of the things I'm writing rn is a state machine for the character state. It can't do it if I just say generic terms. The kind of terms I'd have to give it to write proper code would be so specific that it's easier to just write the code. Which I do. The biggest thing those AIs can really help is picking names that are already taken. So, I added methods Start and Stop for an Action class. And the Start method is already taken by Unity. So I asked chatgpt to give me alternatives for the Strart and Stop words. It provided a reasonable list for both, I picked Begin and End.
@llothar68
@llothar68 17 күн бұрын
This can not happen with LLMs. Th ey are not rule based
@StephenBlum
@StephenBlum 15 күн бұрын
@@KulaGGin seems like fair tokens for this purpose. Sounds like a fun project! good idea to use a "stop-token" for this
@JetGravy
@JetGravy 19 күн бұрын
love the energy
@StephenBlum
@StephenBlum 19 күн бұрын
thank you! that is great to hear 😊
@Therealomarliendo
@Therealomarliendo 19 күн бұрын
Is this AI generated right?
@StephenBlum
@StephenBlum 19 күн бұрын
AI is getting really good right? 😊 the video is really me. to check for AI generated videos, watch the Hands 🤚🖐️ and make sure that the finger count stays correct 😄 this is a common AI flaw
@yodasalihi7027
@yodasalihi7027 20 күн бұрын
Hello there, I'm a vs code user, and i really want to learn vim but im confused, since they're almost the same should i start with vimr or neovim
@StephenBlum
@StephenBlum 19 күн бұрын
neovim is a good starting editor for learning vim-commands
@DWSP101
@DWSP101 21 күн бұрын
Good to see your still uploading brother man I have seen a lot of weird AI stuff since the last time you have talk to me about AI 🤖 being weird
@StephenBlum
@StephenBlum 19 күн бұрын
thank you! yes, AI is moving really fast! 🚀
@RebelCoderX
@RebelCoderX 22 күн бұрын
Waw.. A ten minute tutorial with a bunch of tools and technologies.. 13.4 seconds to compile a hello world example and only 23 lines of reactJS code, using a "function" as if it were a class, while webassembly still doesn't handle the DOM or any object oriented stuff AFAIK. Yeah we're really making some progress here.. Too bad no one is seeing how great it's all becoming. 😮‍💨
@StephenBlum
@StephenBlum 22 күн бұрын
you make a good point! yes WebAssembly has come a long way! Though it doesn't have a great DOM story yet. It's still great for tasks that may require a bit more compute that would take JS a while to process. Great progress and it's available today! Though adoption is small because it's still a bit of a challenge to get started. If it was as easy as JS and React then we would see more adoption. Lots of opportunity for innovation 🚀
@RebelCoderX
@RebelCoderX 21 күн бұрын
​​@@StephenBlum Yeah, sorry for being so cynical in my earlier message dude. It's a good tutorial, but I think it would be a lot more impressive technology if wasm were object oriented (including proper support for interfaces, which even typescript doesn't have) and supported manipulating the DOM. I found Yew, which supposedly uses structs in rust to fake object orientation (or does Rust have OO these days?), and I guess it uses javascript wrappers and callbacks to implement DOM manipulation. The code looks similar to React, including JSX stuff, except its programmed in Rust. You might want to look into the RSTY tech stack. It's all Rust (if you love that) and you can program both desktop frontend and webfront with it, as well as backend, and I believe the DB is made in rust as well. I found this video about it (not affiliated with the people of this video) kzbin.info/www/bejne/oqaymHiegaplqcksi=A_YQ0RckcB0QA1ZT
@Cokk9ine
@Cokk9ine 23 күн бұрын
0:30 in a bit hahaaa good pun. Good vid
@StephenBlum
@StephenBlum 22 күн бұрын
haha yeah! 😊😆 puns are great especially when they are causally snuck in the conversation. You found the pun! 🎉
@gysghost5126
@gysghost5126 24 күн бұрын
incredible
@StephenBlum
@StephenBlum 22 күн бұрын
It's pretty exciting because we can train these massive models with great accuracy. Then after training we can reduce the bit depth by 8x or more and still get great results 🙌
@xne0n
@xne0n 24 күн бұрын
You should've cover the quantum chip topic, as it is in the news recently !
@StephenBlum
@StephenBlum 22 күн бұрын
Ah yes! Google's Willow processor 🚀 it's pretty amazing how far Quantum processors have come.
@FranAbenza
@FranAbenza 24 күн бұрын
Use Tldraw. Thank me later
@JoniniTheChickenNugget
@JoniniTheChickenNugget 24 күн бұрын
Love this! Very helpful for when I'm occupied but will want to read papers :)
@StephenBlum
@StephenBlum 22 күн бұрын
Thanks, glad I could help! 😊 It's a powerful technique that has gained wide adoption in the industry. It allows you to run the very large models on many common household computers 🎉
@PhilosophicalZombieHunter
@PhilosophicalZombieHunter 26 күн бұрын
This seems like the MS Access vs MSSQL Server argument. Lets be honest for a moment, you will not practically be able to scale SQLite3. If you even reach that stage, you are in for a long and painful migration project where you as the developer would be asked why didnt you choose MySQL or Postgres. If its a small app or microservice, then fine. If its an in-browser db, then even better. If you use SQLite for getting data from the DB and then need a DB for further data crunching or displaying in a variety of ways, then cool. But you would not want to use this DB as your main DB for your app if you have any future scaling ambitions.
@StephenBlum
@StephenBlum 25 күн бұрын
You are right. when it comes to scaling it's a lot easier to use systems that have built-in scaling design models readymade. When you build using server databases, PostgreSQL and MySQL are great choices because of the built-in scaling models. For embedded DBs like in-app on a device, SQLite is your best choice there. For server-side SQLite, you can build a blazingly fast super scale model with extra planning and effort. This is absolutely inaccessible to most developers on Earth. Scaling SQLite as a server database is a significant amount of effort. it comes with amazing rewards and most developers won't want to spend enough time to make it work. This is okay! Because the pre-built options are much better ( MySQL/PostgreSQL ) 🚀🙌😊
@salasmdi7293
@salasmdi7293 29 күн бұрын
What are you talking about! 🙂
@StephenBlum
@StephenBlum 28 күн бұрын
good question! this is an article written by dnbt777. learnhowtolearn.org/how-to-build-extremely-quickly/
@dababykiller___
@dababykiller___ 29 күн бұрын
“Premature optimisation” is something of a vice of mine. Its horrible and I know that. But im just about to turn 24, im young so I allow myself to indulge in my need to dissipate energy. But, Robs got a damn good point. It takes time to develop good, reliable software. My dad always quoted someone, it went something like this, “Had I had more time, I wouldve written smaller code”. Optimise later. Solve the issue now.
@StephenBlum
@StephenBlum 28 күн бұрын
that's a great quote! it's really true. it's much better to write less code now and get to the end goal quickly. it takes a lot longer to optimize. even though optimization is fun sometimes! 😄
@Mayankcodezz
@Mayankcodezz Ай бұрын
Hey there you are amazing! I have sent you the linkedin connection looking for forward to build something valuable!
@StephenBlum
@StephenBlum Ай бұрын
great to hear! I'll find you on LN
@FineWine-v4.0
@FineWine-v4.0 Ай бұрын
I would like to take the time to shill for a Git alternative called Fossil (Which is basically Github-in-a-box) that was made by the SQLite devs to help develop SQLite & guess what it uses to store data ? SQLite They also created PikChr
@eduardabramovich1216
@eduardabramovich1216 Ай бұрын
Please, please, please, pleeeeaaaasssseeee continue creating content using Nim. Better it it's focused on web development.
@StephenBlum
@StephenBlum Ай бұрын
Nim is a great language! fast and easy to read. It's very approachable as a language ❤️
@Cyber_Lanka
@Cyber_Lanka Ай бұрын
Hey Stephen, wish you all the best with your channel. You make great content. You have a way of explaining things that's interesting to listen to. That being said please don't do "top x <topic here>" videos since they're highly subjective and KZbin is already plagued by way too many of them.
@StephenBlum
@StephenBlum Ай бұрын
Hi Cyber Lanka your advice is excellent. this makes sense. "top x" posts might get demoted by the YT algorithm and are highly subjective. thank you! 😊