Finding ways to improve and optimize your code takes a lot of time, research and energy. Level up your coding skills one step at a time with this collection of quick tips and tricks.
Implement responsive typography with the CSS clamp() function.
CSS, Visual
The currentColor
CSS keyword is a nifty alternative to custom properties for simple use cases.
CSS, Animation
Learn how to use the cubic-bezier()
class of easing functions and create beautiful animations that stand out.
CSS, Visual
Nesting elements with rounded borders can look very wrong if not done correctly. Here's a quick tip on how to do it right.
CSS, Visual
You can use a CSS pseudo-class selector to style all links in a page, without worrying if they have been visited or not.
CSS, Visual
A short summary of your story up to 180 characters long.
CSS, Layout
You might have heard that line-height
should be unitless, but do you know why?
HTML, Webdev
Learn what HTML5 attribute you can use to customize the names of your downloadable files with this quick tip.
JavaScript, Array
ESLint is a very powerful tool that can save you a lot of headaches, but sometimes it gets in the way. Learn how to refactor code to get rid of a common warning.
Git, Commit
Ever needed to create a git commit with a different date? Here's a quick and easy way to do it.
Git, Github
Learn how to add multiple authors to a git commit with this quick and easy tip.
JavaScript, Array
JavaScript provides a handful of ways to iterate over data. While array methods are usually preferred, there are cases where a for
loop is actually the best option.
JavaScript, Array
Did you know you can get the index of an array item in a JavaScript for...of loop? Learn how with this bite-sized tip.
JavaScript, Object
Have you ever wanted to serialize an object but only include certain keys? Turns out JavaScript provides an easy way to do this!
JavaScript, Array
Did you know you can define an iterator for any JavaScript value? This quick tip will show you how.