From dionys на gmail.com Fri Jan 5 04:06:38 2018 From: dionys на gmail.com (Denis Ibaev) Date: Fri, 5 Jan 2018 15:06:38 +0300 Subject: [Moscow.pm] Saint Perl 2017 In-Reply-To: References: Message-ID: Привет. Если нечем занять себя в новогодние каникулы, можете посмотреть видеозаписи выступлений Saint Perl 2017: https://www.youtube.com/playlist?list=PLrmYkCw0w_Z9tMC7PnjYOfbIpenpCNrkB 23 ноября 2017 г., 21:51 пользователь Denis Ibaev написал: > Привет! > > После небольшого перерыва мы возобновляем проведение воркшопа Saint > Perl. И приглашаем вас собраться 16 декабря, по традиции практически в > день рождения Perl, в Санкт-Петербурге. > > Участие в мероприятии бесплатное. О точном месте проведения будет > объявлено позднее. > > Присылайте ваши доклады и блиц-доклады. Электронная почта > организаторов: saintperl.orgs на yapcrussia.org. > > Сайт мероприятия: http://event.yapcrussia.org/saintperl8/. Регистрация > не обязательна, но желательна, чтобы мы представляли количество > участников. -- Денис Ибаев From alexandre на frolov.pp.ru Mon Jan 8 05:11:20 2018 From: alexandre на frolov.pp.ru (=?koi8-r?B?4czFy9PBzsTSIObSz8zP1w==?=) Date: Mon, 8 Jan 2018 16:11:20 +0300 Subject: [Moscow.pm] =?koi8-r?b?7c/E1czYIE5ldDo6RXRoZXJldW0gxMzRINLBws/U?= =?koi8-r?b?2SDTIMvPztTSwcvUwc3JIFNvbGlkaXR5?= Message-ID: <003e01d38882$2d6276b0$88276410$@frolov.pp.ru> Привет всем! Сделал модуль Net::Ethereum для работы со смарт-контрактами Solidity: https://metacpan.org/pod/Net::Ethereum Написал про этот модуль статью на Хабре: https://habrahabr.ru/post/346234/ Буду благодарен за отзывы и замечания! С уважением, Управляющий директор ООО "АйТи-Матрикс" Александр Фролов +7 (495) 545-4921 mailto:frolov на itmatrix.ru http://www.shop2you.ru --------------------------------------------------- Пожалуйста, при ответе сохраняйте историю переписки. From paul.vlasov на gmail.com Tue Jan 9 22:04:32 2018 From: paul.vlasov на gmail.com (Pavel Vlasov) Date: Wed, 10 Jan 2018 09:04:32 +0300 Subject: [Moscow.pm] =?utf-8?b?0JLQsNC60LDQvdGB0LjRjyDRg9C00LDQu9GR0L0=?= =?utf-8?b?0L3QsNGPINGA0LDQsdC+0YLQsA==?= Message-ID: Ищу себе в команду *Perl-разработчика* на удалённую работу в AppFollow.io Основные задачи: - парсинг и хранение данных - реализация алгоритмов работы с App Store, Google Play и Amazon Store - интеграции с популярными сервисами Intercom, Zendesk и Segment - доработка внутренних API - разработка ботов для Slack и Telegram Полное описание вакансии: https://moikrug.ru/vacancies/1000029831 Хотите делать продукт, который помогает тысячам разработчиков мобильных приложений по всем миру? Пишите на: hi на appfollow.io -- Pavel Vlasov – CTO & Co-founder, AppFollow.io ----------- следующая часть ----------- Вложение в формате HTML было извлечено… URL: From khedin на gmail.com Wed Jan 10 05:40:23 2018 From: khedin на gmail.com (Konstantin S. Uvarin) Date: Wed, 10 Jan 2018 15:40:23 +0200 Subject: [Moscow.pm] =?utf-8?b?W2Fubm91bmNlXSBBc3NlcnQ6OlJlZnV0ZSAtINGD?= =?utf-8?b?0L3QuNGE0LjQutCw0YbQuNGPINCw0YHRgdC10YDRgtC+0LIg0Lgg0Y4=?= =?utf-8?b?0L3QuNGCLdGC0LXRgdGC0L7Qsg==?= Message-ID: Приветствую! Вышел и активно развивается модуль Assert::Refute[1], суть такова: use Assert::Refute qw(:all); my ($foo, $bar); # тут куча кода, который сложно протестировать refute_these { like $foo, qr/f?o?r?m?a?t/; isa_ok $bar, "My::Module"; }; # carp, если условия не выполняются Таким образом, создаётся (1) защита от дурака при изменении кода, рефакторингах и т.п. и (2) прототип будущего юнит-теста. Даже если речь не о легаси-коде, проверка инвариантов и разумных границ может быть полезна: use Assert::Refute; use ​Assert::Refute::T::Numeric qw(is_between); refute_these { is_between $price, 0.01, 1000, "Price within bounds"; }; ​По сути это контрактное программирование [2], только в оцень легковесной форме.​ Что ещё есть: * refute $reason, "explanation"; - очень мощный базовый метод, по сути это ok и diag в одном флаконе - если причина не тру, то всё хорошо, а если она тру, то понятно, что именно не так. * subcontract "name" => sub { # тут условия } Аналог subtest, но работает не только в юнит-тестах (в юнит-тестах, таки да, просто вызов Test::Builder->subtest внутри). * Assert::Refute::Build - конструирование собственных условий/проверок. В простейшём случае всё, что нужно - чистая функция, которая возвращает ложь, если всё хорошо, и _что именно_ пошло не так, если что-то пошло не так (ср. diff) Под Test::More тоже будет работать точно так же, если его (или что угодно на базе Test::Builder, напр. Test::Exception) подключили раньше. * Assert::Refute::Contract - прототип _настоящего_ контрактного программирования, пока что наиболее применим для тестирования тестов, написанных в предыдущем пункте. * Assert::Refute::Exec - объектно-ориентированный интерфейс, если неохота поганить неймспейс всякими is и like и вообще хочется более тонкого контроля. * Assert::Refute::T::* - немного дополнительный проверок, вроде "массив отсортирован так-то", "у хеша такие-то ключи" или "число от и до". А что с производительностью? Как-то так: bash# perl -MAssert::Refute=:all -we '$SIG{ALRM} = sub { $stop++ }; alarm 1; refute_these { like ++$i, qr/[0-9]/ while !$stop}; print $i'; 278022 bash# grep MHz /proc/cpuinfo cpu MHz : 2400.070 Далее планируется: * управление тестами - plan, skip, bail_out, TODO * больше собственно проверок * полезные дополнения типа работы с временными файлами Репо и анонс на perlmonks: https://github.com/dallaylaen/assert-refute-perl http://perlmonks.org/?node_id=1206533 [1] https://metacpan.org/pod/Assert::Refute ​[2]​ https://metacpan.org/pod/Class::Contract -- Konstantin S. Uvarin jabber: see skype: kuvarin http://github.com/dallaylaen ----------- следующая часть ----------- Вложение в формате HTML было извлечено… URL: From tarkhil на over.ru Wed Jan 10 13:15:06 2018 From: tarkhil на over.ru (Alex Povolotsky) Date: Thu, 11 Jan 2018 00:15:06 +0300 Subject: [Moscow.pm] =?utf-8?q?Mojo=3A=3AUserAgent=2C_utf8_=D0=B8_regexp?= =?utf-8?b?OiDRjyDRh9GC0L4t0YLQviDQt9Cw0L/Rg9GC0LDQu9GB0Y8=?= Message-ID: <4bb1d0d0-9f00-532a-a17a-0de7df829724@over.ru> Добрый вечер Вытаскиваю страницу с помощью Mojo::UserAgent, получаю $tx->res->dom, и пытаюсь сравнивать регекспом со строковыми литералами. $dom->at('h1.title')->text =~ /ой/ не работает что совсем непонятно encode('utf-8', $dom->at('h1.title')->text) =~ /ой/ в отладчике  возвращает 1, в коде - не отрабатывает. Кто-нибудь это уже борол? Alex From sergey.aleynikov на gmail.com Wed Jan 10 14:24:52 2018 From: sergey.aleynikov на gmail.com (Sergey Aleynikov) Date: Thu, 11 Jan 2018 01:24:52 +0300 Subject: [Moscow.pm] =?utf-8?q?Mojo=3A=3AUserAgent=2C_utf8_=D0=B8_regexp?= =?utf-8?b?OiDRjyDRh9GC0L4t0YLQviDQt9Cw0L/Rg9GC0LDQu9GB0Y8=?= In-Reply-To: <4bb1d0d0-9f00-532a-a17a-0de7df829724@over.ru> References: <4bb1d0d0-9f00-532a-a17a-0de7df829724@over.ru> Message-ID: Добрый день, И регулярное выражение и строка для поиска должны быть в одинаковой кодировке с одинаково выставленным флагом UTF8. В лучшем случае - в utf-8 с выставленным флагом. Ищите, почему в вашем коде это не так. Best regards, Sergey Aleynikov 11 января 2018 г., 0:15 пользователь Alex Povolotsky via Moscow-pm написал: > Добрый вечер > > Вытаскиваю страницу с помощью Mojo::UserAgent, получаю $tx->res->dom, и > пытаюсь сравнивать регекспом со строковыми литералами. > > $dom->at('h1.title')->text =~ /ой/ > > не работает > > что совсем непонятно > > encode('utf-8', $dom->at('h1.title')->text) =~ /ой/ > > в отладчике возвращает 1, в коде - не отрабатывает. > > Кто-нибудь это уже борол? > > Alex > -- > Moscow.pm mailing list > moscow-pm на pm.org | http://moscow.pm.org From khedin на gmail.com Wed Jan 10 14:46:33 2018 From: khedin на gmail.com (Konstantin S. Uvarin) Date: Thu, 11 Jan 2018 00:46:33 +0200 Subject: [Moscow.pm] =?utf-8?q?Mojo=3A=3AUserAgent=2C_utf8_=D0=B8_regexp?= =?utf-8?b?OiDRjyDRh9GC0L4t0YLQviDQt9Cw0L/Rg9GC0LDQu9GB0Y8=?= In-Reply-To: References: <4bb1d0d0-9f00-532a-a17a-0de7df829724@over.ru> Message-ID: Приветствую! Небольшой лонгрид. 1) В перле юникодная строка может быть представлена двумя способами: * как последовательность символов с номерами в т.ч. больше 255 - собственно юникод * как последовательность байтов с номерами строго до 255, кодирующая юникодную строку - это utf8 encode_utf8 делает из символов (cyrillic_a и пр) байты (0x0-0xFF) decode_utf8 делает из байтов символы (и дохнет, если ей попался символ > 255) Те же символы вызывают warning "wide characters in print". Потому что они не предназначены для IO, IO умеетработать только с байтами (в шине 8 бит на байт и всё!). 2) Флаг is_utf8, к сожалению, обозначает нечто противоположное своему названию - то есть, предполагается, что is_utf8=1 это строка символов, а is_utf8=0 это бинарная строка, из которой эти символы можно собрать. См. негодование Леманна по этому поводу в perldoc JSON::XS 3) use utf8; означает, что все бинарные последовательности в самом скрипте надо приводить к юникоду. Это то, что вам нужно, потому что 4) вам нужно работать именно с символами, для вас [а-я] это маленькая русская буква, а не "половинка а, какой-то бинарный мусор, половинка я". В идеале везде внутри периметра должен быть только юникод, 2018 год на дворе, всё-таки! Конец лонгрида Соответственно, (1) проверить, что везде, где есть кириллические литералы, стоит use utf8; - иначе "Лена и Маша" - не два женских имени, а бинарный мусор. (2) смотреть, какой флаг is_utf8 у того, что возвращается из dom. Возможно, где-то в недрах модуля, разбирающего HTML, есть настройка "у нас везде юникод", тогда её надо включить. По-моему, так. 2018-01-11 0:24 GMT+02:00 Sergey Aleynikov via Moscow-pm : > Добрый день, > > И регулярное выражение и строка для поиска должны быть в одинаковой > кодировке с одинаково выставленным флагом UTF8. В лучшем случае - в > utf-8 с выставленным флагом. Ищите, почему в вашем коде это не так. > > Best regards, > Sergey Aleynikov > > > 11 января 2018 г., 0:15 пользователь Alex Povolotsky via Moscow-pm > написал: > > Добрый вечер > > > > Вытаскиваю страницу с помощью Mojo::UserAgent, получаю $tx->res->dom, и > > пытаюсь сравнивать регекспом со строковыми литералами. > > > > $dom->at('h1.title')->text =~ /ой/ > > > > не работает > > > > что совсем непонятно > > > > encode('utf-8', $dom->at('h1.title')->text) =~ /ой/ > > > > в отладчике возвращает 1, в коде - не отрабатывает. > > > > Кто-нибудь это уже борол? > > > > Alex > > -- > > Moscow.pm mailing list > > moscow-pm на pm.org | http://moscow.pm.org > -- > Moscow.pm mailing list > moscow-pm на pm.org | http://moscow.pm.org > -- Konstantin S. Uvarin jabber: see skype: kuvarin http://github.com/dallaylaen ----------- следующая часть ----------- Вложение в формате HTML было извлечено… URL: From shafiev на gmail.com Fri Jan 12 00:00:23 2018 From: shafiev на gmail.com (naim) Date: Fri, 12 Jan 2018 12:00:23 +0400 Subject: [Moscow.pm] =?utf-8?b?TW9kZXJuINGB0L/QvtGB0L7QsSDRhdGA0LDQvdC1?= =?utf-8?b?0L3QuNC1INC60L7QvdGE0LjQs9C+0LIg0LvQvtC60LDQu9GM0L3Ri9GFINGE?= =?utf-8?b?0LDQudC70L7Qsg==?= Message-ID: <1515744023.30742.60.camel@gmail.com> Коллеги, появились наконец таки ресурсы и сейчас переделываем legacy . Пытаем перейти с require "config.pl" ( внутри перл структур логин и пасс , и сетевая и т.д и т.п инфа). Пока думаем о таком варианте просто вынести конфиги в .pm , чтобы потом use подключать и работать без двойного обьявления our $var ; Подскажите современный и нормальный путь . Спасибо From foxcool333 на gmail.com Fri Jan 12 00:36:50 2018 From: foxcool333 на gmail.com (=?UTF-8?B?0JDQu9C10LrRgdCw0L3QtNGAINCk0L7QutGB0LrRg9C7?=) Date: Fri, 12 Jan 2018 08:36:50 +0000 Subject: [Moscow.pm] =?utf-8?b?TW9kZXJuINGB0L/QvtGB0L7QsSDRhdGA0LDQvdC1?= =?utf-8?b?0L3QuNC1INC60L7QvdGE0LjQs9C+0LIg0LvQvtC60LDQu9GM0L3Ri9GF?= =?utf-8?b?INGE0LDQudC70L7Qsg==?= In-Reply-To: <1515744023.30742.60.camel@gmail.com> References: <1515744023.30742.60.camel@gmail.com> Message-ID: Эээ... Yaml, toml конфиги и модуль, который его читает и в структуры оформляет таки может? Это более распространенная практика в мире go & rust, например пт, 12 янв. 2018 г., 11:01 naim via Moscow-pm : > Коллеги, появились наконец таки ресурсы и сейчас переделываем legacy . > Пытаем перейти с require "config.pl" ( внутри перл структур логин и пасс > , и сетевая и т.д и т.п инфа). > Пока думаем о таком варианте просто вынести конфиги в .pm , чтобы потом > use подключать и работать без двойного обьявления our $var ; > Подскажите современный и нормальный путь . Спасибо > -- > Moscow.pm mailing list > moscow-pm на pm.org | http://moscow.pm.org > ----------- следующая часть ----------- Вложение в формате HTML было извлечено… URL: From theathlet на yandex.ru Fri Jan 12 00:42:40 2018 From: theathlet на yandex.ru (=?utf-8?B?0JrQvtCy0LDQu9GMINCS0Y/Rh9C10YHQu9Cw0LI=?=) Date: Fri, 12 Jan 2018 08:42:40 +0000 Subject: [Moscow.pm] =?utf-8?b?TW9kZXJuINGB0L/QvtGB0L7QsSDRhdGA0LDQvdC1?= =?utf-8?b?0L3QuNC1INC60L7QvdGE0LjQs9C+0LIg0LvQvtC60LDQu9GM0L3Ri9GF?= =?utf-8?b?INGE0LDQudC70L7Qsg==?= References: <1515744023.30742.60.camel@gmail.com> Message-ID: <467681515746560@web18o.yandex.ru> Вложение в формате HTML было извлечено… URL: From shafiev на gmail.com Fri Jan 12 00:46:35 2018 From: shafiev на gmail.com (naim) Date: Fri, 12 Jan 2018 12:46:35 +0400 Subject: [Moscow.pm] =?utf-8?b?TW9kZXJuINGB0L/QvtGB0L7QsSDRhdGA0LDQvdC1?= =?utf-8?b?0L3QuNC1INC60L7QvdGE0LjQs9C+0LIg0LvQvtC60LDQu9GM0L3Ri9GFINGE?= =?utf-8?b?0LDQudC70L7Qsg==?= In-Reply-To: <467681515746560@web18o.yandex.ru> References: <1515744023.30742.60.camel@gmail.com> <467681515746560@web18o.yandex.ru> Message-ID: <1515746795.30742.62.camel@gmail.com> Оки там просто покаместь CGI( о боже да не очень ) частично и не будеться что то биться . там просто файл имеет типа такое строение our $snmp = "asdasdasd"; our %servers = ( .. => ..) ; On Fri, 2018-01-12 at 08:42 +0000, Коваль Вячеслав wrote: > Можете реализовать по аналогии с https://metacpan.org/pod/Mojolicious::Plugin::Config > > т.е. создается файл app.conf, в нем хэш, в котором все параметры > либо можно конфиги держать в yaml, который будет конвертироваться в файл app.conf с хэшом > > > 12.01.2018, 08:03, "naim via Moscow-pm" : > > Коллеги, появились наконец таки ресурсы и сейчас переделываем legacy . > > Пытаем перейти с require "config.pl" ( внутри перл структур логин и пасс , и сетевая и т.д и т.п инфа). > > Пока думаем о таком варианте просто вынести конфиги в .pm , чтобы потом use подключать и работать без двойного обьявления our $var ; > > Подскажите современный и нормальный путь . Спасибо > > -- > > Moscow.pm mailing list > > moscow-pm на pm.org | http://moscow.pm.org > > > -- > Яндекс.Почта — надёжная почта > http://mail.yandex.ru/neo2/collect/?exp=1&t=1 > From nordicdyno на yandex.ru Fri Jan 12 01:58:31 2018 From: nordicdyno на yandex.ru (Orlovsky Alexander) Date: Fri, 12 Jan 2018 12:58:31 +0300 Subject: [Moscow.pm] =?utf-8?b?TW9kZXJuINGB0L/QvtGB0L7QsSDRhdGA0LDQvdC1?= =?utf-8?b?0L3QuNC1INC60L7QvdGE0LjQs9C+0LIg0LvQvtC60LDQu9GM0L3Ri9GF?= =?utf-8?b?INGE0LDQudC70L7Qsg==?= In-Reply-To: <1515744023.30742.60.camel@gmail.com> References: <1515744023.30742.60.camel@gmail.com> Message-ID: <489091515751111@web7j.yandex.ru> Вложение в формате HTML было извлечено… URL: From iskhartakh на gmail.com Fri Jan 12 02:08:20 2018 From: iskhartakh на gmail.com (Anatoly Y.) Date: Fri, 12 Jan 2018 17:08:20 +0700 Subject: [Moscow.pm] =?utf-8?b?TW9kZXJuINGB0L/QvtGB0L7QsSDRhdGA0LDQvdC1?= =?utf-8?b?0L3QuNC1INC60L7QvdGE0LjQs9C+0LIg0LvQvtC60LDQu9GM0L3Ri9GFINGE?= =?utf-8?b?0LDQudC70L7Qsg==?= In-Reply-To: <489091515751111@web7j.yandex.ru> References: <1515744023.30742.60.camel@gmail.com> <489091515751111@web7j.yandex.ru> Message-ID: Вот этот современный путь все переменные выносить в среду, мне кажется порочным. И вообще эта (это ведь оттуда да?) методология (https://12factor.net ) применима в каких-то очень частных случаях. Я согласен с первым ответом, хранить в удобном каком-то формате (JSON, YAML, XML, JCONF,...) и потрудиться написать разок модуль. > On 12 Jan 2018, at 16:58, Orlovsky Alexander via Moscow-pm wrote: > > Современный путь, это вынести все настройки с инфраструктурными особенностями работы кода наружу. > Часто это просто переменные окружения. В самом конфиге для таких настроек остаются дефолт значения (например для dev-окружения), которые могут быть переписаны снаружи этими переменными окружения. > > "Наружу", где хранятся настройки для каждой среды, у каждого может свой, в простейшем случае это какой-нибудь Ansible или даже просто systemd service-файл для развёртывания, который подключит все нужные переменные. > > > 12.01.2018, 11:03, "naim via Moscow-pm" : >> Коллеги, появились наконец таки ресурсы и сейчас переделываем legacy . >> Пытаем перейти с require "config.pl" ( внутри перл структур логин и пасс , и сетевая и т.д и т.п инфа). >> Пока думаем о таком варианте просто вынести конфиги в .pm , чтобы потом use подключать и работать без двойного обьявления our $var ; >> Подскажите современный и нормальный путь . Спасибо >> >> -- >> Moscow.pm mailing list >> moscow-pm на pm.org | http://moscow.pm.org -- > Moscow.pm mailing list > moscow-pm на pm.org | http://moscow.pm.org ----------- следующая часть ----------- Вложение в формате HTML было извлечено… URL: From imp.store на gmail.com Fri Jan 12 02:12:00 2018 From: imp.store на gmail.com (Alexey Golovlev) Date: Fri, 12 Jan 2018 13:12:00 +0300 Subject: [Moscow.pm] =?utf-8?b?TW9kZXJuINGB0L/QvtGB0L7QsSDRhdGA0LDQvdC1?= =?utf-8?b?0L3QuNC1INC60L7QvdGE0LjQs9C+0LIg0LvQvtC60LDQu9GM0L3Ri9GF?= =?utf-8?b?INGE0LDQudC70L7Qsg==?= In-Reply-To: References: <1515744023.30742.60.camel@gmail.com> <489091515751111@web7j.yandex.ru> Message-ID: ещё можете посмотреть https://metacpan.org/pod/Panda::Config::Perl - может понравится 12 января 2018 г., 13:08 пользователь Anatoly Y. via Moscow-pm < moscow-pm на pm.org> написал: > Вот этот современный путь все переменные выносить в среду, мне кажется > порочным. > И вообще эта (это ведь оттуда да?) методология (https://12factor.net) > применима в каких-то очень частных случаях. > Я согласен с первым ответом, хранить в удобном каком-то формате (JSON, > YAML, XML, JCONF,...) > и потрудиться написать разок модуль. > > > On 12 Jan 2018, at 16:58, Orlovsky Alexander via Moscow-pm < > moscow-pm на pm.org> wrote: > > Современный путь, это вынести все настройки с инфраструктурными > особенностями работы кода наружу. > Часто это просто переменные окружения. В самом конфиге для таких настроек > остаются дефолт значения (например для dev-окружения), которые могут быть > переписаны снаружи этими переменными окружения. > > "Наружу", где хранятся настройки для каждой среды, у каждого может свой, в > простейшем случае это какой-нибудь Ansible или даже просто systemd > service-файл для развёртывания, который подключит все нужные переменные. > > > 12.01.2018, 11:03, "naim via Moscow-pm" : > > Коллеги, появились наконец таки ресурсы и сейчас переделываем legacy . > Пытаем перейти с require "config.pl" ( внутри перл структур логин и пасс > , и сетевая и т.д и т.п инфа). > Пока думаем о таком варианте просто вынести конфиги в .pm , чтобы потом > use подключать и работать без двойного обьявления our $var ; > Подскажите современный и нормальный путь . Спасибо > -- > Moscow.pm mailing list > moscow-pm на pm.org | http://moscow.pm.org > > -- > Moscow.pm mailing list > moscow-pm на pm.org | http://moscow.pm.org > > > > -- > Moscow.pm mailing list > moscow-pm на pm.org | http://moscow.pm.org > > ----------- следующая часть ----------- Вложение в формате HTML было извлечено… URL: From mail на andy.sh Thu Jan 18 11:04:56 2018 From: mail на andy.sh (Andrew Shitov) Date: Thu, 18 Jan 2018 20:04:56 +0100 Subject: [Moscow.pm] Fwd: [GANDI] moscow.pm expires tomorrow In-Reply-To: <20180118065626.2E5A9248FC@mailer2.gandi.net> References: <20180118065626.2E5A9248FC@mailer2.gandi.net> Message-ID: А я пароль не могу вспомнить :-) Кто-нить знает как продлить без логина? ---------- Forwarded message ---------- From: Gandi Date: Thu, Jan 18, 2018 at 7:55 AM Subject: [GANDI] moscow.pm expires tomorrow Hello! This is important, so please read carefully. You are being sent this message because you are a contact for the domain moscow.pm under Gandi handle. This domain will expire at the Registry tomorrow, on 2018-01-19 08:51. If you would like to keep this domain, you must renew it before this date. The domain will be renewable at the normal price until 2018-02-15 22:51 IMPORTANT: if you miss the renewal deadline, your domain name will be deleted from our system on 2018-02-15 22:51. Its status will then change to "restorable" until 2018-03-18 08:51. Note, however, that the price of a restoration may be considerably higher than for a regular renewal, and associated services like GandiMail are not recovered when a domain is restored! To renew the domain, please go to Gandi's website at http://www.gandi.net/ and choose the "Domain names" tab, followed by "Renew" or go directly to this page: https://www.gandi.net/renew?domain_list=moscow.pm (if the link does not appear on a single line, please copy and paste the whole thing into the address bar of your web browser.) If you do not want to keep the domain, no further action is needed. If you do nothing, then moscow.pm will go back on the open market on or around 2018-03-18 08:51 (the exact date may vary slightly depending on the registry and time zone differences). A tip from Gandi's Support team: if you are in an emergency situation and you have forgotten your handle and/or password, you can renew a domain name from any other Gandi handle, or create a new one just for that purpose: http://www.gandi.net/contact/create (Note that renewing a domain from a different handle does not affect the domain's ownership.) Feel free to contact our Customer Care Department should you have any questions or require any additional assistance: http://www.gandi.net/faq/contact_support Thank you for choosing Gandi! Best Regards, -- GANDI - https://www.gandi.net/ -- Andrew Shitov ______________________________________________________________________ andy на shitov.ru | http://shitov.ru ----------- следующая часть ----------- Вложение в формате HTML было извлечено… URL: From todmst на gmail.com Thu Jan 18 11:21:14 2018 From: todmst на gmail.com (Dmitry Starikovsky) Date: Thu, 18 Jan 2018 22:21:14 +0300 Subject: [Moscow.pm] Fwd: [GANDI] moscow.pm expires tomorrow In-Reply-To: References: <20180118065626.2E5A9248FC@mailer2.gandi.net> Message-ID: Хм ... Воспользоваться формой восстановления забытого пароля? Dmitry Starikovsky, todmst на gmail.com 2018-01-18 22:04 GMT+03:00 Andrew Shitov via Moscow-pm : > А я пароль не могу вспомнить :-) Кто-нить знает как продлить без логина? > > > ---------- Forwarded message ---------- > From: Gandi > Date: Thu, Jan 18, 2018 at 7:55 AM > Subject: [GANDI] moscow.pm expires tomorrow > > > Hello! > > This is important, so please read carefully. > > You are being sent this message because you are a contact for the domain > moscow.pm under Gandi handle. > > This domain will expire at the Registry tomorrow, on 2018-01-19 08:51. > > If you would like to keep this domain, you must renew it before this date. > The domain will be renewable at the normal price until 2018-02-15 22:51 > > IMPORTANT: if you miss the renewal deadline, your domain name will be > deleted from our system on 2018-02-15 22:51. Its status will then change to > "restorable" until 2018-03-18 08:51. Note, however, that the price of a > restoration may be considerably higher than for a regular renewal, and > associated services like GandiMail are not recovered when a domain is > restored! > > To renew the domain, please go to Gandi's website at http://www.gandi.net/ > and choose the "Domain names" tab, followed by "Renew" or go directly to > this page: > > https://www.gandi.net/renew?domain_list=moscow.pm > (if the link does not appear on a single line, please copy and paste the > whole thing into the address bar of your web browser.) > > If you do not want to keep the domain, no further action is needed. If you > do nothing, then moscow.pm will go back on the open market on or around > 2018-03-18 08:51 (the exact date may vary slightly depending on the > registry and time zone differences). > > A tip from Gandi's Support team: if you are in an emergency situation and > you have forgotten your handle and/or password, you can renew a domain name > from any other Gandi handle, or create a new one just for that purpose: > > http://www.gandi.net/contact/create > > (Note that renewing a domain from a different handle does not affect the > domain's ownership.) > > > Feel free to contact our Customer Care Department should you have any > questions or require any additional assistance: > http://www.gandi.net/faq/contact_support > > > Thank you for choosing Gandi! > > Best Regards, > -- > > GANDI - https://www.gandi.net/ > > > > -- > Andrew Shitov > ______________________________________________________________________ > andy на shitov.ru | http://shitov.ru > > -- > Moscow.pm mailing list > moscow-pm на pm.org | http://moscow.pm.org > > ----------- следующая часть ----------- Вложение в формате HTML было извлечено… URL: From andy на shitov.ru Thu Jan 18 11:22:27 2018 From: andy на shitov.ru (Andrew Shitov) Date: Thu, 18 Jan 2018 19:22:27 +0000 Subject: [Moscow.pm] Fwd: [GANDI] moscow.pm expires tomorrow In-Reply-To: References: <20180118065626.2E5A9248FC@mailer2.gandi.net> Message-ID: Там секретный вопрос, который я не угадал. Теперь форма восстановления заблокирована на сутки. On Thu, 18 Jan 2018 at 20:21, Dmitry Starikovsky via Moscow-pm < moscow-pm на pm.org> wrote: > Хм ... > Воспользоваться формой восстановления забытого пароля? > > Dmitry Starikovsky, > todmst на gmail.com > > 2018-01-18 22:04 GMT+03:00 Andrew Shitov via Moscow-pm : > >> А я пароль не могу вспомнить :-) Кто-нить знает как продлить без логина? >> >> >> ---------- Forwarded message ---------- >> From: Gandi >> Date: Thu, Jan 18, 2018 at 7:55 AM >> Subject: [GANDI] moscow.pm expires tomorrow >> >> >> Hello! >> >> This is important, so please read carefully. >> >> You are being sent this message because you are a contact for the domain >> moscow.pm under Gandi handle. >> >> This domain will expire at the Registry tomorrow, on 2018-01-19 08:51. >> >> If you would like to keep this domain, you must renew it before this >> date. The domain will be renewable at the normal price until 2018-02-15 >> 22:51 >> >> IMPORTANT: if you miss the renewal deadline, your domain name will be >> deleted from our system on 2018-02-15 22:51. Its status will then change to >> "restorable" until 2018-03-18 08:51. Note, however, that the price of a >> restoration may be considerably higher than for a regular renewal, and >> associated services like GandiMail are not recovered when a domain is >> restored! >> >> To renew the domain, please go to Gandi's website at >> http://www.gandi.net/ and choose the "Domain names" tab, followed by >> "Renew" or go directly to this page: >> >> https://www.gandi.net/renew?domain_list=moscow.pm >> (if the link does not appear on a single line, please copy and paste the >> whole thing into the address bar of your web browser.) >> >> If you do not want to keep the domain, no further action is needed. If >> you do nothing, then moscow.pm will go back on the open market on or >> around 2018-03-18 08:51 (the exact date may vary slightly depending on the >> registry and time zone differences). >> >> A tip from Gandi's Support team: if you are in an emergency situation and >> you have forgotten your handle and/or password, you can renew a domain name >> from any other Gandi handle, or create a new one just for that purpose: >> >> http://www.gandi.net/contact/create >> >> (Note that renewing a domain from a different handle does not affect the >> domain's ownership.) >> >> >> Feel free to contact our Customer Care Department should you have any >> questions or require any additional assistance: >> http://www.gandi.net/faq/contact_support >> >> >> Thank you for choosing Gandi! >> >> Best Regards, >> -- >> >> GANDI - https://www.gandi.net/ >> >> >> >> -- >> Andrew Shitov >> ______________________________________________________________________ >> andy на shitov.ru | http://shitov.ru >> >> -- >> Moscow.pm mailing list >> moscow-pm на pm.org | http://moscow.pm.org >> >> > -- > Moscow.pm mailing list > moscow-pm на pm.org | http://moscow.pm.org > -- Andrew Shitov ______________________________________________________________________ andy на shitov.ru | http://shitov.ru ----------- следующая часть ----------- Вложение в формате HTML было извлечено… URL: From timur.nozadze на gmail.com Thu Jan 18 12:17:58 2018 From: timur.nozadze на gmail.com (Timur Nozadze) Date: Thu, 18 Jan 2018 20:17:58 +0000 Subject: [Moscow.pm] Fwd: [GANDI] moscow.pm expires tomorrow In-Reply-To: References: <20180118065626.2E5A9248FC@mailer2.gandi.net> Message-ID: A tip from Gandi's Support team: if you are in an emergency situation and you have forgotten your handle and/or password, you can renew a domain name from any other Gandi handle, or create a new one just for that purpose: http://www.gandi.net/contact/create чт, 18 янв. 2018 г. в 22:23, Andrew Shitov via Moscow-pm : > Там секретный вопрос, который я не угадал. Теперь форма восстановления > заблокирована на сутки. > > On Thu, 18 Jan 2018 at 20:21, Dmitry Starikovsky via Moscow-pm < > moscow-pm на pm.org> wrote: > >> Хм ... >> Воспользоваться формой восстановления забытого пароля? >> >> Dmitry Starikovsky, >> todmst на gmail.com >> >> 2018-01-18 22:04 GMT+03:00 Andrew Shitov via Moscow-pm >> : >> >>> А я пароль не могу вспомнить :-) Кто-нить знает как продлить без логина? >>> >>> >>> ---------- Forwarded message ---------- >>> From: Gandi >>> Date: Thu, Jan 18, 2018 at 7:55 AM >>> Subject: [GANDI] moscow.pm expires tomorrow >>> >>> >>> Hello! >>> >>> This is important, so please read carefully. >>> >>> You are being sent this message because you are a contact for the domain >>> moscow.pm under Gandi handle. >>> >>> This domain will expire at the Registry tomorrow, on 2018-01-19 08:51. >>> >>> If you would like to keep this domain, you must renew it before this >>> date. The domain will be renewable at the normal price until 2018-02-15 >>> 22:51 >>> >>> IMPORTANT: if you miss the renewal deadline, your domain name will be >>> deleted from our system on 2018-02-15 22:51. Its status will then change to >>> "restorable" until 2018-03-18 08:51. Note, however, that the price of a >>> restoration may be considerably higher than for a regular renewal, and >>> associated services like GandiMail are not recovered when a domain is >>> restored! >>> >>> To renew the domain, please go to Gandi's website at >>> http://www.gandi.net/ and choose the "Domain names" tab, followed by >>> "Renew" or go directly to this page: >>> >>> https://www.gandi.net/renew?domain_list=moscow.pm >>> (if the link does not appear on a single line, please copy and paste the >>> whole thing into the address bar of your web browser.) >>> >>> If you do not want to keep the domain, no further action is needed. If >>> you do nothing, then moscow.pm will go back on the open market on or >>> around 2018-03-18 08:51 (the exact date may vary slightly depending on the >>> registry and time zone differences). >>> >>> A tip from Gandi's Support team: if you are in an emergency situation >>> and you have forgotten your handle and/or password, you can renew a domain >>> name from any other Gandi handle, or create a new one just for that purpose: >>> >>> http://www.gandi.net/contact/create >>> >>> (Note that renewing a domain from a different handle does not affect the >>> domain's ownership.) >>> >>> >>> Feel free to contact our Customer Care Department should you have any >>> questions or require any additional assistance: >>> http://www.gandi.net/faq/contact_support >>> >>> >>> Thank you for choosing Gandi! >>> >>> Best Regards, >>> -- >>> >>> GANDI - https://www.gandi.net/ >>> >>> >>> >>> -- >>> Andrew Shitov >>> ______________________________________________________________________ >>> andy на shitov.ru | http://shitov.ru >>> >>> -- >>> Moscow.pm mailing list >>> moscow-pm на pm.org | http://moscow.pm.org >>> >>> >> -- >> Moscow.pm mailing list >> moscow-pm на pm.org | http://moscow.pm.org >> > -- > Andrew Shitov > ______________________________________________________________________ > andy на shitov.ru | http://shitov.ru > -- > Moscow.pm mailing list > moscow-pm на pm.org | http://moscow.pm.org > ----------- следующая часть ----------- Вложение в формате HTML было извлечено… URL: From todmst на gmail.com Thu Jan 18 12:22:08 2018 From: todmst на gmail.com (Dmitry Starikovsky) Date: Thu, 18 Jan 2018 23:22:08 +0300 Subject: [Moscow.pm] Fwd: [GANDI] moscow.pm expires tomorrow In-Reply-To: References: <20180118065626.2E5A9248FC@mailer2.gandi.net> Message-ID: Я под своим аккаунтом нажал на эту кнопку "renew" по домену moscow.pm. В любом случае, завтра не крайний срок, судя по письму. Есть еще время угадать ответ на секретный вопрос:) Dmitry Starikovsky, todmst на gmail.com 2018-01-18 23:17 GMT+03:00 Timur Nozadze via Moscow-pm : > A tip from Gandi's Support team: if you are in an emergency situation and > you have forgotten your handle and/or password, you can renew a domain name > from any other Gandi handle, or create a new one just for that purpose: > > http://www.gandi.net/contact/create > > чт, 18 янв. 2018 г. в 22:23, Andrew Shitov via Moscow-pm >: > >> Там секретный вопрос, который я не угадал. Теперь форма восстановления >> заблокирована на сутки. >> >> On Thu, 18 Jan 2018 at 20:21, Dmitry Starikovsky via Moscow-pm < >> moscow-pm на pm.org> wrote: >> >>> Хм ... >>> Воспользоваться формой восстановления забытого пароля? >>> >>> Dmitry Starikovsky, >>> todmst на gmail.com >>> >>> 2018-01-18 22:04 GMT+03:00 Andrew Shitov via Moscow-pm >> >: >>> >>>> А я пароль не могу вспомнить :-) Кто-нить знает как продлить без логина? >>>> >>>> >>>> ---------- Forwarded message ---------- >>>> From: Gandi >>>> Date: Thu, Jan 18, 2018 at 7:55 AM >>>> Subject: [GANDI] moscow.pm expires tomorrow >>>> >>>> >>>> Hello! >>>> >>>> This is important, so please read carefully. >>>> >>>> You are being sent this message because you are a contact for the >>>> domain moscow.pm under Gandi handle. >>>> >>>> This domain will expire at the Registry tomorrow, on 2018-01-19 08:51. >>>> >>>> If you would like to keep this domain, you must renew it before this >>>> date. The domain will be renewable at the normal price until 2018-02-15 >>>> 22:51 >>>> >>>> IMPORTANT: if you miss the renewal deadline, your domain name will be >>>> deleted from our system on 2018-02-15 22:51. Its status will then change to >>>> "restorable" until 2018-03-18 08:51. Note, however, that the price of a >>>> restoration may be considerably higher than for a regular renewal, and >>>> associated services like GandiMail are not recovered when a domain is >>>> restored! >>>> >>>> To renew the domain, please go to Gandi's website at >>>> http://www.gandi.net/ and choose the "Domain names" tab, followed by >>>> "Renew" or go directly to this page: >>>> >>>> https://www.gandi.net/renew?domain_list=moscow.pm >>>> (if the link does not appear on a single line, please copy and paste >>>> the whole thing into the address bar of your web browser.) >>>> >>>> If you do not want to keep the domain, no further action is needed. If >>>> you do nothing, then moscow.pm will go back on the open market on or >>>> around 2018-03-18 08:51 (the exact date may vary slightly depending on the >>>> registry and time zone differences). >>>> >>>> A tip from Gandi's Support team: if you are in an emergency situation >>>> and you have forgotten your handle and/or password, you can renew a domain >>>> name from any other Gandi handle, or create a new one just for that purpose: >>>> >>>> http://www.gandi.net/contact/create >>>> >>>> (Note that renewing a domain from a different handle does not affect >>>> the domain's ownership.) >>>> >>>> >>>> Feel free to contact our Customer Care Department should you have any >>>> questions or require any additional assistance: >>>> http://www.gandi.net/faq/contact_support >>>> >>>> >>>> Thank you for choosing Gandi! >>>> >>>> Best Regards, >>>> -- >>>> >>>> GANDI - https://www.gandi.net/ >>>> >>>> >>>> >>>> -- >>>> Andrew Shitov >>>> ______________________________________________________________________ >>>> andy на shitov.ru | http://shitov.ru >>>> >>>> -- >>>> Moscow.pm mailing list >>>> moscow-pm на pm.org | http://moscow.pm.org >>>> >>>> >>> -- >>> Moscow.pm mailing list >>> moscow-pm на pm.org | http://moscow.pm.org >>> >> -- >> Andrew Shitov >> ______________________________________________________________________ >> andy на shitov.ru | http://shitov.ru >> -- >> Moscow.pm mailing list >> moscow-pm на pm.org | http://moscow.pm.org >> > > -- > Moscow.pm mailing list > moscow-pm на pm.org | http://moscow.pm.org > > ----------- следующая часть ----------- Вложение в формате HTML было извлечено… URL: From andy на shitov.ru Thu Jan 18 12:23:44 2018 From: andy на shitov.ru (Andrew Shitov) Date: Thu, 18 Jan 2018 20:23:44 +0000 Subject: [Moscow.pm] Fwd: [GANDI] moscow.pm expires tomorrow In-Reply-To: References: <20180118065626.2E5A9248FC@mailer2.gandi.net> Message-ID: Именно завтра, уже через три часа (ну смотря какой у них пояс). On Thu, 18 Jan 2018 at 21:22, Dmitry Starikovsky via Moscow-pm < moscow-pm на pm.org> wrote: > Я под своим аккаунтом нажал на эту кнопку "renew" по домену moscow.pm. > В любом случае, завтра не крайний срок, судя по письму. > Есть еще время угадать ответ на секретный вопрос:) > > Dmitry Starikovsky, > todmst на gmail.com > > 2018-01-18 23:17 GMT+03:00 Timur Nozadze via Moscow-pm : > >> A tip from Gandi's Support team: if you are in an emergency situation and >> you have forgotten your handle and/or password, you can renew a domain name >> from any other Gandi handle, or create a new one just for that purpose: >> >> http://www.gandi.net/contact/create >> >> чт, 18 янв. 2018 г. в 22:23, Andrew Shitov via Moscow-pm < >> moscow-pm на pm.org>: >> >>> Там секретный вопрос, который я не угадал. Теперь форма восстановления >>> заблокирована на сутки. >>> >>> On Thu, 18 Jan 2018 at 20:21, Dmitry Starikovsky via Moscow-pm < >>> moscow-pm на pm.org> wrote: >>> >>>> Хм ... >>>> Воспользоваться формой восстановления забытого пароля? >>>> >>>> Dmitry Starikovsky, >>>> todmst на gmail.com >>>> >>>> 2018-01-18 22:04 GMT+03:00 Andrew Shitov via Moscow-pm < >>>> moscow-pm на pm.org>: >>>> >>>>> А я пароль не могу вспомнить :-) Кто-нить знает как продлить без >>>>> логина? >>>>> >>>>> >>>>> ---------- Forwarded message ---------- >>>>> From: Gandi >>>>> Date: Thu, Jan 18, 2018 at 7:55 AM >>>>> Subject: [GANDI] moscow.pm expires tomorrow >>>>> >>>>> >>>>> Hello! >>>>> >>>>> This is important, so please read carefully. >>>>> >>>>> You are being sent this message because you are a contact for the >>>>> domain moscow.pm under Gandi handle. >>>>> >>>>> This domain will expire at the Registry tomorrow, on 2018-01-19 08:51. >>>>> >>>>> If you would like to keep this domain, you must renew it before this >>>>> date. The domain will be renewable at the normal price until 2018-02-15 >>>>> 22:51 >>>>> >>>>> IMPORTANT: if you miss the renewal deadline, your domain name will be >>>>> deleted from our system on 2018-02-15 22:51. Its status will then change to >>>>> "restorable" until 2018-03-18 08:51. Note, however, that the price of a >>>>> restoration may be considerably higher than for a regular renewal, and >>>>> associated services like GandiMail are not recovered when a domain is >>>>> restored! >>>>> >>>>> To renew the domain, please go to Gandi's website at >>>>> http://www.gandi.net/ and choose the "Domain names" tab, followed by >>>>> "Renew" or go directly to this page: >>>>> >>>>> https://www.gandi.net/renew?domain_list=moscow.pm >>>>> (if the link does not appear on a single line, please copy and paste >>>>> the whole thing into the address bar of your web browser.) >>>>> >>>>> If you do not want to keep the domain, no further action is needed. If >>>>> you do nothing, then moscow.pm will go back on the open market on or >>>>> around 2018-03-18 08:51 (the exact date may vary slightly depending on the >>>>> registry and time zone differences). >>>>> >>>>> A tip from Gandi's Support team: if you are in an emergency situation >>>>> and you have forgotten your handle and/or password, you can renew a domain >>>>> name from any other Gandi handle, or create a new one just for that purpose: >>>>> >>>>> http://www.gandi.net/contact/create >>>>> >>>>> (Note that renewing a domain from a different handle does not affect >>>>> the domain's ownership.) >>>>> >>>>> >>>>> Feel free to contact our Customer Care Department should you have any >>>>> questions or require any additional assistance: >>>>> http://www.gandi.net/faq/contact_support >>>>> >>>>> >>>>> Thank you for choosing Gandi! >>>>> >>>>> Best Regards, >>>>> -- >>>>> >>>>> GANDI - https://www.gandi.net/ >>>>> >>>>> >>>>> >>>>> -- >>>>> Andrew Shitov >>>>> ______________________________________________________________________ >>>>> andy на shitov.ru | http://shitov.ru >>>>> >>>>> -- >>>>> Moscow.pm mailing list >>>>> moscow-pm на pm.org | http://moscow.pm.org >>>>> >>>>> >>>> -- >>>> Moscow.pm mailing list >>>> moscow-pm на pm.org | http://moscow.pm.org >>>> >>> -- >>> Andrew Shitov >>> ______________________________________________________________________ >>> andy на shitov.ru | http://shitov.ru >>> -- >>> Moscow.pm mailing list >>> moscow-pm на pm.org | http://moscow.pm.org >>> >> >> -- >> Moscow.pm mailing list >> moscow-pm на pm.org | http://moscow.pm.org >> >> > -- > Moscow.pm mailing list > moscow-pm на pm.org | http://moscow.pm.org > -- Andrew Shitov ______________________________________________________________________ andy на shitov.ru | http://shitov.ru ----------- следующая часть ----------- Вложение в формате HTML было извлечено… URL: From andy на shitov.ru Thu Jan 18 12:49:21 2018 From: andy на shitov.ru (Andrew Shitov) Date: Thu, 18 Jan 2018 21:49:21 +0100 Subject: [Moscow.pm] Fwd: [GANDI] moscow.pm expires tomorrow In-Reply-To: References: <20180118065626.2E5A9248FC@mailer2.gandi.net> Message-ID: Угу, там тоже все через жопу. Вроде заплатилось. On Thu, Jan 18, 2018 at 9:17 PM, Timur Nozadze wrote: > A tip from Gandi's Support team: if you are in an emergency situation and > you have forgotten your handle and/or password, you can renew a domain name > from any other Gandi handle, or create a new one just for that purpose: > > http://www.gandi.net/contact/create > > чт, 18 янв. 2018 г. в 22:23, Andrew Shitov via Moscow-pm >: > >> Там секретный вопрос, который я не угадал. Теперь форма восстановления >> заблокирована на сутки. >> >> On Thu, 18 Jan 2018 at 20:21, Dmitry Starikovsky via Moscow-pm < >> moscow-pm на pm.org> wrote: >> >>> Хм ... >>> Воспользоваться формой восстановления забытого пароля? >>> >>> Dmitry Starikovsky, >>> todmst на gmail.com >>> >>> 2018-01-18 22:04 GMT+03:00 Andrew Shitov via Moscow-pm >> >: >>> >>>> А я пароль не могу вспомнить :-) Кто-нить знает как продлить без логина? >>>> >>>> >>>> ---------- Forwarded message ---------- >>>> From: Gandi >>>> Date: Thu, Jan 18, 2018 at 7:55 AM >>>> Subject: [GANDI] moscow.pm expires tomorrow >>>> >>>> >>>> Hello! >>>> >>>> This is important, so please read carefully. >>>> >>>> You are being sent this message because you are a contact for the >>>> domain moscow.pm under Gandi handle. >>>> >>>> This domain will expire at the Registry tomorrow, on 2018-01-19 08:51. >>>> >>>> If you would like to keep this domain, you must renew it before this >>>> date. The domain will be renewable at the normal price until 2018-02-15 >>>> 22:51 >>>> >>>> IMPORTANT: if you miss the renewal deadline, your domain name will be >>>> deleted from our system on 2018-02-15 22:51. Its status will then change to >>>> "restorable" until 2018-03-18 08:51. Note, however, that the price of a >>>> restoration may be considerably higher than for a regular renewal, and >>>> associated services like GandiMail are not recovered when a domain is >>>> restored! >>>> >>>> To renew the domain, please go to Gandi's website at >>>> http://www.gandi.net/ and choose the "Domain names" tab, followed by >>>> "Renew" or go directly to this page: >>>> >>>> https://www.gandi.net/renew?domain_list=moscow.pm >>>> (if the link does not appear on a single line, please copy and paste >>>> the whole thing into the address bar of your web browser.) >>>> >>>> If you do not want to keep the domain, no further action is needed. If >>>> you do nothing, then moscow.pm will go back on the open market on or >>>> around 2018-03-18 08:51 (the exact date may vary slightly depending on the >>>> registry and time zone differences). >>>> >>>> A tip from Gandi's Support team: if you are in an emergency situation >>>> and you have forgotten your handle and/or password, you can renew a domain >>>> name from any other Gandi handle, or create a new one just for that purpose: >>>> >>>> http://www.gandi.net/contact/create >>>> >>>> (Note that renewing a domain from a different handle does not affect >>>> the domain's ownership.) >>>> >>>> >>>> Feel free to contact our Customer Care Department should you have any >>>> questions or require any additional assistance: >>>> http://www.gandi.net/faq/contact_support >>>> >>>> >>>> Thank you for choosing Gandi! >>>> >>>> Best Regards, >>>> -- >>>> >>>> GANDI - https://www.gandi.net/ >>>> >>>> >>>> >>>> -- >>>> Andrew Shitov >>>> ______________________________________________________________________ >>>> andy на shitov.ru | http://shitov.ru >>>> >>>> -- >>>> Moscow.pm mailing list >>>> moscow-pm на pm.org | http://moscow.pm.org >>>> >>>> >>> -- >>> Moscow.pm mailing list >>> moscow-pm на pm.org | http://moscow.pm.org >>> >> -- >> Andrew Shitov >> ______________________________________________________________________ >> andy на shitov.ru | http://shitov.ru >> -- >> Moscow.pm mailing list >> moscow-pm на pm.org | http://moscow.pm.org >> > -- Andrew Shitov ______________________________________________________________________ andy на shitov.ru | http://shitov.ru ----------- следующая часть ----------- Вложение в формате HTML было извлечено… URL: From mik.jackson на yandex.ru Wed Jan 24 03:42:30 2018 From: mik.jackson на yandex.ru (=?utf-8?B?0JzQuNGF0LDQuNC7INCV0LPQvtGA0L7Qsg==?=) Date: Wed, 24 Jan 2018 14:42:30 +0300 Subject: [Moscow.pm] =?utf-8?b?W9CS0LDQutCw0L3RgdC40Y9dINCY0YnQtdC8INGB?= =?utf-8?b?0LXQvdGM0LXRgFzQvNC40LTQuyBwZXJsINC/0YDQvtCz0YDQsNC80Lw=?= =?utf-8?b?0LjRgdGC0LAgKNGD0LTQsNC70LXQvdC60LAp?= Message-ID: <152381516794150@web42j.yandex.ru> Доброго времени суток. Ищем сеньер\мидл perl программиста в стартап. Требования: 1) знание perl и mojolicious. 2) опыт работы с mysql, redis, git. 3) чувство юмора и интеллект. Предстоит помогать писать бекенд уже не с нуля в медленно загибающемся проекте. Мы ищем опытного трудягу без понтов и мании величия. ЗП от 100_000 руб. и выше, можем привязать к доллару или биткоину(шутка). Можно не фултайм но работа в промежутке с 10 до 17 мск. Рассмотрим любые варианты. Контакты: email (mik.jackson на yandex.ru), telegram (@misha_egorov) Если возникли вопросы пишите на почту, убедительная просьба не флудить в рассылке. --  С уважением, Михаил Егоров