<?xml version="1.0" encoding="UTF-8"?>

<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" >

  <channel>
    <title><![CDATA[Комментарии / Профиль ginx]]></title>
    <link>https://habr.com/ru/users/ginx/comments/</link>
    <description><![CDATA[Хабр: комментарии пользователя ginx]]></description>
    <language>ru</language>
    <managingEditor>editor@habr.com</managingEditor>
    <generator>habr.com</generator>
    <pubDate>Sun, 03 May 2026 21:35:46 GMT</pubDate>
    
    
      <image>
        <link>https://habr.com/ru/</link>
        <url>https://habrastorage.org/webt/ym/el/wk/ymelwk3zy1gawz4nkejl_-ammtc.png</url>
        <title>Хабр</title>
      </image>
    

    
      

      
        
  
    <item>
      <title>19.07.2017 13:48:32 </title>
      <guid isPermaLink="true">https://habr.com/ru/companies/yandex/articles/333522/#comment_10319522</guid>
      <link>https://habr.com/ru/companies/yandex/articles/333522/#comment_10319522</link>
      <description><![CDATA[Вижу, что поддерживается. <a href="https://tech.yandex.com/catboost/doc/dg/concepts/python-usages-examples-docpage/#exporting-to-apple-core-ml">Exporting the model to Apple CoreML</a>. Круто! Отличная работа!<br>]]></description>
      <pubDate>Wed, 19 Jul 2017 13:48:32 GMT</pubDate>
      <dc:creator><![CDATA[]]></dc:creator>
    </item>
  

  
    <item>
      <title>19.07.2017 13:37:37 </title>
      <guid isPermaLink="true">https://habr.com/ru/companies/yandex/articles/333522/#comment_10319484</guid>
      <link>https://habr.com/ru/companies/yandex/articles/333522/#comment_10319484</link>
      <description><![CDATA[Пример из <a href="https://tech.yandex.com/catboost/doc/dg/concepts/python-installation-docpage/#python-installation">документации</a> впечатляет. Люблю когда всё просто и понятно. Надо будет протестировать подробнее. Хотелось бы узнать, планируется ли поддержка работы библиотеки на мобильных устройствах, on-device? Возможно, по типу TensorFlow / Core ML, или в связке с ними? Ваше мнение о целесообразности такого подхода в целом?]]></description>
      <pubDate>Wed, 19 Jul 2017 13:37:37 GMT</pubDate>
      <dc:creator><![CDATA[]]></dc:creator>
    </item>
  

  
    <item>
      <title>23.06.2017 15:14:18 </title>
      <guid isPermaLink="true">https://habr.com/ru/companies/touchinstinct/articles/331078/#comment_10280048</guid>
      <link>https://habr.com/ru/companies/touchinstinct/articles/331078/#comment_10280048</link>
      <description><![CDATA[Спасибо, интересно. Другие технологии, которые, с моей точки зрения, способны «изменить наше представление о мобильных приложениях» — Core ML и Core NFC. О них говорят пока не так много, но потенциала у них не меньше.<br/>
]]></description>
      <pubDate>Fri, 23 Jun 2017 15:14:18 GMT</pubDate>
      <dc:creator><![CDATA[]]></dc:creator>
    </item>
  

  
    <item>
      <title>03.03.2016 19:41:41 </title>
      <guid isPermaLink="true">https://habr.com/ru/articles/278325/#comment_8793159</guid>
      <link>https://habr.com/ru/articles/278325/#comment_8793159</link>
      <description><![CDATA[<blockquote>Человеку, читающему Реддит и HN Хабр вообще может быть не столь интересным (а интересным только новостями из постсоветского пространства), потому что после них заходишь на Хабр или Гиктаймс и видишь на главной то, что ты уже читал вчера или несколько дней назад с очень адекватными обсуждениями.</blockquote><br/>
Было такое несколько раз, только с Twitter.<br/>
]]></description>
      <pubDate>Thu, 03 Mar 2016 19:41:41 GMT</pubDate>
      <dc:creator><![CDATA[]]></dc:creator>
    </item>
  

  
    <item>
      <title>24.11.2015 20:01:19 </title>
      <guid isPermaLink="true">https://habr.com/ru/companies/web_payment_ru/articles/271359/#comment_8665505</guid>
      <link>https://habr.com/ru/companies/web_payment_ru/articles/271359/#comment_8665505</link>
      <description><![CDATA[Кто-то писал, что перешел с PHP на Go, но после того как в PHP 7 появились новые фичи (в особенности поддержка статической типизации) вернулся обратно в PHP )]]></description>
      <pubDate>Tue, 24 Nov 2015 20:01:19 GMT</pubDate>
      <dc:creator><![CDATA[]]></dc:creator>
    </item>
  

  
    <item>
      <title>24.11.2015 03:55:26 </title>
      <guid isPermaLink="true">https://habr.com/ru/companies/web_payment_ru/articles/271359/#comment_8664473</guid>
      <link>https://habr.com/ru/companies/web_payment_ru/articles/271359/#comment_8664473</link>
      <description><![CDATA[<b>По поводу concurrency в PHP:</b><br/>
<br/>
'Parallel PHP' намечается в следующих релизах (возможно 8).<br/>
<br/>
Multi-threading в PHP возможно использовать уже сейчас с <a href="https://github.com/krakjoe/pthreads">pthreads</a>:<br/>
<div class="spoiler"><b class="spoiler_title">Asynchronous Concurrency - Vanilla PHP</b><div class="spoiler_text"><pre><code class="php">&lt;?php
class Task {
    function Task($id, $start, $end) {
        $this-&gt;id    = $id;
        $this-&gt;start = $start;
        $this-&gt;end   = $end;
        $this-&gt;pos   = $this-&gt;start;
    }

    function execute() {
        if ($this-&gt;pos &lt; $this-&gt;end) {
            return $this-&gt;pos++;
        } else return false;
    }
}

$range     = range(1, 100);
$ranges    = array_chunk($range, 10);
$tasks     = array();

while (count($ranges)) {
    $range = array_shift($ranges);

    $tasks[] = new Task(
        count($tasks) + 1,
        array_shift($range), 
        array_pop($range));
}

while (count($tasks)) {
    foreach ($tasks as $id =&gt; $task) {
        if ($task-&gt;execute() === false) {
            printf(&quot;task %d complete\n&quot;, $task-&gt;id);
            unset($tasks[$id]);
        } else printf(&quot;task %d position %d\n&quot;, $task-&gt;id, $task-&gt;pos);
    }
}
?&gt;
</code></pre><br/>
</div></div><br/>
Также есть non-blocking concurrency framework <a href="https://github.com/amphp/amp">Amp</a><br/>
]]></description>
      <pubDate>Tue, 24 Nov 2015 03:55:26 GMT</pubDate>
      <dc:creator><![CDATA[]]></dc:creator>
    </item>
  

      

      

    
  </channel>
</rss>
