This file contains 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
# without global modules | |
alias dn='docker run --rm -it -v $PWD:/app -w /app node' | |
# with global modules | |
docker run --rm -it -v $PWD:/app -v $HOME/.npm-global:/.npm-global -w /app -e NPM_CONFIG_PREFIX=/.npm-global -e PATH="/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/.npm-global/bin" node |
This file contains 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
-- drop table if currently exists | |
DROP TABLE IF EXISTS `completion`; | |
-- create table | |
CREATE TABLE `completion` ( | |
`id` INT(11) NOT NULL AUTO_INCREMENT, | |
`name` VARCHAR(24) NOT NULL, | |
`email` VARCHAR(120) NOT NULL, | |
`matchedWith` INT(11) NOT NULL, | |
`didKill` TINYINT(1) NOT NULL, |
This file contains 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
/** | |
* | |
* @name Stremio JavaScript Patcher | |
* @author n0bodysec | |
* @description A simple JS that is executed on document load. You can apply custom client patches with it. | |
* @example https://gist.github.com/n0bodysec/2896438d8578f13c4a9e30373f7200c1 | |
* This script can be loaded using nginx sub_filter | |
* sub_filter '</body>' '<script src="https://your.stremio.url/patches.js"></script></body>'; | |
* sub_filter_once on; | |
* |
This file contains 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
# Inspired on https://community.adobe.com/t5/download-install-discussions/getting-a-long-list-of-quot-adobe-app-info-quot-generic-credentials/td-p/10189222 | |
# Usage: add this script to your PowerShell profile and run "ClearAdobeCredentials". "Adobe User" credentials will not be removed. | |
<# Commands explanation: | |
cmdkey /list > This will list all your saved credentials | |
Select-String -Pattern "Adobe App" > Show only credentials that match "Adobe App" | |
-replace "^ *[A-Za-z]+:? (.*)", "`"`$1`"") > Regex that removes " Target:" and add quotes around the credential | |
% { cmdkey /delete:$_ } > This will run "cmdkey /delete" for each matching credential | |
#> |