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
# Basic key operators to query the JSON objects : | |
# #> : Get the JSON object at that path (if you need to do something fancy) | |
# -> : Get the JSON object at that path (if you don't) | |
# ->> : Get the JSON object at that path as text | |
# {obj, n} : Get the nth item in that object | |
# https://www.postgresql.org/docs/9.4/functions-json.html#FUNCTIONS-JSONB-OP-TABLE | |
# Date | |
# date before today |
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
module Devise | |
module Models | |
module RemoteAuthenticatable | |
extend ActiveSupport::Concern | |
# | |
# Here you do the request to the external webservice | |
# | |
# If the authentication is successful you should return | |
# a resource instance |
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
SELECT pg_advisory_unlock_all(); | |
или | |
SELECT pid, locktype, mode FROM pg_locks WHERE locktype = 'advisory'; | |
SELECT pg_terminate_backend(<PID>); |
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
SELECT usename, state, query FROM pg_stat_activity WHERE wait_event IS NOT NULL AND backend_type = 'client backend' AND state = 'idle in transaction'; |
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
Из минусов STI | |
1. Плохо масштабируется : по мере роста данных таблица может становиться большой и, возможно, трудной для обслуживания / запроса | |
2. Требуется осторожность при добавлении новых моделей или полей моделей, которые отличаются от общих полей | |
3. Позволяет создавать недопустимые объекты, если проверки отсутствуют | |
4. Может быть сложно проверить или запросить, если в таблице существует много нулевых значений | |
Из плюсов | |
1.Прост в реализации. | |
2. DRY - сохраняет реплицированный код, используя наследование и общие атрибуты |
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
Из минусов STI | |
1. Плохо масштабируется : по мере роста данных таблица может становиться большой и, возможно, трудной для обслуживания / запроса | |
2. Требуется осторожность при добавлении новых моделей или полей моделей, которые отличаются от общих полей | |
3. Позволяет создавать недопустимые объекты, если проверки отсутствуют | |
4. Может быть сложно проверить или запросить, если в таблице существует много нулевых значений | |
Из плюсов | |
1.Прост в реализации. | |
2. DRY - сохраняет реплицированный код, используя наследование и общие атрибуты |
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
1. установить docker-compose | |
2. скачать файл docker-compose.yml https://drive.google.com/file/d/1he_FdwW-QHZFgHGXf2HNkwV-fsLa7T7z/view?usp=sharing | |
3. запустить docker-compose up -d в директории, куда скачался файл | |
4. После распаковки image и запуска контейнера зайти в контейнер с помощью docker exec -it nabaze_postgres /bin/bash | |
5. Обновить пакеты с помощью apt update | |
6. Установить ssh с помощью apt install openssh-server | |
7. Перейти в сессию юзера postgres с помощью su postgres | |
8. создать БД при помощи createdb nabaze_development, после чего выйти из сессии с помощью команды exit | |
9. Запустить скрипт ssh [email protected] "dokku postgres:export nabaze-db" | pg_restore --verbose --clean --no-acl --no-owner -h localhost -U postgres -d nabaze_development | |
10. Ввести пароль, который я скину в личке |
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
RED: code that simply does not work / compile | |
// ERROR - This code is throwing a specific reproducible error. | |
// BROKEN - This code is broken and will not run. | |
// WTF - WHAT THE FRIG. | |
ORANGE: code that works but is not right | |
// HACK - This code has intentionally been hacked in order to work. Should not go into production. | |
// FIXME - This code works but could be better. Needs better abstraction, maintainability, performance, etc. | |
// BUG - This code works and was expected to be right but a bug has been found. (usually flagged post production) | |
// REVIEW - This code is probably right but should be reviewed for piece of mind. |
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
# This is a skeleton for testing models including examples of validations, callbacks, | |
# scopes, instance & class methods, associations, and more. | |
# Pick and choose what you want, as all models don't NEED to be tested at this depth. | |
# | |
# This skeleton also assumes you're using the following gems: | |
# | |
# rspec-rails: https://github.com/rspec/rspec-rails | |
# Shoulda-matchers: https://github.com/thoughtbot/shoulda-matchers | |
# shoulda-callback-matchers: https://github.com/beatrichartz/shoulda-callback-matchers | |
# factory_bot_rails: https://github.com/thoughtbot/factory_bot_rails |
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
проверить с помощью curl | |
curl -v 'https://dev-ehr.h24.ua/cable' -ps://dev-ehr.h24.ua' -H 'Sec-WebSocket-Key: MIN4DsiwEAutsE11kgG5rg==' -H 'Upgrade: websocket' -H 'Connection: Upgrade' -H 'Sec-WebSocket-Version: 13' | |
location /cable { | |
proxy_pass http://puma; | |
proxy_http_version 1.1; | |
proxy_set_header Upgrade $http_upgrade; | |
proxy_set_header Connection "upgrade"; | |
proxy_set_header Host $host; | |
proxy_set_header X-Forwarded-Proto $scheme; # <- most probably this one is missing |
NewerOlder