I've watched at least a million hours of technical videos and you, sir, are a world-class teacher.
@bugbytes3923 Жыл бұрын
Thanks a lot Chris!
@DisabledCookie9 ай бұрын
i agree i had to watch the rest of the videos because this guy teaches so well
@AliMulla2 жыл бұрын
You are competing for my favourite Django KZbinr spot. I love the fact, your videos are always as brief as possible but really informative. Keep up the amazing content please 🤲🙏
@bugbytes39232 жыл бұрын
Thank you very much Ali, I appreciate that comment - will try to keep making videos and improving!
@Investigamer2 жыл бұрын
Thank you so much for covering alpine and HTMX. I'm primarily a backend developer, my past experience is doing PHP development while relying on jQuery for front end interactions, and now that I've moved on to Python I find the new frontend paradigm with things like React, Angular, etc way overcomplicated for my use cases, I've been searching for something lightweight and simple to make my site more reactive without reinventing the wheel or relying solely on jQuery. I've definitely found that with your content!
@bugbytes39232 жыл бұрын
Thank you for your comment, much appreciated! Yours sounds similar to my own background (PHP, Python), and I really enjoy these simple but effective front-end tools like Alpine.js. Glad the videos have been helpful for you, please let me know if you have any requests or anything. Thanks again!
@ale6au2 жыл бұрын
Thanks, that's great! Greedy for the next video :) The stack Django + htmx + Alpine seems very promising!
@bugbytes39232 жыл бұрын
Thank you!
@silkogelman2 жыл бұрын
Awesome introduction to Alpine.js in a Django setting. Thank you very much BugBytes! Right when I was thinking "I wonder how easy it is to fill that x-data with a bit of data from a Django view" you started talking about exactly that. 😀 Looking forward to your upcoming videos combining Alpine.js with more Django bits and Htmx!
@bugbytes39232 жыл бұрын
Thanks Sil! It's an interesting subject - hoping to show some more stuff w/ Django and HTMX soon. 😀
@mohammadshafayethaydar16522 жыл бұрын
This is awesome man! Thank you very much, please continue.
@bugbytes39232 жыл бұрын
Thank you Mohammad, appreciated as always!
@franklynOse4 ай бұрын
this is really a goldmine. I
@defidelity2 жыл бұрын
You really get the update 😁😁😁
@MrChinx252 жыл бұрын
Thanks for the content! Keep it up. I love your Django HTMX tutorials. They help(ed) me immensely!
@bugbytes39232 жыл бұрын
Thanks Tomi, glad to hear that!
@leventadam2 жыл бұрын
Hi, thank you for Alpine and Htmx tutorials.
@bugbytes39232 жыл бұрын
Hi - you're welcome! Thanks for commenting.
@anatolys92032 жыл бұрын
thank you very much! good job!
@bugbytes39232 жыл бұрын
Thanks Anatoly!
@mgr12822 жыл бұрын
Hi, thanks. After Svelte I like Alpine, It's easy and ready to use. If they add components support to Alpine It will be great.
@bugbytes39232 жыл бұрын
Yeah, minimal setup required for Alpine which is nice! Thanks for commenting.
@seydinaoumarsamabaly18062 жыл бұрын
Thank you so much man !
@bugbytes39232 жыл бұрын
Thanks again mate!
@jasonvilla36962 жыл бұрын
quick question, when fetching the data using alpine, can you use the jinja2 syntax for the url? like {% url 'people' %}
@bugbytes39232 жыл бұрын
Hey Jason - yes, you should be able to embed the URL template tag into the alpine attribute!
@umairsarwar7472 Жыл бұрын
great job
@bugbytes3923 Жыл бұрын
Thank you!
@Rob-cq1nf2 жыл бұрын
Thanks a lot 🙏Nice combi
@bugbytes39232 жыл бұрын
Thanks!
@timothymalahy78802 жыл бұрын
Great video this was very helpful. I had a few questions. 1. What's the difference between x-on:click or @click? 2. Does the @ reference the prior x-data in the div? 3. Can you do x-data and y-on:click? 4. When adding in dynamic classes , Do you need to do it with this javascript function style or is there other options as well?
@railspider2 жыл бұрын
Great intro video, thanks! Does x-data keep the data private, or can it be viewed the hacker's favourite tool F12? I'm assuming best practice is to use the django View to filter data before fetching it with x-init?
@bugbytes39232 жыл бұрын
Thanks! The data stored on the x-data directive is available client-side, so it's accessible via F12 - it's important not to store sensitive information in x-data (or return any sensitive information to the client-side, in general). You should filter on the Django view beforehand. If you were using a library such as django-ninja or Django REST Framework to serialize models/querysets, you can specify explicitly the fields you want to return (more on that in the next video or two).
@nicenaija99522 жыл бұрын
Ouuuuuuuuu. Love it. When do we get to HTMX + Alpine
@bugbytes39232 жыл бұрын
An HTMX and Alpine integration video will be coming quite soon I think! From your other comment, I'm also hoping to do some Hyperscript videos later on. The focus is on Alpine for the moment (Alpine and Hyperscript are quite similar in what they can do, albeit in different ways - but I do plan to cover both of these). Thanks for commenting!