Fred Rogers: Look for the Helpers
0:58
YouTube Favorites List, Abridged
5:34
Crumbly, but Good
0:23
12 жыл бұрын
Vestige - Decoy Implementation
2:05
13 жыл бұрын
i don't know
2:20
13 жыл бұрын
Пікірлер
@user-ob2zf1ki8n
@user-ob2zf1ki8n 23 сағат бұрын
welcome back
@itswuote
@itswuote 2 күн бұрын
This is certainly great. Would love to contribute
@knartfocker_
@knartfocker_ 2 күн бұрын
Peter Gabriel approves
@KonradTamas
@KonradTamas 3 күн бұрын
Are you planning to make more Unreal Tutorials in the future or you are done with it ? I will support you no matter what, just because of the great videos you made before.
@mehmedmaloparic
@mehmedmaloparic 3 күн бұрын
I get to brag i knew about Bigtime before it became a multi-milion dollar business. You deserve a like even on a video of random noise due to the quality of videos you made for us so far
@VanFS3K
@VanFS3K 3 күн бұрын
Holy crap, where have you been? I still watch those Unreal vids.
@PKSandman
@PKSandman 3 күн бұрын
Running a Twitch channel that he mentions in this video. www.twitch.tv/goldenvcr
@vaibhavrohilla8647
@vaibhavrohilla8647 3 күн бұрын
Goat is back !!!!
@FeliciaRondo
@FeliciaRondo 3 күн бұрын
This is such a good video, even for someone like me who isn't currently streaming <3
@shak-
@shak- 3 күн бұрын
As much as I enjoyed learning about this tool, I just wanted to mention that the UE community needs you now more than ever. Glad to see you uploading again.
@thebluehairedgamer
@thebluehairedgamer 3 күн бұрын
This looks like an incredibly versatile and interesting piece of software. I've always loved the way Chaz is able to implement and run things on Stephen and Mal's streams but have never been able to figure out much I can do that would work that way in our communities streams. We already use streamerbot but so far this looks to be on par with or perhaps superior to what we've been able to do with that. I'm very much looking forward to what else you can do with this and already jumped onto the waitlist. Keep up the awesome work man!
@ArtVandelayInc
@ArtVandelayInc 3 күн бұрын
Wow, gotta say, you're an impressive human being Alex. It's inspirational
@nolram
@nolram 3 күн бұрын
Looks awesome! I’d personally love to see a way to easily integrate with local software on a broadcasters machine, for integrating with OBS or other streaming software, or with game mods or other custom code.
@FromInsideTheClouds
@FromInsideTheClouds 3 күн бұрын
what year is it????
@Ansible2
@Ansible2 3 күн бұрын
Happy to see you make another video. Always interesting stuff!
@Octillionaire
@Octillionaire 3 күн бұрын
YOOOOOOO welcome back. Just yesterday I was hoping youd come back with more unreal engine videos.
@1play2fun
@1play2fun 3 күн бұрын
OMG! It's video from ALEX!!!
@GameLogicWasTaken
@GameLogicWasTaken 3 күн бұрын
Holy crap, he's back!
@SlySk
@SlySk 3 күн бұрын
I'll be honest, I'm a bit disappointed this is not an Unreal tutorial... But I have to admit that your tool is pretty rad and watching this video was worth it :D Is there any kind of security to prevent people in the chat hacking our channel through code injection or things like that? Can the developer do anything wrong that would allow that or is there some safeguards?
@AlexForsythe
@AlexForsythe 3 күн бұрын
Yeah, security is a top concern in how I've designed this system. When your script code is executed, it's run in an isolated V8 context - i.e. just a plain JavaScript interpreter, not something like Node where it might be able to make HTTP requests, access the filesystem, etc. - and the process that runs user code in V8 is completely isolated from the rest of the backend. It can't access the database, and it's never given access to any privileged information. Like, let's say we want a script to update your Twitch stream title. You can probably imagine a naive approach where we just give the JavaScript runtime your Twitch API token, so when it runs the setStreamTitle function, it can just make a call to the Twitch API. That's not what we do. (Because, among other reasons, we don't want privileged information that could be used to control your Twitch account just floating around in memory on the same system where we run arbitrary user-supplied code.) Instead, there's a backend service (the same one that handles connecting your Twitch account) that keeps your Twitch API token securely stored in a database. That service is the only thing that can make Twitch API requests on your behalf. When you call setStreamTitle in a script, what *actually* happens is that the script runtime makes a gRPC request to that service (properly authorized to prove that it's being called from a script in *your* organization), asking it to set the stream title. That way, your Twitch API token never has to leave its cozy home within the service that owns it. So, practically speaking, the only way for a viewer to hijack your scripts with a chat command would be if you were passing their message directly to the eval() function: like, if you made a command that let them write "!eval 5 + 5" and get back "10", then they could also do "!eval o.twitchAccounts.myAccount.setStreamTitle('foo')" and set your stream title... which is why it's never a good idea to pass user-controlled input to the eval() function. Either way, the system is designed so that your scripts can only access resources in *your* organization, with only the information that's *meant* to be accessible to scripts. You can't even access *your* confidential data (access tokens etc.), let alone anyone else's, so a malicious user still wouldn't be able to wreak total havoc. These sorts of fun design questions are a big part of what motivated me to keep scaling up this little personal project - and at some point, I'd love to make another video or two explaining the architecture of the project in more detail.
@SlySk
@SlySk 3 күн бұрын
@@AlexForsythe Thank you so much for the detailed answer, it's a fascinating topic =) I wouldn't mind more videos about this project.
@opnuul
@opnuul 3 күн бұрын
woah new alex forsythe upload 💞💞 awesome, plus what a cool project!! i'm definitely smashing that like button 👍👍
@obscure045
@obscure045 3 күн бұрын
Before subscribing: Last video: 3 years ago After Subscribing: Video Uploaded the next day. Mission Succesful.
@yunus5949
@yunus5949 3 күн бұрын
Inspirational tool. You can share it with whole streamers imo.
@bob7644
@bob7644 4 күн бұрын
A guy named Navhkrin made a comment on here that I completely agree with. Still, to this day, I think unreal would be better off having, or adding python as a programming option for many easy tasks. You could still make great games using 100% python. And then even have a system to translate it to c++ code. At that point, it would be golden. Blueprints are simply worse to debug. And less attractive to look at.
@Nullxiety
@Nullxiety 9 күн бұрын
I've been a game developer for the past 6 years starting on Roblox and constantly dealing with replication every step of the way. I moved to Unreal last year and been learning about its way of replicating actors since. I've rewatched this video every other month and only now can I begin to grasp the whole picture. This is a fantastic video explaining practically everything you need to know about replication in Unreal and I am very thankful!
@KonradTamas
@KonradTamas 11 күн бұрын
Where is this exceptional human being hiding ?? This video alone, easily generated a few hundred dollars of value for me. By saving me the time and mental pain needed to bring everything together in a complete overview like this !!
@co-jt6gd
@co-jt6gd 13 күн бұрын
And if you can’t find one, be one. That’s why I just joined a human rights organization in my town…because I’m passionate about making the world a better place for all people, plants and animals that live in it.
@notecc
@notecc 14 күн бұрын
Your editing and visuals are top notch. Really appreciate what you're doing for the community.
@leofrommer4623
@leofrommer4623 16 күн бұрын
First time watching this and I am in awe. This video is an absolut masterpiece! Thank you!
@ReubenWuzHere
@ReubenWuzHere 18 күн бұрын
I usually never post comments, but this was too awesome. Everything was perfectly laid out and structured to an understandable way that just feels right. The hours, days and months you just saved me is incredible. 👍
@ukaszkubisiak6295
@ukaszkubisiak6295 19 күн бұрын
Thank you so much for this video! It explains a lot from Build perspective! I'm working on build automation and I couldn't find a good documentation related to this topic. Thank you!
@maxvegas5423
@maxvegas5423 21 күн бұрын
Is there anything in this Vid that is outdated now in 2025 ?
@CocoTheDiamond
@CocoTheDiamond 24 күн бұрын
jan 2025. LA fires. helpers are swarming LA. thanks Mr Rogers. we're looking for the helpers.
@amyhines3589
@amyhines3589 28 күн бұрын
After viewing coverage of the LA wildfires, I need Mr. Rogers to remind me of this.
@BelindaJokinen
@BelindaJokinen 29 күн бұрын
2025. Be the helpers. See the helpers. Help the helpers.
@chris.farias
@chris.farias Ай бұрын
💚
@G.G.5229
@G.G.5229 Ай бұрын
My daughter just sent this ❤❤❤
@theundaddy8037
@theundaddy8037 Ай бұрын
This is an amazing video and the graphics are awesome too
@Music-tu1og
@Music-tu1og Ай бұрын
Just discovered your channel. I love this so much. THANKYOU
@appo8557
@appo8557 Ай бұрын
What an OG !!
@klambo85
@klambo85 Ай бұрын
I say these words daily. I may just be a random grocery store clerk, but when people say to me, “you’re so nice etc etc etc”. I always say, “Mr Rodgers said look for the helpers “ And if I can I will be one of the helpers. I’d never want to let down mr. Rodgers.
@BlackPara11
@BlackPara11 Ай бұрын
I watched more than 5 videos, and you were the only one who explained it decently. Great video!
@MM-ww6yb
@MM-ww6yb Ай бұрын
His Mother raised an excellent man 👏🏻
@globalfarkndalk4540
@globalfarkndalk4540 Ай бұрын
gold
@TopDogFX
@TopDogFX Ай бұрын
this is dope. thank you!
@rastermax2
@rastermax2 Ай бұрын
Amazing job
@303image
@303image Ай бұрын
Yes, here today!
@TedsWorld101
@TedsWorld101 Ай бұрын
Come back! This video is a great example of attention holding videos.
@CodyV608
@CodyV608 Ай бұрын
I'm here because a few miles from me a shooter took 4 lives of kids in a Christian school in Madison Wisconsin. I never watched Mr Rodgers (33y/o) but I know for a fact I love his messages. We need to get rid of these fucking guns 😔
@Foxtrot_III
@Foxtrot_III Ай бұрын
Or better yet, the psychopaths who use them to commit these atrocious acts.
@CodyV608
@CodyV608 Ай бұрын
@Foxtrot_III yep, treat the symptoms not the cause 🙄
@MrOnlineCoder
@MrOnlineCoder Ай бұрын
Incredibly valuable video
@UrielHK
@UrielHK Ай бұрын
This was just amazing! Thank you so much!
@batmanonabike3119
@batmanonabike3119 Ай бұрын
I still don’t understand why BP doesn’t resolve to an intermediate text based format that is source control friendly.