The Ultimate Hacker Effect That Anyone Can Do

  Рет қаралды 347,721

Hyperplexed

Hyperplexed

Күн бұрын

Пікірлер: 504
@will31666
@will31666 Жыл бұрын
I'm mesmerized every time, it's not just the perfectly detailed explanation of the thought process and the professional JS/CSS skills, it's the video editing and for sure the voiceover, just great production each time. Thank you for sharing, it's precious. There is an obvious career change potential if UI/UX becomes boring at one point. Man this is great!
@Hari983
@Hari983 Жыл бұрын
Amen
@Anunak255
@Anunak255 Жыл бұрын
Amen
@jorgejorge8878
@jorgejorge8878 Жыл бұрын
Amen
@marinagheorghe9636
@marinagheorghe9636 Жыл бұрын
Amen
@ajhandsome01
@ajhandsome01 Жыл бұрын
good content
@hughmongous3151
@hughmongous3151 Жыл бұрын
This effect is amazing and its so simple once broken down.
@DylalyD
@DylalyD Жыл бұрын
Dude, your content is awesome. Cristal clear explanations, with videos that are just as long as needed. Please keep on the great work, you'll get all the recognition that you deserve
@Hyperplexed
@Hyperplexed Жыл бұрын
Thank you so much! Comments like this are what keep me going 👍
@God_of_Kiwi
@God_of_Kiwi Жыл бұрын
@@Hyperplexed
@Somebodyherefornow
@Somebodyherefornow Жыл бұрын
@@God_of_Kiwi he meant the money /s
@God_of_Kiwi
@God_of_Kiwi Жыл бұрын
@@Somebodyherefornow dude, @Hyperplexed is awesome he loves what he's doing- be less cynical you'll enjoy life more😀🖖
@rajagrawal6758
@rajagrawal6758 Жыл бұрын
@@Hyperplexed I would love to take a front end course made by you...I don't mind paying if the content is this much clean and amazing
@ATealPenguin
@ATealPenguin Жыл бұрын
1:35 for anyone watching new to JavaScript, the "30" arguments isn't "30 times for second" it's actually "every 30 milliseconds"
@simonswiss
@simonswiss 11 ай бұрын
The way you explain stuff is absolutely incredible. The video was less than 3 minutes, and I feel like I know exactly how to recreate this effect which I probably would have no idea how to begin with. "Breaking big anxieties into small anxieties you can manage" is truly empowering with solving code problems.
@boiimcfacto2364
@boiimcfacto2364 Жыл бұрын
Dude. No joke, you're gonna have a meteoric growth on youtube. No bullshitting around, just pure code adrenaline in your videos. Your thought process is perfectly explained and transitions/animations are minimal and only when necessary. Just wow. I see so many coding content creators who try to appeal to kids by spending 10 minutes explaining **display: flex** every time they use it and it slows the video down like crazy. We need more of your kind, people who'll focus on the overall implementation rather than padding the video with irrelevant details. Sorry for rambling but this is exactly the direction I want "programming youtube" to move in, so seeing your to-the-point videos is always like Cocaine to me 😆
@God_of_Kiwi
@God_of_Kiwi Жыл бұрын
spot on dude😎😎😎😎
@Psi141
@Psi141 Жыл бұрын
How is this perfectly explained
@boiimcfacto2364
@boiimcfacto2364 Жыл бұрын
@@Psi141 Rather, how is it not? Which part felt rushed to you?
@jasperdevs
@jasperdevs Жыл бұрын
Your work is extremely inspiring
@rehkmansa
@rehkmansa Жыл бұрын
I saw this and felt like crying, this is just so amazing. I’ve been trying to create YT’s remove from watch later effect and I can say… I’ve felt like a doughnut more times than ever. This is art!!!! This is beauty
@monognome9202
@monognome9202 Жыл бұрын
I recently tried to achieve the same effect in React Typescript because the package react-reveal-text didn't have the necessary types. It was a fun experiment. I tried having a list of other unicode characters apart from letters, it gave such a cool effect.
@colemorgan3391
@colemorgan3391 Жыл бұрын
hello could you possibly share the code you created? I tried to replicate the code in react but i’m not very experienced with react and failed
@mohammadmohsin5798
@mohammadmohsin5798 Жыл бұрын
@@colemorgan3391 function App() { const [text, setText] = useState("YOUR TEXT"); const alphabets = "ABCDEFGHIJKLMNOPQRSTUVWXYZ"; const handleMouseOver = () => { let interactions = 0; const interval = setInterval(() => { setText( text ?.split("") ?.map((letter, index) => { if (index < interactions) { return text[index]; } return alphabets[Math.floor(Math.random() * 26)]; }) ?.join("") ); if (interactions >= text?.length) clearInterval(interval); interactions += 1 / 3; }, 30); }; return ( {text} ); }
@Limestarz
@Limestarz 10 ай бұрын
I got this work in react for manually typing in an array of strings, but doing it with api call and setting the state creates crazy issues with useEffect and stops working after 3 loops. It might have something to do with how useEffect copies and compares arrays or some kind of constant remounting issues from other parts of my page...idk.
@michelestaffiere7422
@michelestaffiere7422 Жыл бұрын
Hands down you are one of the reasons I love learning front end Dev, I stay subscribed because all your videos are practical and to the point tutorials that teach me nice little animations and layouts that i can use in my own projects and learn by doing / implementing. Thank you so much for constantly pumping out amazing content.
@brandondrake4389
@brandondrake4389 Жыл бұрын
Your back and forth with us viewers, and yourself, is pure gold. I cannot describe to those who aren’t in this field how many times I have inner conversations with myself while coding.
@directpass
@directpass 4 ай бұрын
How did I just randomly stumble across such a great Web Developer after such a long time? Suppressing my urge to get back into it again is IMPOSSIBLE because of your incredible tutorials! And I LOVE IT!
@fazlerabbi9200
@fazlerabbi9200 Жыл бұрын
It's just amazing. The most beautiful thing about your videos is that they always show the real-life process. From thinking to breaking down in small pieces and finishing them one by one. They are very helpful.
@FlorinPop
@FlorinPop Жыл бұрын
I’m blown away by the level of quality you’re putting out! 🤯 AMAZING
@Kinselan
@Kinselan Жыл бұрын
I found out about this channel 3 days ago and it's now my favorite channel of all time.
@orbb3958
@orbb3958 Жыл бұрын
Start: Ok where is he going with this... End: WTF that looks soo cool with so little code as well
@darkWolf354
@darkWolf354 Жыл бұрын
Being a dev for more than 30 years... very cool! stunning effects in 2 minutes? subscribed! 👍
@someguy6076
@someguy6076 11 ай бұрын
I love these short videos you do. They're direct and to the point without having to put up with 20mins of babbling. It also helps that you give explanations of what the code is doing, as well as breaking a problem down into its' component parts. Incidentally, I re-worked your code for this effect with a font named Tektur; looks exactly like an airport display would appear.
@salinamu
@salinamu 4 ай бұрын
Your explanations are so clear and thought out, and the effects are really cool! So hard to find in most coding tutorial channels.
@ranesourav
@ranesourav Жыл бұрын
You gotta be kidding me !!!!!!!!!!!!!!!! This channel has one of the most kickass tutorials I have ever seen in my life ! Thank god youtube suggested me this !!! This channel is going to boost my skills by a 10 folds for sure ! Amazing channel !
@Eldalion99999
@Eldalion99999 8 ай бұрын
I am watching youtube tutorials for more than a decade, and this was by far one of the best and most interesting explanations I ever saw. I tip my hat to you sir.
@fuzzy-02
@fuzzy-02 Жыл бұрын
I love you. My passion for coding has been restored. All this time, i've been coding in a multitudes of language to get that feeling back that i had in highschool, making a game for my friends in visual basics and looking like a magician in my friends eyes. This. I discovered html css js from my univerity course but you showed me the light
@local9
@local9 Жыл бұрын
Randomly stumbled across you some months back, wish it was some years back. One of the few rare channels that gets the bell icon enabled.
@bozhidardenev
@bozhidardenev Жыл бұрын
I've been watching KZbin for as long as I can remember, and this is the first time I dare to leave a comment. @Hyperplexed you make some amazing content. Keep up the good work! (please).
@theburger_king
@theburger_king Жыл бұрын
Bro your videos are so amazing
@neel6
@neel6 Жыл бұрын
This has to be most balanced coding tutorial with equal amounts of entertainment and information compressed into 3 mins. The best part is that he is actually explaining what the code does instead of reading out the code hoping you know what it does. Looking forward to more like this.
@nonefvnfvnjnjnjevjenjvonej3384
@nonefvnfvnjnjnjevjenjvonej3384 Жыл бұрын
man your videos are art. i dont know anyone else who makes videos of this quality.
@robbiegeiss7090
@robbiegeiss7090 Жыл бұрын
this is my favorite youtube channel rn thank you
@ggff2269
@ggff2269 Жыл бұрын
I am a backened dev but your design is🤯🤯🤯🤯
@nekodesu6739
@nekodesu6739 10 ай бұрын
the future is bright with teachers like you. thanks
@jawwaadsabree5573
@jawwaadsabree5573 Жыл бұрын
I never thought css was cool until I started watching these videos
@arunodaybhattacharjee7001
@arunodaybhattacharjee7001 Жыл бұрын
Loved it
@Hyperplexed
@Hyperplexed Жыл бұрын
Thank you! Have a great day!
@Xiler_
@Xiler_ Жыл бұрын
Hyperplexed is literally the best front end dev that I can think of - no one can do what you do and especially in the amount of time that you manage to fit this into!!! I'll definitely be finding a way to incorporate this into my website!!!!
@CJ-wf8me
@CJ-wf8me Жыл бұрын
this the PERFECT content I wanna see 100x more of on my fyp
@smm132mordi3
@smm132mordi3 Жыл бұрын
Bro you should do a video on design tips your amazing
@elixpo
@elixpo Жыл бұрын
I'm just mesmerized by the ability of content up this channel
@StarCourtesan
@StarCourtesan 9 ай бұрын
This is I think the best way for me to sit through a tutorial and grasp all of it. Do more
@amritbanerjee
@amritbanerjee Жыл бұрын
Just mesmerised with the production quality voice over and then going back to learning the code… ❤
@malcewicz
@malcewicz Жыл бұрын
Man I love your videos, halfway through I zoned out just listening to your nice smooth voice and mesmerized by the cool animation. Your voiceover explaining everything so clearly and easily with your thought process and editing is amazing. I want more of your videos!
@Andreas-hy7ob
@Andreas-hy7ob Жыл бұрын
Tak!
@Hyperplexed
@Hyperplexed Жыл бұрын
Thank you so much!
@dinhoangduy
@dinhoangduy Жыл бұрын
You have enlightened my mind ~
@SoreBrain
@SoreBrain Жыл бұрын
So tightly packed I love it
@tom.devisser
@tom.devisser 2 ай бұрын
You're on my way to becoming my new favourite KZbinr.
@sebuzz17
@sebuzz17 Жыл бұрын
Only discovering your channel now, that's pretty cool and make me want to redo my boring first portfolio i didn't update for years.
@Joshmooredesign
@Joshmooredesign Жыл бұрын
I’m not even a coder and I love your videos
@GamerX-2000
@GamerX-2000 Жыл бұрын
Pretty cool. I like it. Might use it in a future project.
@bryniac5
@bryniac5 Жыл бұрын
Yo, this is awesome, I have been thinking of making a portfolio website of my own, and your tips and tricks have been of great help... thank you
@bryniac5
@bryniac5 Жыл бұрын
Lol taxation and fees is weird on youtube I meant to send the equivalent to five bucks and somehow is now half of that, lmao
@Hyperplexed
@Hyperplexed Жыл бұрын
Thank you so much! Happy to help!
@ask-wj2pf
@ask-wj2pf Жыл бұрын
Your videos are just addictive at this point.
@angelcobosardon
@angelcobosardon Жыл бұрын
It reminds me of the arrivals board of the airport. Your videos are some of the best contents of KZbin by the way. Thanks a lot for sharing with all of us.
@nicolasparada
@nicolasparada Жыл бұрын
Thanks. The effect is very cool, but the audio effect behind it is even cooler.
@noctemcat_
@noctemcat_ Жыл бұрын
That's actually cool. It can serve as a nice base, after that just make a couple classes with transforms and apply them when switching and it can become even better.
@shareefhassan8197
@shareefhassan8197 Жыл бұрын
Man the is the fastest channel growth I've ever seen, I bet you'll reach 1m in no time
@TomHermans
@TomHermans Жыл бұрын
very, very nice. so concise, yet straight to the point, starting with the "simple" kinda zoomed-in solution and expanding back to the original problem by zooming out and eventually reaching the final goal.. The way you tell it, is a class on it's own imho
@whitefluffycloud
@whitefluffycloud Жыл бұрын
Recently stumbled on your channel. All these videos are so good! Huge cudos mate
@AcridDragoon
@AcridDragoon Жыл бұрын
mate i've binged all your videos and honestly you make the best frontend content on youtube can't wait for what's next
@wlockuz4467
@wlockuz4467 Жыл бұрын
In the time when everyone loves to hate on JS/CSS, you are the person who makes me love it more.
@kkww3065
@kkww3065 Жыл бұрын
You made my day! Watching your video is the most happiest time of my day now! Salute!
@zackp1023
@zackp1023 Жыл бұрын
I don’t code, but as a designer I find your videos fascinating. Super inspired every time I watch. Keep it up 🎉
@akshatsharma8408
@akshatsharma8408 10 ай бұрын
can we do the same thing in a design tool if you know
@slunkeh
@slunkeh Жыл бұрын
Love this, great thought process behind it too. Not only do I love this but I love the narration too, sounds right out of the next best Netflix series haha, speaking of which has anyone watched "You" on Netflix, sounds just like that!
@billy818
@billy818 11 ай бұрын
just had the urge to implement this in react, was a fun afternoon. keep up the great vids 😊
@klob0t
@klob0t 10 ай бұрын
how did you do itttttt
@brelade
@brelade Жыл бұрын
You remind me of Disrupt. Your voice, the editing, the vibe. Keep it up, amazing work.
@soumelee5661
@soumelee5661 9 ай бұрын
Amazing U explained so much in 2 minutes. Mind blowing 👏👏👏👏👏
@ericdimarzio5756
@ericdimarzio5756 Жыл бұрын
I don't know how you don't have 5 millions subscribers yet. If it's cool, please wait until I get a job using everything I've learned from you first. Then go nuts. For real thought, these videos are incredible. They make me really excited about css and this crazy new career I'm starting.
@bikrantjungbudhathoki3687
@bikrantjungbudhathoki3687 Жыл бұрын
I had never in my life understood anything better than this
@kinos.studio
@kinos.studio Жыл бұрын
You are an amazing teacher. Please continue.
@lifeisbeautifu1
@lifeisbeautifu1 Жыл бұрын
I'm glad i have discovered your channel.
@oyin-k
@oyin-k Жыл бұрын
I always wish I can like your videos multiple times. This is just beyond words
@jacoponotari6031
@jacoponotari6031 Жыл бұрын
You are crazy. Your content is insane and i hope u'll continue upload stuff: Great job mate!!!
@kamal-ahmed
@kamal-ahmed Жыл бұрын
Mind-blowing explanation..I wish every teacher in school and college was so great at breaking problem into such smaller pieces.🎉🎉🎉🎉
@TaranveerSingh-oz2jd
@TaranveerSingh-oz2jd 10 ай бұрын
Watching without any sound is still good enough to understand 😊
@carlosignacionavarrorios964
@carlosignacionavarrorios964 Жыл бұрын
Holy damn dude, you just blow my mind everything you upload a video. Thanks for your the effort you put in these to make people love coding.
@duhby
@duhby Жыл бұрын
Thank you for sharing this website! It's so inspirational. I think we'd all love it if you did more content on different effects you find interesting on this website, even if the video is longer than 5 minutes.
@klegasstift1768
@klegasstift1768 Жыл бұрын
this is the good kind of turtorial, as short as it can be and very understandable
@justincharo
@justincharo Жыл бұрын
LOVE YOUR VIDEOS!!! The way you break things down is always perfectly understood! You never fail to give me inspiration and motivation! I appreciate you ! ❤👏🙏
@danuvip
@danuvip Жыл бұрын
nice tutorial! didnt knew it was that easy, you always breaking stuff down so its in clear sight for beginners. Lovin it! Keep it up!
@alterego5475
@alterego5475 Жыл бұрын
I dont even do anything with coding but my god youre just a blessing for doing these vids
@mikeg3810
@mikeg3810 Жыл бұрын
I wish every coding tutorial gave such detailed explanation. People would learn a lot faster.
@codewithmeer
@codewithmeer 10 ай бұрын
if this guy launches any course on teaching animations, im buying it. on point
@LambOverSpicyRice
@LambOverSpicyRice Жыл бұрын
Best in the game, keep them coming!
@veeruneerukonda67
@veeruneerukonda67 Жыл бұрын
It took me like 1.5 hours to do this on my own 😅, you are my inspiration man keep up the extraordinary work.
@developer_014
@developer_014 Жыл бұрын
Im starting to fall in love with js again just 'cause of ur easy tutorials.
@Thomas-gi9vy
@Thomas-gi9vy Жыл бұрын
Amazing how the video is both very well thought out and informative, but also very good music use
@pankajbhadane
@pankajbhadane Жыл бұрын
My first time here, ok this channel is addictive.
@h3llloworld
@h3llloworld Жыл бұрын
i saw this particular website in December on awwwards and wondered deeply, how were they able to do this. you are God sent bro, thank you for making this video
@WiseArts
@WiseArts Жыл бұрын
You are such a good teacher. Fun project that's short and sweet, perfectly explained, with excellent editing. Serious fan! 🤩
@jugibur2117
@jugibur2117 Жыл бұрын
Your way of teaching us things is incomparable, thank you so much!
@yishakabrham5002
@yishakabrham5002 Жыл бұрын
Your videos are not only educational but also entertaining
@tejasnikam3287
@tejasnikam3287 Жыл бұрын
This guy boost my confidence level !!
@BlueJDev
@BlueJDev Жыл бұрын
I've done this before in a project for the word enigma. It wasn't as elegant as this so I will def be "borrowing" this if I need the effect again... Nice one
@singleMaltMatt
@singleMaltMatt 11 ай бұрын
wow! your videos are always so nice to watch. keeps me captivated while learning something new. thanks!
@i3looi2
@i3looi2 Жыл бұрын
As a 15y+ fullstack developer oriented towards UI/UX all I can say after watching this video is: LMAO subscribed.
@hugosouza1672
@hugosouza1672 Жыл бұрын
this channel is a masterpiece
@Spytie1
@Spytie1 Жыл бұрын
excellent content, clearly explained with amazing tone and voice, keep going!
@felipegutierrez2944
@felipegutierrez2944 Жыл бұрын
I need like a billion of this! Awesome content!
@nekodesu6739
@nekodesu6739 10 ай бұрын
the web is AMAZING, i hope you can do a breakdown each part,like the loading screen and the first image that flip like a book when you about to move the page... awesome!
@daleryanaldover6545
@daleryanaldover6545 Жыл бұрын
I spent a huge amount of time looking at their website 3 weeks ago, love the lore and world building. Edit: I made some changes with your code, it now supports iterating through multiple words.
@sagarbharati1438
@sagarbharati1438 Жыл бұрын
This is the man who deserve billions subscribers. Just Waaw always
@sumitmehra5119
@sumitmehra5119 Жыл бұрын
You are literally a God man. Love your content 😍😍
@antonyefanov
@antonyefanov Жыл бұрын
Amazing, clear and inspiring. This is why i love programming
@jonoisedev
@jonoisedev Жыл бұрын
best channel on web devsign
This Website Feature Demands It Of You
3:00
Hyperplexed
Рет қаралды 217 М.
I Fired a CSS Cannon at a Famous Streamer
3:28
Hyperplexed
Рет қаралды 420 М.
人是不能做到吗?#火影忍者 #家人  #佐助
00:20
火影忍者一家
Рет қаралды 20 МЛН
So Cute 🥰 who is better?
00:15
dednahype
Рет қаралды 19 МЛН
Hacker101 - JavaScript for Hackers (Created by @STOKfredrik)
24:17
Click a Button, Destroy My Site
11:40
Hyperplexed
Рет қаралды 118 М.
Your Images DESERVE These Effects
4:46
Juxtopposed
Рет қаралды 46 М.
ImNotGoodEnough.js
11:11
Hyperplexed
Рет қаралды 899 М.
If Programming Tutorials Were Super Dramatic
2:42
Hyperplexed
Рет қаралды 284 М.
HACKING UNITY GAMES (FOR NOOBS)
16:11
cazz
Рет қаралды 103 М.
This Website Theme Hasn't Been Perfected Since 1996
9:43
Hyperplexed
Рет қаралды 325 М.
Subtle, yet Beautiful Scroll Animations
5:04
Beyond Fireship
Рет қаралды 1,8 МЛН
I Redesigned the ENTIRE YouTube UI from Scratch
19:10
Juxtopposed
Рет қаралды 949 М.
I Gave a Website Logo Superpowers
5:47
Hyperplexed
Рет қаралды 251 М.
人是不能做到吗?#火影忍者 #家人  #佐助
00:20
火影忍者一家
Рет қаралды 20 МЛН