При попытке открыть личный кабинет МТС в Yandex Авто получаю сообщение о необходимости обновить систему.
Нашел ссылку на старый личный кабинет.
При попытке открыть личный кабинет МТС в Yandex Авто получаю сообщение о необходимости обновить систему.
Нашел ссылку на старый личный кабинет.
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| <meta charset="UTF-8"> | |
| <title>CSS brushed metal by Simurai · CodePen</title> | |
| <!-- | |
| Copyright (c) 2012 Hugo Giraudel, http://codepen.io/HugoGiraudel | |
| Permission is hereby granted, free of charge, to any person obtaining |
Example ld:warning
ld: warning: text-based stub file /System/Library/Frameworks//CoreFoundation.framework/CoreFoundation.tbd
and library file /System/Library/Frameworks//CoreFoundation.framework/CoreFoundation are out of sync.
Falling back to library file for linking.
Need "stubify" libs with utility tapi from default toolchain.
| # 2.7 | |
| CFLAGS="-I$(brew --prefix openssl)/include -I$(xcrun --show-sdk-path)/usr/include -I/usr/local/opt/zlib/include" \ | |
| LDFLAGS="-L$(brew --prefix openssl)/lib -L/usr/local/opt/sqlite/lib -L/usr/local/opt/zlib/lib" \ | |
| PYTHON_CONFIGURE_OPTS="--enable-unicode=ucs2" \ | |
| pyenv install -v 2.7.12 --force | |
| # 3.x | |
| CFLAGS="-I$(brew --prefix openssl)/include -I$(xcrun --show-sdk-path)/usr/include" \ | |
| LDFLAGS="-L$(brew --prefix openssl)/lib -L/usr/local/opt/sqlite/lib" \ | |
| pyenv install -v 3.3.6 |
| # General use: | |
| message("Checking for a personal library...") | |
| if (!dir.exists(Sys.getenv("R_LIBS_USER"))) { | |
| warning("Personal library not found, creating one...") | |
| dir.create(Sys.getenv("R_LIBS_USER"), recursive = TRUE) | |
| message("Registering newly created personal library...") | |
| .libPaths(Sys.getenv("R_LIBS_USER")) | |
| } else { | |
| message("Personal library found.") | |
| } |
Gist guide for MacVim with Python 2.x and Python 3.x
On El Capitan worked version 7.4.1749 from 18.04.2016
git clone https://github.com/macvim-dev/macvim.git
if used rvm, need use any not system ruby interpretator
Gnu make shell command replace \n with space in the result.
Trick - replace \n in the file with replacer and after loading subst revert \n befor eval.
define newline
endefFast answer:
sed ':a;N;$!ba;s/\n/ /g' file
| #!/bin/sh | |
| # | |
| # add user with UID | |
| # <> user password "fullname" gid | |
| # | |
| if (( $# != 3 )) | |
| then | |
| echo Error. Need 3 arguments. | |
| echo Usage: add_ldap_user.sh user password "fullname" | |
| else |
| #!/bin/sh | |
| # | |
| # make home dir for user | |
| # используется для создания домашнего каталога пользователя для работы с почтой | |
| # устанавливает правильные разрешения на домашний каталог | |
| # | |
| # Изменен: 18.07.2008 | |
| if [ -z "$1" ] ; then | |
| echo "Usage: $0 user_name" |