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/sh | |
CASKNAME="$1" | |
CASKROOM=$(brew --caskroom) | |
CASKDIR="$CASKROOM/$CASKNAME" | |
DATE=$(date +"%Y%m%d%H%M%S.000") | |
BACKUPDIR="$CASKDIR/.backup" | |
BLACK='\033[30m' | |
RED='\033[31m' |
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
FROM alpine:3.9 | |
LABEL maintainer="NGINX Docker Maintainers <[email protected]>" | |
ENV NGINX_VERSION 1.15.12 | |
# add `nginx_unsecure_cookie_module` module source | |
COPY nginx_unsecure_cookie_module /usr/src/nginx_unsecure_cookie_module | |
RUN GPG_KEYS=B0F4253373F8F6F510D42178520A9993A1C052F8 \ |
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
// ==UserScript== | |
// @name neagent.by hide ads | |
// @description Hide uninteresting ads from view | |
// @author [email protected] | |
// @include http://neagent.by/* | |
// ==/UserScript== | |
/* jshint browser: true, jquery: true, -W099, smarttabs: true, undef: true, unused: true, bitwise: true, curly: true, quotmark: single, trailing: true */ | |
(function() { | |
'use strict'; |