Enter this in the search box along with your search terms:
Get all gists from the user santisbon.
user:santisbon
Find all gists with a .yml extension.
extension:yml
Find all gists with HTML files.
language:html
# Edited based on comments of szaimen below. | |
# Working setup for photo storage in Nextcloud with Memories, Recognize, Preview Generator, Redis | |
# Use NextCloud-AIO https://github.com/nextcloud/all-in-one | |
# Following libraries are required and included by default since the latest beta image. | |
# exiftool is needed for Memories | |
# ffmpeg is needed for video thumbnails | |
# gcompat is needed for NodeJS in Recognize | |
# Note that currently Nextcloud 25.0.2 is still on the beta channel, so you'd have to use | |
# nextcloud/all-in-one:beta or nextcloud/all-in-one:beta-arm64 (for ARM) as image |
Enter this in the search box along with your search terms:
Get all gists from the user santisbon.
user:santisbon
Find all gists with a .yml extension.
extension:yml
Find all gists with HTML files.
language:html
// array utils | |
// ================================================================================================= | |
const combine = (...arrays) => [].concat(...arrays); | |
const compact = arr => arr.filter(Boolean); | |
const contains = (() => Array.prototype.includes | |
? (arr, value) => arr.includes(value) | |
: (arr, value) => arr.some(el => el === value) |