Это party game! Участники рисуют пальцем на мобильном телефоне - учитывай техническую сложность.
Оцени каждую работу по 4 МЕТРИКАМ (0-100 для каждой):
1. 🎯 ВЫПОЛНЕНИЕ ЗАДАНИЯ (execution):
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
| wprehost(){ | |
| #!/bin/bash | |
| set -e | |
| # Ищем wp-config.php | |
| if [ -f wp-config.php ]; then | |
| echo "Нашел wp-config.php в текущей директории!" | |
| CONF=wp-config.php | |
| else | |
| if [ -f ../wp-config.php ]; then |
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
| 123 |
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
| # Your init script | |
| # | |
| # Atom will evaluate this file each time a new window is opened. It is run | |
| # after packages are loaded/activated and after the previous editor state | |
| # has been restored. | |
| # | |
| # An example hack to log to the console when each text editor is saved. | |
| # | |
| # atom.workspace.observeTextEditors (editor) -> | |
| # editor.onDidSave -> |
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
| SELECT TABLE_NAME, table_rows, data_length, index_length, round(((data_length + index_length) / 1024 / 1024),2) "Size in MB" FROM information_schema.TABLES WHERE table_schema = "bsgswoo" ORDER BY (data_length + index_length) DESC; |
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
| curl https://gist.githubusercontent.com/michaelradionov/84879dc686e7f9e43bc38ecbbd879af4/raw/17f942d078b5b2202dd12eab9a5c4d55b4a06259/Docker_Ubuntu_16.sh | sudo bash | |
| curl -L https://iterm2.com/shell_integration/install_shell_integration.sh | bash | |
| eval "$(curl "https://raw.githubusercontent.com/michaelradionov/gg_installer/master/gg_installer.sh")" && gg_installer bdsm | |
| bdsm --install-all |
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
| # Repo | |
| apt-get update; | |
| apt-get install -y \ | |
| apt-transport-https \ | |
| ca-certificates \ | |
| curl \ | |
| gnupg-agent \ | |
| software-properties-common; | |
| curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo apt-key add -; | |
| apt-key fingerprint 0EBFCD88; |
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
| mkdir -p public/svg; \ | |
| cd public/svg; \ | |
| curl -O https://raw.githubusercontent.com/laravel-shift/laravel-5.7/master/public/svg/403.svg; \ | |
| curl -O https://raw.githubusercontent.com/laravel-shift/laravel-5.7/master/public/svg/404.svg; \ | |
| curl -O https://raw.githubusercontent.com/laravel-shift/laravel-5.7/master/public/svg/500.svg; \ | |
| curl -O https://raw.githubusercontent.com/laravel-shift/laravel-5.7/master/public/svg/503.svg; \ | |
| cd ../..; |
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/make | |
| # Makefile readme (ru): <http://linux.yaroslavl.ru/docs/prog/gnu_make_3-79_russian_manual.html> | |
| # Makefile readme (en): <https://www.gnu.org/software/make/manual/html_node/index.html#SEC_Contents> | |
| SHELL = /bin/sh | |
| REGISTRY_HOST = registry.gitlab.com | |
| REGISTRY_PATH = tarampampam/laravel-in-docker/ | |
| IMAGES_PREFIX := $(shell basename $(shell dirname $(realpath $(lastword $(MAKEFILE_LIST))))) |
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
| export EDITOR='micro' | |
| export CHEAT_EDITOR='micro' | |
| export PATH="$HOME/.composer/vendor/bin:$PATH" | |
| export PATH="vendor/bin:$PATH" | |
| export PATH="/usr/local/bin:$PATH" | |
| export CLICOLOR=1 | |
| export LSCOLORS=gxBxhxDxfxhxhxhxhxcxcx | |
| export HISTTIMEFORMAT="%d/%m/%y %T " |
NewerOlder