Vyhledávací nástroj Google naleznate na internetové stránce
www.google.com. Nabídne vám různé možnosti vyhledávání. Prohledává web,
obrázky, skupiny a adresář. Tyto možnosti poskytují spoustu výhod pro
snadné surfování na internetu, ale dovolují i daleko více nečistých
možností zcela zlomyslným internetovým uživatelům jako hackerům,
počítačovým zločincům, zlodějům identit a dokonce i teroristům.
Tento dokument poukazuje na černé stránky vyhledávače Google s tím, že
bychom pro něj společně mohli používat termín "Google hacking". Cílem
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
# Docker, Docker Compose | |
alias docker-clear='docker rm -f $(docker ps -q -a); docker rmi -f $(docker images -q); docker system prune --all --force --volumes' | |
alias docker-down='docker-compose down' | |
alias docker-images='docker images --all' | |
alias docker-logs='docker-compose logs --tail=1000 -f -t' | |
alias docker-ps='docker ps -a' | |
alias docker-up='DATE_FROM=`date`; echo "BUILD START: $DATE_FROM" ; docker-compose up -d --build; DATE_TO=`date`; echo -e "BUILD START: $DATE_FROM\nBUILD END: $DATE_TO\n"' | |
alias docker-up-nohup='DATE_FROM=`date`; echo "BUILD START: $DATE_FROM" ; nohup docker-compose up -d --build $ && DATE_TO=`date`; echo -e "BUILD START: $DATE_FROM\nBUILD END: $DATE_TO\n"' | |
# Kubernetes |
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
# [...] | |
# Docker functions | |
function docker-exec() { | |
Container=$1 | |
echo "Running command: docker exec -ti $Container /bin/bash" | |
docker exec -ti $Container /bin/bash | |
} | |
function docker-exec-sh() { |
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== | |
// @id youtube-auto-adds-skip@pida42 | |
// @name YouTube Script auto Adds skip | |
// @description Automatically trigger click event on "Skip add" button. | |
// @namespace https://gist.github.com/pida42/43a304ba7b944a5c0abf8169cfe4096f | |
// @version 1.0.1 | |
// @author pida42 | |
// @include https://www.youtube.com/* | |
// @match https://www.youtube.com/* | |
// @require https://code.jquery.com/jquery-2.1.4.min.js |
OlderNewer