-
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 file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/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 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| # git global config see $HOME/.gitconfig | |
| # ensures to convert CRLF to LF when writing to database | |
| git config --global core.autocrlf 'input' | |
| git config --global core.editor '$EDITOR' | |
| git config --global core.pager 'less -R -M' | |
| git config --global color.ui 'auto' |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/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 ####################################################################################################### |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/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]}")" | |
| # systemctl enable iptables.service | |
| # Target Address e.g '123.123.123.123:1024' |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/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 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/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 | |
| #### Source: https://gist.github.com/qoomon/d6633abe35eea297f475260478f86c8c | |
| ### Usage ### | |
| # |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // open chrome://settings/searchEngines and run following script in browser console | |
| // will remove every 'other' search engine wich contains a '.' in its keyword | |
| settings.SearchEnginesBrowserProxyImpl.prototype.getSearchEnginesList() | |
| .then(engines => engines.others.forEach(engine => { | |
| if(engine.keyword.includes(".")){ | |
| console.log("remove: " + engine.displayName + " - " + engine.keyword) | |
| settings.SearchEnginesBrowserProxyImpl.prototype.removeSearchEngine(engine.modelIndex); | |
| } | |
| })); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| function escapeHTML(text) { | |
| let element = document.createElement('_'); | |
| element.innerText = text; | |
| return element.innerHTML; | |
| } |