Skip to content

16

You can type ”.” when you’re in a Github repo and Github will open the repo in VSCode web for you

15

There exist a binary search algorithm to easily manage text-wrapping. Useful for page header.

14

The grid-auto-flow property takes up to two values. row, column, dense, row dense, or column dense.

.grid {
grid-auto-flow: row dense;
}

13

You can pass an options object, which only has a single property, to the focus() method to prevent scrolling on focus.

document.querySelector("#anchor").focus({
preventScroll: true,
});

12

Apparently fireEvent in Svelte Testing Library is async because it’s calling tick() under the hood

11

You can delete forward using “fn + delete” in macOS

10

We can use the :empty selector in CSS to hide empty DOM element without JS.

.classname:empty {
display: none;
}

9

The theme-color value for the name attribute of the element indicates a suggested color that user agents should use to customize the display of the page or of the surrounding user interface.

<meta name="theme-color" media="(prefers-color-scheme: dark)" content="black" />

8

Functional Options Pattern in Go.

Functional is a design pattern that lets you build a complex struct using a variadic constructor that accepts zero or more functions as arguments.

7

You can check all the available versions of a Go module with this command.

Terminal window
go list -m -versions <module_name>