DEV Community

Marcin
Marcin

Posted on

What was last article you find worth sharing?

I love to read some quality articles. Don't hesitate to share your own work.

Top comments (14)

Collapse
 
michaeltharrington profile image
Michael Tharrington

Awesome post idea, Marcin!

I just stumbled upon @hazarnenni's post on Goroutines today and it's a good one!

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.

Collapse
 
hazarnenni profile image
Hazar nenni

Thank you 😊

Collapse
 
marcin_codes profile image
Marcin

Thanks for sharing, Michael. I read both and they are great. I like especially the one about concurrency in Go

Collapse
 
mateusabelli profile image
Mateus Abelli
Collapse
 
inovak profile image
Ivan Novak

w00t

Thanks for the mention Mateus!

Collapse
 
marcin_codes profile image
Marcin

Your article is brilliant, definitely I use this knowledge! Great job, Ivan

Thread Thread
 
inovak profile image
Ivan Novak

Thanks a ton Marcin!

Collapse
 
marcin_codes profile image
Marcin

Thanks Mateus, for sharing is really worth to read it! So much knowledge in such a simple form.

Collapse
 
ashishk1331 profile image
Ashish Khare😎

I've stopped reading articles. However, other day I spotted this piece of information. It shows how Radix UI implements asChild prop feature.

jacobparis.com/content/react-as-child

Collapse
 
marcin_codes profile image
Marcin

Great article, thanks for sharing. What a convenient way to make such hard thing as polymorphism!

Collapse
 
ajfriesen profile image
Andrej Friesen

I recently stumbled across this one:

grugbrain.dev/

I think it is amazing.
If you don't think so, I might get club 🏏

Collapse
 
marcin_codes profile image
Marcin

You may also find this interesting: twitter.com/DrizzleOrm

Collapse
 
ajfriesen profile image
Andrej Friesen

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.

Thread Thread
 
marcin_codes profile image
Marcin

From my understanding drizzle is for typescript, right?

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.