Go Playlist, including videos on DBs, SQLc and Goose: kzbin.info/aero/PL-2EBeDYMIbR1ag15E2MonJOj_cCIjUnd DataCamp Python Fundamentals: datacamp.pxf.io/ranBod
@dwyerwk5 ай бұрын
absolutely love the fact that this is bare bones simple and works out of the box. no frameworks, gazillion dependencies, containers and third-party b.s. required....just TWO files!!! love it, love it, LUV. ET!
@bugbytes39235 ай бұрын
Thanks a lot!
@elhaambasheerch7058 Жыл бұрын
I would love to see a bigger project with HTMX + GOLANG that uses databases, great content man!
@bugbytes3923 Жыл бұрын
Definitely coming up! Thanks for commenting!
@Ash-qp2yw Жыл бұрын
This should be simple enough to do -- have your endpoints make sql queries. I tend to split it up into "endpoint code" and "database query code" and just call my db insert/select functions from the endpoint function
@paranoia77 Жыл бұрын
When will it release?? I'm looking forward to it!@@bugbytes3923
@qwoolrat Жыл бұрын
seems not that hard as long as you know GORM
@jerbear7952 Жыл бұрын
@@qwoolratwho is Gorm and where do I find her?
@smyrnian_ Жыл бұрын
More Golang + HTMX please!
@bugbytes3923 Жыл бұрын
A series, perhaps?!
@ArisSetiawan-xy1dk Жыл бұрын
Series will be great. Thanks!
@bugbytes3923 Жыл бұрын
@@ArisSetiawan-xy1dk Understood! 😄
@ramadhanngallen9217 Жыл бұрын
@@bugbytes3923 series like a complete project
@bugbytes3923 Жыл бұрын
@@ramadhanngallen9217 Good idea!
@geoblk3000 Жыл бұрын
This is one of the most concise and straight to the point tutorials on Go + HTMX and templating on KZbin!
@bugbytes3923 Жыл бұрын
Thanks a lot! Glad to hear that, really appreciate the comment - cheers!
@klas4253 ай бұрын
Lovely tutorial. Zero noise, just straight to the point.
@bugbytes39233 ай бұрын
Thanks a lot!
@maximofernandez19611 ай бұрын
12:20 Btw, if you guys happen to be iterating over an array, you must use {{ . }} That means that it would just use the data as is. If you send a slice, say "Slice": { "hello", "world"} it should be something like this {{ range .Slice }} {{.}} {{end}} that should print hello and world in separated lines. I suppose that's also why you use .Slice, because you send a map, so the point represents that particular map. Also, I don't know if that changed, but right now hot reloading works, so it's not neccesary to restart the server everytime you make a change. This is a beautiful and fast tutorial. Thank you so much, and also thank you for sharing the links for learning further.
@speedTurtle Жыл бұрын
Stopped at 6:38 to say how excellent this video is, from a beginner's perspective.
@bugbytes3923 Жыл бұрын
Thanks a lot, really appreciate that!
@dotcom15176 ай бұрын
After hopping so many videos this is the one which clearly demonstrates how htmx works. Thanks 🙏
@bugbytes39236 ай бұрын
Glad to hear that, thank you for commenting!
@benderino42 Жыл бұрын
I'm new to Go and HTMX. The majority of the time I work with React/Node.js project. I was looking for a quick overview of these technologies. This video is exactly what I was looking for. In my opinion, it's a great intro. Thanks! Looking forward to seeing more advanced videos.
@bugbytes3923 Жыл бұрын
Thanks! Glad to hear you liked this video. HTMX + Go is a cool combo! I'll have more coming out from September onwards.
@clintoka Жыл бұрын
I'm in the same position! React mostly. So interested to see more about htmx and go...
@МаксимБалашов-м3г Жыл бұрын
Thanks a lot! Very cool video. I'm just dealing with a bunch of GO and HTMX! Looking forward to more videos on this topic! You're doing great!
@bugbytes3923 Жыл бұрын
Thanks! I'll look into some more Go + HTMX stuff. And some more Go in general!
@mentotong9652 Жыл бұрын
Great content! Your django+htmx content has helped me building an interactive web app for a national hospital without the need of JS frontend framework. It is currently used by the hospital and I am still enriching or improving the web app bit by bit. Now with GO, really helps me to learn new PL with different perspectives and approaches to tackle some of the Python issues. Would love to see more GO contents. Thanks a million.
@bugbytes3923 Жыл бұрын
Thank you! That's amazing to hear that you're using Django + HTMX in such a cool way for the hospital! Thanks again for the nice comment, and I'll try and add more Go content soon.
@ZorroRBF Жыл бұрын
This video is a master piece. I watched it a week ago with little knowledge of HTMX and no knowledge of GO templates. After learning more about the two subjects, I saw this video again and it is great! Thx a lot! Really good job!
@bugbytes3923 Жыл бұрын
Thanks a lot for that, delighted to hear it and thanks for watching!
@darthcabs Жыл бұрын
Love your way of teaching! Straight to the point, but going step by step, and doing everything by hand, rather than pasting blocks of code. Congratulations!
@bugbytes3923 Жыл бұрын
Thanks a lot, that means a lot! Glad you like the approach.
@benyaminyakobi36528 ай бұрын
Just got started with Golang & HTMX Thanks for the great content, perfect demo project for beginners!
@bugbytes39238 ай бұрын
Awesome, thanks! Good luck with Go and HTMX!
@FirdausAziz Жыл бұрын
I appreciate that you explained certain terms or concepts in relation to Django. It really helps put things in perspective. This is one of the most understandble Go video I've seen. Thank you. I hope to see more. Especially with something along Fiber + GORM. Because from my readings that are the nearest combination to Django.
@bugbytes3923 Жыл бұрын
Thank you, glad to hear that's useful! Fiber + GORM are definitely on my list. Definitely important to know a bit about the database/sql package as a starting point though, but I'll expand on this soon. Thanks again!
@AmoahDevLabs Жыл бұрын
I've watched this video over and over again and it is very interesting. I suggest we continue with this and do more with Go lang.
@bugbytes3923 Жыл бұрын
Thanks a lot! I think some more Go will be coming up soon!
@AmoahDevLabs Жыл бұрын
@@bugbytes3923 Wonderful 😊. I can't wait for more Go stuffs 😁
@CaffeinatedTech6 ай бұрын
Really good video mate. I like that you've used standard library, most tutorials use third party packages for templates, and routing. I really like the way you've iteratively built the app, introducing each topic as you build it.
@bugbytes39236 ай бұрын
Thanks a lot! Glad you liked the structure of the video, cheers.
@KhorlaneАй бұрын
Great tutorial! I followed along and everything worked as expected.
@bugbytes3923Ай бұрын
Thanks a lot, glad to hear it!
@0ktothorp Жыл бұрын
This is exactly what I wanted to learn lately. Thanks! 😁
@bugbytes3923 Жыл бұрын
You're welcome, thanks a lot for the comment!
@catcatcatcatcatcatcatcatcatca Жыл бұрын
This seems like an awesome introduction to both golang and HTMX - can’t wait to try this!
@bugbytes3923 Жыл бұрын
Thanks!
@nodidog Жыл бұрын
Great video, thanks for sharing. Be aware that the method used at 21:45 won't escape user inputs, so isn't safe for use in production. The html/template package does automatically escape though, so you can just use a template and parse the data.
@avithedev Жыл бұрын
HTMX + Go series is absolutely necessary Subbed 🙌
@bugbytes3923 Жыл бұрын
Thanks a lot! Appreciate it - will work on some new content for this.
@oluwaseunomotosho6812 Жыл бұрын
very very necessary
@MaybeBL1TZ Жыл бұрын
@@bugbytes3923 True it's very necessary specially with a better file structure and a cleaning code + i subbed
@Gusto20000 Жыл бұрын
Why does it feel like I went back 10 years and watching Angular 1 tutorial. Thank you for the video anyway, it's really informative Edit: This is very cool, much better that Angular 1 ;) thanks
@marju101010 Жыл бұрын
It's been a long time since I've learned so much from a youtube video.
@marju101010 Жыл бұрын
Thank you so much. Congrats.
@bugbytes3923 Жыл бұрын
@@marju101010 Thanks a lot, glad to hear it was helpful!
@baz_sh Жыл бұрын
This was such a great video! Appreciate the thorough and straightforward explanation as we went along. Interested in more Go content. Keep up the great work.
@bugbytes3923 Жыл бұрын
Thanks a lot - really glad to hear it was useful! Thanks for the comment 🙏
@TheKer7 Жыл бұрын
Prime's talk of Go+hx got me here. Great content and explanations!
@bugbytes3923 Жыл бұрын
Thanks a lot!
@adamtak3128 Жыл бұрын
Would love to see more Go + HTMX + Database videos!
@bugbytes3923 Жыл бұрын
Definitely coming up soon, I'm gonna do a video on Go + databases very soon as a prelude to more HTMX stuff.
@MHasnain2663 Жыл бұрын
This was so straightforward and easy to understand. Thank you!
@bugbytes3923 Жыл бұрын
Thanks a lot!!
@20dareason09 Жыл бұрын
A great video! Clear, concise, and helpful! Looking forward to the series!
@bugbytes3923 Жыл бұрын
Thanks a lot! Hoping to get it prepared in the next month and start releasing.
@AmoahDevLabs Жыл бұрын
I thought about switching to GO lang for some of my projects but I never did that 😅. It seems you're getting started with Go. Thanks very much.
@bugbytes3923 Жыл бұрын
It's always good to check out other languages. Go is definitely a good one. Thanks!
@willdurant141 Жыл бұрын
You are constantly anticipating what I want to learn. This is great.
@bugbytes3923 Жыл бұрын
Thanks a lot Will, glad to hear it!
@jedi2light9 ай бұрын
Thank you for that type of content, really, I appreciate such a series of videos! Golang and HTMX is currently the stack of technologies I want to learn to gain some valuable experience, so really thank you for you job 🥰
@bugbytes39238 ай бұрын
Thanks a lot, glad it was helpful! Good luck on your journey with Go!
@anujtyagi8173 Жыл бұрын
More such Go tutorials appreciated. Also, group GO tutorials into a playlist like you've created for Python.
@BbB-vr9uh Жыл бұрын
Awesome video! Loved how you show each piece in detail before moving onto the next piece.
@bugbytes3923 Жыл бұрын
Thanks a lot!
@michalbotor Жыл бұрын
this is really elegant! your presentation is great, and i came here for go, but i'm super impressed with htmx!
@bugbytes3923 Жыл бұрын
Thanks a lot for the comment! Great to hear - and yeah, HTMX is cool!
@ahmettek315 Жыл бұрын
Thanks! I started checking HTMX with Go just an hour ago and surprisingly found your video that is published 16 hours ago. I am lucky. Though htmx itself was easy, you made that surely easier :) Thanks again.
@bugbytes3923 Жыл бұрын
Thanks a lot Ahmet! Glad it helped. :)
@Frawkesish Жыл бұрын
Super enlightening . I'm just starting to learn to after using react and node for 3months while learning to program in general 😅 this really seems like it will simplify the hell out of my life and job ..
@bugbytes3923 Жыл бұрын
Thanks a lot! HTMX can definitely simplify things, for sure!
@ThomasSchlosser Жыл бұрын
Excellent video. You hit the spot for my current demand. Exactly the right steps for the compile cycles, concise language. Top. Thank you!
@bugbytes3923 Жыл бұрын
Awesome to hear that, thanks for the comment!
@Ego_Maritm Жыл бұрын
Amazing. I have been getting hands-on with Golang, and this is really beneficial. Again, thanks, bro💪
@bugbytes3923 Жыл бұрын
Thanks a lot! Good to mix it up a bit from Python.
@AliHassan-wc6nb Жыл бұрын
@@bugbytes3923 greetings! What would you suggest/what to choose for scalable applications? MOJO, GO or python Django! Great work bro!
@bugbytes3923 Жыл бұрын
@@AliHassan-wc6nb I haven't tried Mojo yet - you? Any good? To be honest, I think all can be scalable if used properly. Go has some advantages in speed, ease-of-concurrency over Python, but I think both languages are fine for 99% of web backends (if used properly). Software architecture can be a bigger factor than the language, imo.
@garbagechannel6514 Жыл бұрын
this is very well explained, thank you. i love the simplicity of the whole system too
@bugbytes3923 Жыл бұрын
Thanks a lot!
@markg1netsg Жыл бұрын
Really well articulated, would love to see a series on GO - Hyperscript - HTMX - thanks a lot
@bugbytes392311 ай бұрын
Coming very soon! Thanks!
@timbrockley Жыл бұрын
Great introduction - you covered a lot of useful coding techniques in an easy to understand way :)
@bugbytes3923 Жыл бұрын
Thanks a lot!
@angstrom1058 Жыл бұрын
This is great, thank you. Good pace, lots of info, no fluff. Love it. I would like to impose upon you... please, more. :)
@bugbytes3923 Жыл бұрын
Thanks a lot! Much more Go to come!
@josesimoes3478 Жыл бұрын
Great video!! Very concise and educational!! Exactly the level of detail I would pike to see in videos!
@bugbytes3923 Жыл бұрын
Thanks a lot!
@jasonmucio6067 Жыл бұрын
Great video! I like your consistent flow, which makes the content easy to follow. I'd love to see more a more involved project. 👍
@bugbytes3923 Жыл бұрын
Thanks a lot, still preparing some new Go + HTMX stuff for a more involved project - hopefully will release soon!
@binarydream00016 ай бұрын
Best ever Go + Htmx, so well explained.
@bugbytes39236 ай бұрын
Thanks a lot!
@Dettol68 Жыл бұрын
great teaching style - the big paste of code was a struggle at times, but otherwise, loved it! Keep doing them
@bugbytes3923 Жыл бұрын
Thanks a lot! (and sorry for the copy/paste!)
@markopavlovic2597 Жыл бұрын
Very good introduction 👏 Awesome you posted all the valid reference links 💪
@bugbytes3923 Жыл бұрын
Thanks a lot, glad you liked it!
@MarcusHammarberg Жыл бұрын
Brilliant teaching at neck breaking speed! I love it
@bugbytes3923 Жыл бұрын
Thanks a lot!
@xizt5973 Жыл бұрын
3 awesome things in this video. Golang, HTMX and the beautiful scottish accent
@jerbear7952 Жыл бұрын
Yeah it's a great accent unless you are selling Purple Burglar Alarms.
@pseabrook Жыл бұрын
Fantastic content dude! Extremely clear and informative.
@bugbytes3923 Жыл бұрын
Thanks a lot Peter. Glad it was clear and thanks for watching!
@muhammadadibshaharudin6978 Жыл бұрын
that is very detail and straightforward explanations.. great content.. Would love to see more with database.. Thank you
@bugbytes3923 Жыл бұрын
Thanks a lot - it's definitely coming, soon!
@hm_webdev11 ай бұрын
A Scotsman! 🎉 Refreshing to hear other accents.
@bugbytes392311 ай бұрын
Thanks from Glasgow!
@dazealex Жыл бұрын
Quite powerful for folks getting started and don't want to mess with Vue or React, though Vue is pretty simple, but still has a bit of a learning curve.
@FrostlightX Жыл бұрын
Thank you, HTMX + GO is exactly what I'm looking for, keep 'em coming
@bugbytes3923 Жыл бұрын
Thanks a lot, will do!
@FedericoPedemonte Жыл бұрын
great video, thanks! As a Go lover and JS hater I think I'm gonna love HTMX 🙂
@christhornham Жыл бұрын
Great tutorial! Thank you! I'd love to see more videos on this topic.
@bugbytes3923 Жыл бұрын
Thanks a lot! I'll try extending this soon into a larger HTMX + Go app!
@AgustinLencina96 Жыл бұрын
niceee I will wait for a Go + htmx series!
@fersalamanca2606 Жыл бұрын
Amazing content man. Really looking forward to a bigger project tutorial of Go + HTMX, maybe with some ORMs and migrations? Thanks for your efforts!
@stevemccauley Жыл бұрын
This is a fantastic video, with a lot of great Go server and template stuff. You gave a great explanation of how HTMX works, e.g. with hx-target, and the template fragment looks to be something that will be really useful. I've subscribed to see more HTMX with Go. Thanks!
@bugbytes3923 Жыл бұрын
Thanks a lot! Will do a proper project with Go + HTMX soon!
@goldunit86652 ай бұрын
Nice tutorial. Seems like it would be handy if Django had a render_block type function, something similar to Go's ExecuteTemplate - as an alternative to creating partial templates.
@licokr9 ай бұрын
Great tutorial, easy to understand and perfect explanation! Thanks a lot!
@bugbytes39239 ай бұрын
Thanks a lot!
@IQUBE Жыл бұрын
Loved this video mate! Great job!
@bugbytes3923 Жыл бұрын
Thanks a lot!
@jiasheanleong7918 Жыл бұрын
Great video! I love your explanation and how you only use the standard libraries. Keep it up.
@bugbytes3923 Жыл бұрын
Thanks a lot, appreciate it!
@pjmaas1065 ай бұрын
Love this so much! Would love to see how this works with a PostgreSQL, Golang and HTMX
@bugbytes39235 ай бұрын
Thanks! Hoping to build a bigger project out soon with Postgres.
@jollygirl2978 Жыл бұрын
Well explained! Thank you sooo much! More videos like this on HTMX and Go. Would love to see an exemple with interactive table element.
@bugbytes3923 Жыл бұрын
Thank you very much! I'll definitely be doing some more HTMX+Go stuff soon.
@marcusk7855 Жыл бұрын
Loved it. Just started learning GoLang.
@bugbytes3923 Жыл бұрын
Thanks a lot! Any Go requests, feel free to let me know!
@szmonszmon Жыл бұрын
Thanks! That was 2 technologies that I want to see together 🙂
@bugbytes3923 Жыл бұрын
Nice - thanks for watching!
@denisakp2 ай бұрын
I liked, and subscribed. Great content man !!!
@bugbytes39232 ай бұрын
Thanks a lot man!
@prashlovessamosa Жыл бұрын
Thanks this is something new and fresh.
@bugbytes3923 Жыл бұрын
Mixing it up a bit 😀
@TerenceKearns Жыл бұрын
I didn’t know this would be so easy. Beats the fell out of server side js frameworks.
@bugbytes3923 Жыл бұрын
Thanks a lot, really appreciate that! :)
@iGageit11 ай бұрын
Thanks for making this video! I needed it for my job lol
@bugbytes392311 ай бұрын
Thanks a lot for watching! Glad it helped.
@lukehooper3435 Жыл бұрын
Nice stuff, keep it up! Golang/Gin, htmx, alpine, tailwind would be cool to see!
@z01d Жыл бұрын
Liked! Request for more go videos.
@bugbytes3923 Жыл бұрын
Thanks, they're coming, just planning some stuff now!
@C.S.Argudo10 ай бұрын
It took like a year of learning wtf youre saying but i kinda get it now
@KamelJabber113 күн бұрын
Fantastic content and presentation! TY!
@bugbytes392313 күн бұрын
Thanks a lot, glad you liked it!
@norunners_ Жыл бұрын
Nice tutorial. My only critique is to not parse templates per request, it should be done once on startup and then reused throughout.
@bugbytes3923 Жыл бұрын
Thanks a lot for that tip! That's definitely a better approach, an oversight on my part - thanks again!
@87zoomy Жыл бұрын
Great video. Just what I'm looking for
@bugbytes3923 Жыл бұрын
Thank you!
@Lzadhito8 ай бұрын
Top notch video for newcomer like me! thanks!
@bugbytes39238 ай бұрын
Awesome! Thanks a lot!
@youcefdeveloper3 ай бұрын
Great content! I really appreciate the effort you put into it.
@bugbytes39233 ай бұрын
Thanks a lot!
@BonerPauler Жыл бұрын
yes please make a video with go and htmx full fledged web app if possible a copy of existing well known website ...would be helpful
@MonoMario89 Жыл бұрын
really great video! dependency free content, lovely
@bugbytes3923 Жыл бұрын
Thanks a lot!
@mycroftholmesiv Жыл бұрын
This is exactly what I was looking for
@bugbytes3923 Жыл бұрын
Thanks a lot!
@oussamasethoum1665 Жыл бұрын
More of this content please talk about the hx-boost and how to navigate between pages.
@bugbytes3923 Жыл бұрын
Good idea, will add to the list! Thanks.
@bobman19837 ай бұрын
Very helpful video, thanks for creating it!
@bugbytes39237 ай бұрын
Thanks a lot!
@bisadk2284 Жыл бұрын
Really grateful for all your valuable tutorials. I will be really helpful If you shows us how to create dynamic multistep form using Django since no other youtube have any tutorial related to this topic
@bugbytes3923 Жыл бұрын
Thanks a lot! I'll have a think about that one. Do you have any examples in mind? I can maybe try and make something.
@jjj886dfhttgrdvjj7 Жыл бұрын
A truly brilliant video. Tyvm!
@bugbytes3923 Жыл бұрын
Thanks a lot!
@oluwaseunomotosho6812 Жыл бұрын
a big well done and Yes yes more Go+HTMX
@bugbytes3923 Жыл бұрын
Thanks a lot - it's coming!
@JanHKila11 ай бұрын
Just great! Thank you.
@bugbytes392311 ай бұрын
Thanks for watching!
@yizongzhou5893 Жыл бұрын
More Golang + HTMX please!
@thomasguttler5179 Жыл бұрын
Thank you! I would like to see a video about the Golang package "Bob" for databases.
@bugbytes3923 Жыл бұрын
Thanks for the suggestion, will have a look into it!
@nixoncode Жыл бұрын
htmx+go just rocks!
@bugbytes3923 Жыл бұрын
I'm excited to make more videos on it - it's a cool combo!