To block the insufferable infinite scroll "social" feed that LinkedIn renders when one logs in, add this rule to uBlock origin's "My Filters" list.
www.linkedin.com##main[aria-label="Main Feed"] .scaffold-finite-scroll
package main | |
import ( | |
"encoding/json" | |
"strings" | |
"testing" | |
) | |
var nested map[string]interface{} |
#!/usr/bin/env bash | |
DATABASE_URL="postgres://MyPostgresUser:[email protected]:5432/MyPostgresDB" | |
# `cut` is used to cut out the separators (:, @, /) that come matched with the groups. | |
DATABASE_USER=$(echo $DATABASE_URL | grep -oP "postgres://\K(.+?):" | cut -d: -f1) | |
DATABASE_PASSWORD=$(echo $DATABASE_URL | grep -oP "postgres://.*:\K(.+?)@" | cut -d@ -f1) | |
DATABASE_HOST=$(echo $DATABASE_URL | grep -oP "postgres://.*@\K(.+?):" | cut -d: -f1) | |
DATABASE_PORT=$(echo $DATABASE_URL | grep -oP "postgres://.*@.*:\K(\d+)/" | cut -d/ -f1) |
package main | |
import ( | |
"fmt" | |
) | |
var ( | |
ones = []string{ | |
"zero", "one", "two", "three", "four", | |
"five", "six", "seven", "eight", "nine", |
package main | |
import ( | |
"fmt" | |
"time" | |
) | |
func main() { | |
fmt.Println(unixToTime(time.Now().UnixMilli())) | |
} |
To block the insufferable infinite scroll "social" feed that LinkedIn renders when one logs in, add this rule to uBlock origin's "My Filters" list.
www.linkedin.com##main[aria-label="Main Feed"] .scaffold-finite-scroll