Skip to content

Instantly share code, notes, and snippets.

View CoBug92's full-sized avatar
👋
rm -rf your/heart

Bogdan Kostyuchenko CoBug92

👋
rm -rf your/heart
View GitHub Profile
Политика в отношении обработки персональных данных
1. Общие положения
Настоящая политика обработки персональных данных составлена в соответствии с требованиями Федерального закона от 27.07.2006. №152-ФЗ «О персональных данных» и определяет порядок обработки персональных данных и меры по обеспечению безопасности персональных данных (далее – Оператор).
Оператор ставит своей важнейшей целью и условием осуществления своей деятельности соблюдение прав и свобод человека и гражданина при обработке его персональных данных, в том числе защиты прав на неприкосновенность частной жизни, личную и семейную тайну.
Настоящая политика Оператора в отношении обработки персональных данных (далее – Политика) применяется ко всей информации, которую Оператор может получить о посетителях веб-сайта .
2. Основные понятия, используемые в Политике
Автоматизированная обработка персональных данных – обработка персональных данных с помощью средств вычислительной техники;
@CoBug92
CoBug92 / .gitignore
Created September 8, 2019 18:56
.gitignore
# Xcode
#
# gitignore contributors: remember to update Global/Xcode.gitignore, Objective-C.gitignore & Swift.gitignore
# OS
.DS_Store
## Build generated
build/
DerivedData/
@CoBug92
CoBug92 / .gitignore
Created September 8, 2019 18:56
.gitignore
# Xcode
#
# gitignore contributors: remember to update Global/Xcode.gitignore, Objective-C.gitignore & Swift.gitignore
# OS
.DS_Store
## Build generated
build/
DerivedData/
######################################################################
# Rule whitelist
######################################################################
# Let's use a whitelist policy: only rules from following list
# are enabled at the moment. So each rule should be enabled implicitly
# by adding to this list.
whitelist_rules:
1. If you don’t know the exact build time of your project, enable the following option in Xcode.
At least you’ll see how long you have to procrastinate until the build will be ready :)
So, just past following line to terminal.
defaults write com.apple.dt.Xcode ShowBuildOperationDuration -bool YES
@CoBug92
CoBug92 / swiftlintdiff.sh
Created January 9, 2018 14:02 — forked from tooszovski/swiftlintdiff.sh
swiftlint script for git diff files with spaces
#!/bin/bash
function addFilesToLint {
filename=""
count=$2
for item in $1
do
if [[ $item == *".swift"* ]]; then
filename+="$item"
export SCRIPT_INPUT_FILE_$count="$filename"