Board Quick Filters
-
Recently Updated
updatedDate >= -1d OR ( updatedDate <= endOfWeek(-1w) AND updatedDate >= -3d)
- Filter issues updated since last weekday
-
Flagged
Flagged is not EMPTY
- Flter flagged issues
// This script will remove all videos from watch later list | |
// | |
// Usage | |
// | |
// #1 go to https://www.youtube.com/playlist?list=WL | |
// #2 run following script | |
(async function() { | |
const sleep = (timeout) => new Promise(res => setTimeout(res, timeout)) | |
const untilDefined = async (factory, timeout = 100) => { |
javascript: (function() { | |
let style = document.createElement('style'); | |
style.type = 'text/css'; | |
style.appendChild(document.createTextNode(` | |
.ghx-column > .ghx-parent-group.ghx-away > .ghx-parent-stub > .ghx-group { | |
padding-left: 6px; | |
height: 16px; | |
} | |
.ghx-column > .ghx-parent-group.ghx-away > .ghx-parent-stub > .ghx-group > .ghx-key { | |
margin: 0; |
Recently Updated
updatedDate >= -1d OR ( updatedDate <= endOfWeek(-1w) AND updatedDate >= -3d)
Flagged
Flagged is not EMPTY
#!/usr/bin/env node | |
// requirenments | |
// npm install --save \node-html-parser uuid | |
const fs = require('fs') | |
const parseHtml = require('node-html-parser').parse | |
const uuid = require('uuid').v4 |
#!/bin/bash | |
SELF_DIR="$(dirname "$0")" | |
cd "$SELF_DIR" | |
# git global config see $HOME/.gitconfig | |
git config --global color.ui 'auto' | |
git config --global merge.ff false | |
# ensures to convert CRLF to LF when writing to database | |
git config --global core.autocrlf 'input' | |
git config --global pull.rebase 'merges' |
#!/usr/bin/env bash | |
set -o errexit # exit when a command line fails | |
set -o pipefail # pipes exit code will be the last non-zero exit code of all pipe commands | |
set -o nounset # exit on read a undeclared variable | |
#set -o xtrace # enable debug logging | |
cd "$(dirname "${BASH_SOURCE[0]}")" | |
### SOURCE: https://gist.github.com/qoomon/7e6f751415389a8bd67f05dd0b984d06 | |
### REQUIREMENTS ####################################################################################################### |
#!/usr/bin/env bash | |
set -o errexit # exit when a command line fails | |
set -o pipefail # pipes exit code will be the last non-zero exit code of all pipe commands | |
set -o nounset # exit on read a undeclared variable | |
#set -o xtrace # enable debug logging | |
cd "$(dirname "${BASH_SOURCE[0]}")" | |
# Target Address e.g '123.123.123.123:1024' | |
TARGET_ADDRESS="$1" |
package me.qoomon.examples | |
import kotlinx.serialization.KSerializer | |
import kotlinx.serialization.json.Json | |
import kotlinx.serialization.json.JsonConfiguration | |
import me.qoomon.examples.JsonbColumnType.Companion.JSONB | |
import me.qoomon.examples.JsonbColumnType.Companion.TEXT | |
import org.jetbrains.exposed.sql.* | |
import org.jetbrains.exposed.sql.Function | |
import org.jetbrains.exposed.sql.statements.api.PreparedStatementApi |
#!/usr/bin/env sh | |
set -e | |
color_red=$'\e[1;31m' | |
color_green=$'\e[1;32m' | |
color_reset=$'\e[0m' | |
########################### Usage ############################################## | |
# | |
# password prompt 'hibp' | |
# or |
import org.apache.logging.log4j.LogManager | |
import org.apache.logging.log4j.core.Filter.Result | |
import org.apache.logging.log4j.core.LogEvent | |
import org.apache.logging.log4j.core.Logger | |
import org.apache.logging.log4j.core.filter.AbstractFilter | |
import org.junit.jupiter.api.extension.AfterAllCallback | |
import org.junit.jupiter.api.extension.BeforeAllCallback | |
import org.junit.jupiter.api.extension.BeforeEachCallback | |
import org.junit.jupiter.api.extension.ExtensionContext |