- Корректность структуры данных
- POST запросы
- Заполнены все поля валидными данными
- Заполнены только обязательные поля
- Заполнены не все обязательные поля
- Не заполнено ни одно поле
- Валидация данных в полях (корректные и некорректные данные)
- Пустой JSON
- Дата создания объекта
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
rm -rf ~/Library/Caches/* | |
rm -rf ~/Library/42_cache | |
rm -rf ~/Library/Safari/* | |
rm -rf ~/.Trash/* | |
rm -rf ~/.kube/cache/* | |
rm -rf ~/Library/Containers/com.docker.docker/Data/vms/* | |
rm -fr ~/Library/Containers/com.apple.Safari/Data/Library/Caches/* | |
rm -rf ~/Library/Application\ Support/Slack/Cache | |
rm -rf ~/Library/Application\ Support/Slack/Code\ Cache | |
rm -rf ~/Library/Application\ Support/Slack/Service\ Worker/CacheStorage |
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
" Мой актуальный конфиг тут: https://github.com/alexey-goloburdin/dotfiles |
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
################################################### | |
## | |
## Alertmanager YAML configuration for routing. | |
## | |
## Will route alerts with a code_owner label to the slack-code-owners receiver | |
## configured above, but will continue processing them to send to both a | |
## central Slack channel (slack-monitoring) and PagerDuty receivers | |
## (pd-warning and pd-critical) | |
## |
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
-- Can be executed from Terminal using "osascript safari_cache_clean.scpt" | |
-- inspired by http://www.macuser.de/forum/f30/safari-alle-cache-544226/ | |
set appname to "Safari" | |
if appIsRunning(appname) then | |
set started to true | |
-- Quit App | |
tell application appname to quit | |
else |