Why would I use a Webpack?
Gonzalo García takes a crack at why webpack (not capitalized like npm) exists at all. No particular disagreements here, but here’s my crack at it…
- We use webpack because we need to
import stuff from place;
. This is a good pattern. We can use webpack to interpret those statements, as native support for them isn’t what it needs to be yet, and it’s not clear whether the native version will be smart for performance or not (probably not,
…
The post Why would I use a Webpack? appeared first on CSS-Tricks.
The spectrum of design roles in 2018
Job titles is a regular topic around here. Occasionally heated, as job titles play a role in the hiring process (why are you asking me React questions for this UX design position role?). And complicated by the fact that there is no agreed-upon standards and the loads of people and companies who don’t take them seriously (we just want people who do a good job, make your title whatever you want it to be). Complicated again …
The post The spectrum of design roles in 2018 appeared first on CSS-Tricks.
Figma Web API
Figma launched their Web Platform API which allows developers to build on top of and extend the features of their web-based design tool. They also published a quick post about the release that showcases how design teams at Uber and GitHub are starting to use the API but they also also dig into a few public extensions that are available to use today.
Direct Link to Article — Permalink…
The post Figma Web API appeared first on CSS-Tricks.
Approaches to Deprecating Code in JavaScript
Recently, I had to dig into the topic of code deprecation in JavaScript. I feel like this topic gets less coverage even though it may a play key role in certain projects, especially when working in bigger teams or dealing with external APIs.
In JavaScript-land, I don’t know of any true industry standards for deprecating JavaScript. It could be different per any team, library or vendor.
That’s why my goal here is to sum up my findings and thoughts on …
The post Approaches to Deprecating Code in JavaScript appeared first on CSS-Tricks.
Noteworthy Changes Coming in WordPress 4.9.5
Top 10 Tips To Fix Most Common WordPress Security Issues
The post Top 10 Tips To Fix Most Common WordPress Security Issues appeared first on Torque.
7 Reasons Your Small Business Needs a Blog
The post 7 Reasons Your Small Business Needs a Blog appeared first on Torque.
WPWeekly Episode 309 – All AMPed Up
Good ol’ Margin Collapsing
Here’s a one-sentence blog post about margin collapsing: When two block elements are stacked on top of one another, the vertical space between them is the larger between the one on top’s margin-bottom
and the one on the bottom’s margin-top
.
It’s a bit weird and ascii-shruggy. Couple caveats with them, as you might expect.
I find it fascinating how it makes for the perfect sort of mini blog post when people have an ah-ha moment about it. MDN even …
The post Good ol’ Margin Collapsing appeared first on CSS-Tricks.