DEV Community

Ghost
Ghost

Posted on

What articles from the past week have impacted you most?

Do you have any articles from the past week or so that have changed the way you think? That you feel make you a better developer for having read?

What are the top readings from the web that have you excited? Wanting to try a new idea or approach?

Has anything changed the way you work? The way you live? The way you view our profession?


I'll kick it off with my top three (ok, four, but the last two should be read together and compared for historical value):

  • The Architecture No One Needs — Do you ever get the feeling we're re-implementing every web technology in our SPAs? I do. That someone else has felt the pain and can eloquently describe it somehow serves as a salve.

  • Combining the Powers of SEM and BIO for Improving CSS — I've been researching CSS a lot since I'm terrible at it. This single article synthesized a lot of things nicely about the approaches from the past decade: OOCSS, SMACSS, BEM, &c.

And in nothing-new-under-the-sun territory, I've witnessed a lot of new CSS (micro)libraries using classless rulesets with just enough classes to create interesting designs with unique visual identities. So, classes or classless? Which is better?

Oldest comments (10)

Collapse
 
ben profile image
Ben Halpern

I really had fun reading through the replies in this thread:

I don’t tend to seek out these kinds of puzzles on my own, but when they land in my feed it’s a fun treat.

Collapse
 
ghost profile image
Ghost • Edited

Thanks @ben , and congrats on the iPhone app release!

EDIT: Also, how do you embed a post instead of linking?

Collapse
 
rhymes profile image
rhymes

Using the link liquid tag, check the editor guide, you'll find many more embed tags dev.to/p/editor_guide

Thread Thread
 
ghost profile image
Ghost

Amazing! Thank you.

Collapse
 
walkhard13 profile image
Phillip Smith

This one is a well written abstract approach to better explaining the fundamental difference between imperative and functional approaches to programming

dev.to/eddroid/teaching-functional...

Collapse
 
ghost profile image
Ghost

Thanks! I've actually just been wondering if there were newsletters or magazines that were critical of different approaches to backend development. Maybe DEV is what I've been looking for. Do you have any favorite tags you follow?

Collapse
 
walkhard13 profile image
Phillip Smith

When I first got the app I selected a few things, but I don't remember exactly what exactly they were :(

I know I am interested in JavaScript, HTML, CSS, Front End, UX, and React. I probably also picked something about functional programming and some DevOps-y stuff like Containerization and Orchestration.

Thread Thread
 
ghost profile image
Ghost

Thanks! I started following #fp, #oop, #ux, #css, #javascript, #python, #linux, and #docker.

Collapse
 
realweeks profile image
Jason Weeks

Something fun that I just can't get out of my head is: til.hashrocket.com/posts/2f488279a...

But in practical terms front-end (optimization techniques with webpack: developers.google.com/web/fundamen... This article was so useful.

Collapse
 
ghost profile image
Ghost

Obvious in retrospect, but mind was blown nonetheless! Emoji are really fascinating. Have you ever tried storing them in a database?

Also, did you know that the family emoji is a ligature? medium.com/making-faces-and-other-...

What specifically about optimization did you find useful? I'm curious because I never really consider optimization until it's necessary. Did you have a feature or are you generally interested in optimization?