A non-exhaustive list of the many things, told and untold, that we tend to take for granted that make the work of a front-end developer as complex as it is interesting.
Links
browser strangeness aka the CSS hacks goldmine
This invaluable page lists every kind of CSS hack for any browser combo you might imagine, and also shows you which apply in the very browser you’re visiting from, by Jeff Clayton, is a mandatory bookmark and go-to resource when a CSS hack is needed, period.
Git – How to unfuck by Melanie G. A. PATRICK
A nice handbook for “unfucking” git commits with command line when things get ugly by Melanie G. A. PATRICK from Trivago
One I’d like to add myself, found out firsthand today, is about fetching.
Let’s say you created some new tags on BitBucket/Stash/YourGitRepositoryOfChoice and now you want to checkout locally one of these new tags. You might assume that firing a “git fetch” will update everything, you proceed to checkout the tag but your command fails.
Turns out that if you want the tags to be updated, you’ll have to ask for them explicitly :
git fetch --tags
Before version 2 of git, the fetch command alone would update branches heads and with --tags option would update only tags, after version 2 when the option is included it will update tags and branches heads, aligning local workspace with remote repository.
Expedia and responsive design
A very interesting podcast of Scott Kelton Jones, VP of Global User Experience Design, and Jason Chandler, Manager of Client Side Engineering, walking us through the process of adopting a Responsive Design strategy for Expedia’s worldwide digital ecosystem :