Тёмный
Benjamin Carlson
Benjamin Carlson
Benjamin Carlson
Подписаться
I make videos about computer science, software development and productivity. Sometimes I film what I code. Visit www.benjamincarlson.io/ for more information about me and visit www.coffeeclass.io/ for free programming tutorials.
Progressive Web App in Next.js
3:26
2 года назад
Chakra UI Responsive Sidebar
14:33
3 года назад
Chakra UI Dashboard - With Next.js
53:14
3 года назад
Next.js + MDX Crash Course
7:22
3 года назад
Building Your Apps!
11:49
3 года назад
Комментарии
@prajwal.gadakh
@prajwal.gadakh 23 дня назад
Thanks man, it worked
@alaminmuhammed4137
@alaminmuhammed4137 26 дней назад
For any using this and gets '502 bad gateway' error, just leave the WSGIPath as was given in the ebs django documentation (i.e. WSGIPath : ebdjango.wsgi:application)
@georgesroberto21
@georgesroberto21 26 дней назад
And I come to the end of the tutorial thanks to the great flow of content. It's like completing a movie series leaving you satisfied but hoping it would continue. Mad Respect Sir Benjamin!
@georgesroberto21
@georgesroberto21 26 дней назад
Mad Respect Sir Benjamin👍!
@georgesroberto21
@georgesroberto21 26 дней назад
Thank Big Time Benjamin. Just the fact that you have taken your time to explain each line of code down from its origin to the most simplified bit of it is amazing! Mad Respect Sir 🥳. You make Django feel like the home it is! The video is helpful in 2024! I like your content! 👍
@LeonardoJavierRodriguezGutierr
@LeonardoJavierRodriguezGutierr Месяц назад
This is 3 years-old, just found it and this is the only Chakra UI tutorial that did actually help AND taught
@MathComputerScienceTradi-ge7tw
@MathComputerScienceTradi-ge7tw Месяц назад
What’s the difference between .read and .watch
@ahmednoor1075
@ahmednoor1075 2 месяца назад
for those whose first pop-up at 6:44 dosnt work, use this code (By.XPATH, "//div[text()='Not now']") as its NOT A BUTTON, ITS A DIV ELEMENT
@derciopale
@derciopale 2 месяца назад
Thank you for sharing
@shero4119
@shero4119 3 месяца назад
Thank you so much for your videos man. They're super helpful and fun.
@RTG-1999
@RTG-1999 4 месяца назад
Thank you soo much. i needed it
@maxharano940
@maxharano940 4 месяца назад
how do you do it in TS? threw a bunch of errors...
@wackyguyoverthirty
@wackyguyoverthirty 5 месяцев назад
This working as of today Benjamin? ❤
@fullstackweb_developer
@fullstackweb_developer 5 месяцев назад
thank bro 👍👍🙌🙌
@очиньзлойпон
@очиньзлойпон 5 месяцев назад
No, better use overflow-x: scroll and overflow-y: hidden or auto
@hendrakusuma2026
@hendrakusuma2026 5 месяцев назад
in new version of next js, i was confuse how to add font awesome because different structure folder, there is no pages folder
@fellowwanderer8767
@fellowwanderer8767 5 месяцев назад
why is there a class name 'RxpZH'?
@ShivamSharma-wl3bd
@ShivamSharma-wl3bd 6 месяцев назад
it’s showing 502 bad gateway eeror after deploying
@verycommonguy9489
@verycommonguy9489 6 месяцев назад
thanks mate! i might be too late but can we somehow create an automation system which notifies us when we receive a call on instagram?
@vishalmt6503
@vishalmt6503 6 месяцев назад
I don't know .. if you are active anymore ... but this is exactly what I needed !
@BenjaminCarlson
@BenjaminCarlson 6 месяцев назад
Thanks! The thing I love about RU-vid is I don’t have to post and the videos still help people!
@Idonoteatdogs6
@Idonoteatdogs6 6 месяцев назад
Lol dont call your lists list just call it lst or a placeholder _
@KonstantinM-nuu
@KonstantinM-nuu 6 месяцев назад
Great video. Thanks!
@user-op2nk8nw9b
@user-op2nk8nw9b 6 месяцев назад
FYI you cannot use Big O for average and best case scenarios because Big O represents the worst case. Average case would be Big Theta and best case would be Big Omega.
@squiddymute
@squiddymute 6 месяцев назад
automation from a headless browser will probably get you suspended
@user-br9sh3xn5v
@user-br9sh3xn5v 7 месяцев назад
What name apps?
@lebaf8661
@lebaf8661 8 месяцев назад
If I'm looking to consume those icons via API, how can I do it, with the issue of imports, it really makes it difficult for me to think about it.Greetings.
@syedshahzanhussain2092
@syedshahzanhussain2092 8 месяцев назад
Code?
@shotoiyo
@shotoiyo 8 месяцев назад
I dont think that makes sense. What if we want separate appbars, and other widgets that come within Scaffold for every page? I don't think title and Scaffold widgets should be same for each screen except bottom navbar:(
@christianloizou4463
@christianloizou4463 8 месяцев назад
Brilliant tutorial, thank you
@user-tj2zg6pv4k
@user-tj2zg6pv4k 8 месяцев назад
@kacperkepinski4990
@kacperkepinski4990 9 месяцев назад
calc in action
@lucasyoung9594
@lucasyoung9594 9 месяцев назад
Question: How do you make the hamburger button disappear? I have what I believe is the same code as you (I don't use theme breakpoints though, I use the standard given breakpoints). When I click on the hamburger icon, it still remains, and everything else opens (including the close icon). And when I click the close icon, everything just opened closes. The display for the hamburger icon is set as "Flex" and not "display" which I believe would change it. If you or anyone knows the answer to this, that would be great to know!
@lucasyoung9594
@lucasyoung9594 9 месяцев назад
I made a solution which was just to give the Hamburger Menu Button its own useState, and switch on it's own click and on the close icon click, so it's like this: const [display, changeDisplay] = useState("none"); const [hamDisplay, changeHamDisplay] = useState("flex"); <Flex display={{ base: hamDisplay, sm: hamDisplay, md: "none", lg: "none" }} flexDirection={"column"} justify="flex-end" > <IconButton aria-label="Open Menu" size="lg" m={2} icon={<IoMenu />} // display={["flex", "flex", 'none', 'none']} display={{ base: "flex", sm: "flex", md: "none", lg: "none" }} onClick={() => { changeDisplay("flex"); changeHamDisplay("none"); }} /> </Flex> {/* Mobile Content */} <Flex w="100vw" display={display} zIndex={20} flexDirection="column"> <Flex justify="flex-end"> <IconButton mt={2} mr={2} aria-label="Close Menu" size="lg" icon={<IoCloseSharp />} onClick={() => { changeDisplay("none"); changeHamDisplay("flex"); }} /> </Flex> ... {remainder of code} But I am still curious about a solution that doesn't require two different useStates.
@multifunctionalchannel2045
@multifunctionalchannel2045 9 месяцев назад
Спасибо за видео, но у меня почему-то при переходе на страницу сталь появляться отступ сверху, что это может быть?
@odio_stationofficial3420
@odio_stationofficial3420 9 месяцев назад
You can, but must never use list as name of your list, str as name of your string and so on... because first when I looked at your most frequent finding statement, I wondered for long how tf could that work because statement had 'list' written without '( )', then I saw that list was not a function, but name...
@user-gn4fe6br5s
@user-gn4fe6br5s 9 месяцев назад
Thanks for the interesting video bro, I just have a small query: I guess this code is no longer working, and it doesn't extract any link (links=0), I guess maybe Instagram changed its structure or something, hope can get update from you.
@user-me7vl4er2r
@user-me7vl4er2r 10 месяцев назад
usual example, nothing new
@rodrigo100kk
@rodrigo100kk 11 месяцев назад
Great video! When I get stucked in titles = soup.findAll('a', id='video-title') cuz the 'title' variable is an empty list.
@kqanoffical
@kqanoffical 11 месяцев назад
Such a good video.
@user-pp2kg5dy1n
@user-pp2kg5dy1n 11 месяцев назад
What a useless video. Installing 2 libs and using them separately. It doesn't add any value. Teaching us how to npm install things and create headings? That's ridiculous. Sorry for being toxic) But that is such a non-sense
@mlungisimdhlalose8698
@mlungisimdhlalose8698 11 месяцев назад
How can you do less frequent items?
@henrywaldersee4670
@henrywaldersee4670 11 месяцев назад
Hey just wanted to add that now it is also possible to run a headless browser with selenium, which should probably be easier to run on the server side without a display
@securitynvrnvr7776
@securitynvrnvr7776 11 месяцев назад
Nice vid thanks you so much, trying to get my app to remember states using ( AutomaticKeepAliveClientMixin { super.build(context); @override bool get wantKeepAlive => true;) but its not working my question is do you need the "MultiProvider and ChangeNotifierProvider" package to use the code in you vid thanks Benjamin. Some vids are to fast and leave out details this is perfect.
@sb_raash
@sb_raash Год назад
even the new chrome version of web-driver not getting response from websites (not working for 90% websites)
@nihalanil4444
@nihalanil4444 Год назад
Can you tell me on how to add a page unit?
@user-we3gf3rw3y
@user-we3gf3rw3y Год назад
pls share source code
@janing06
@janing06 Год назад
How to use external database
@classichuang5567
@classichuang5567 Год назад
helpful and thanks
@blackopszombiekill3r
@blackopszombiekill3r Год назад
Can you possibly make a tutorial on how to make an insta bot that follows and unfollows accounts that also won’t follow accounts that you’ve already followed
@user-kj2bc7rw9t
@user-kj2bc7rw9t Год назад
no need for set() I assume
@nishantwankhade1808
@nishantwankhade1808 Год назад
Hello sir , what if my repo is private and still i want to access some of it files form my application , How will i proceed with this ?,