I love to read some quality articles. Don't hesitate to share your own work.
For further actions, you may consider blocking this person and/or reporting abuse
I love to read some quality articles. Don't hesitate to share your own work.
For further actions, you may consider blocking this person and/or reporting abuse
Kavon Blossom -
Evan Charalampidis -
Sergey Leschev -
Learn Repo -
Once suspended, marcin_codes will not be able to comment or publish posts until their suspension is removed.
Once unsuspended, marcin_codes will be able to comment and publish posts again.
Once unpublished, all posts by marcin_codes will become hidden and only accessible to themselves.
If marcin_codes is not suspended, they can still re-publish their posts from their dashboard.
Once unpublished, this post will become invisible to the public and only accessible to Marcin.
They can still re-publish the post if they are not suspended.
Thanks for keeping DEV Community safe. Here is what you can do to flag marcin_codes:
Unflagging marcin_codes will restore default visibility to their posts.
Top comments (12)
Awesome post idea, Marcin!
I just stumbled upon @hazarnenni's post on Goroutines today and it's a good one!
Mastering Concurrency: Unveiling the Power of Goroutines in Go.
Hazar nenni ・ Aug 22
Also wanna give a shout to @blackgirlbytes's most recent entry in the My DevRel Journey series! So much great wisdom and personal stories shared in this series.
How to make an impact as a developer advocate
Rizèl Scarlett ・ Aug 20
Thank you 😊
Thanks for sharing, Michael. I read both and they are great. I like especially the one about concurrency in Go
This one by @inovak
dev.to/inovak/before-you-code-stra...
w00t
Thanks for the mention Mateus!
Your article is brilliant, definitely I use this knowledge! Great job, Ivan
Thanks a ton Marcin!
Thanks Mateus, for sharing is really worth to read it! So much knowledge in such a simple form.
I recently stumbled across this one:
grugbrain.dev/
I think it is amazing.
If you don't think so, I might get club 🏏
You may also find this interesting: twitter.com/DrizzleOrm
From my understanding drizzle is for typescript, right?
Currently getting into web development.
Using Go with server side rendered HTML + bootstrap, raw SQL with PostgreSQL and want to look into htmx for dynamic stuff.
Absolute front end beginner.
As ORM I tried GORM but it was hard so I figured I can also learn raw SQL.
Yes, their examples are showing typescript, but you still can use it in js. Typescript is adding static type checking - which is convenient but is also opt-in - every library written in typescript can be used in JS.
I know htmx just from the marketing and memes they are posting and didn't try it. It can be useful. After htmx, if you want to check more have a look at vuejs.org/
About ORM, drizzle seems to mimic SQL well with all the joins and management so for sure you will learn some webdev but also SQL under the hood. My tip, log queries you produce using ORM and see how they look like this will help you understand how drizzle is working and how raw SQL look like for common cases.