<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0"><channel><title>d1ffuz0r - python, erlang, l1f3</title><link>https://d1ffuz0r.com/</link><description></description><lastBuildDate>Sun, 28 Feb 2021 12:56:00 +0300</lastBuildDate><item><title>Software Development Experiences</title><link>https://d1ffuz0r.com/software-development-experiences.html</link><description>&lt;p&gt;I've came around the cool article where author gives his opinion on various software development topics after being 6 years in the industry:
&lt;a class="reference external" href="https://chriskiehl.com/article/thoughts-after-6-years"&gt;https://chriskiehl.com/article/thoughts-after-6-years&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;100% agree with him.&lt;/p&gt;
&lt;p&gt;Happy 2021!&lt;/p&gt;
</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Roman Gladkov</dc:creator><pubDate>Sun, 28 Feb 2021 12:56:00 +0300</pubDate><guid isPermaLink="false">tag:d1ffuz0r.com,2021-02-28:/software-development-experiences.html</guid></item><item><title>Erlang Logging Libraries</title><link>https://d1ffuz0r.com/erlang-logging-libraries.html</link><description>&lt;p&gt;Re-posting from 2015-01-07&lt;/p&gt;
&lt;p&gt;Erlang has many logging libraries for any taste. We want to collect all of them to a single list and help you select the best one for your next or current project.&lt;/p&gt;
&lt;div class="section" id="error-logger"&gt;
&lt;h2&gt;error_logger&lt;/h2&gt;
&lt;p&gt;&lt;strong&gt;error_logger&lt;/strong&gt; is a built in Erlang/OTP event manager which is can be used …&lt;/p&gt;&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Roman Gladkov</dc:creator><pubDate>Thu, 07 May 2020 00:00:00 +0300</pubDate><guid isPermaLink="false">tag:d1ffuz0r.com,2020-05-07:/erlang-logging-libraries.html</guid><category>Erlang</category><category>Logging</category><category>Libraries</category></item><item><title>N2O Logging. Custom backend</title><link>https://d1ffuz0r.com/n2o-logging-custom-backend.html</link><description>&lt;p&gt;Re-posting from 2014-10-17&lt;/p&gt;
&lt;p&gt;In this tutorial we will show you how to create a custom logging backend for N2O. We will use &lt;a class="reference external" href="https://github.com/basho/lager"&gt;Lager&lt;/a&gt; as a logging library.&lt;/p&gt;
&lt;p&gt;As we described in the previous (&lt;a class="reference external" href="/n2o-logging.html"&gt;N2O Logging&lt;/a&gt;) tutorial, the logging backend should be implementing 3 methods:&lt;/p&gt;
&lt;blockquote&gt;
&lt;ul class="simple"&gt;
&lt;li&gt;warning/3&lt;/li&gt;
&lt;li&gt;info/3&lt;/li&gt;
&lt;li&gt;error/3 …&lt;/li&gt;&lt;/ul&gt;&lt;/blockquote&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Roman Gladkov</dc:creator><pubDate>Thu, 07 May 2020 00:00:00 +0300</pubDate><guid isPermaLink="false">tag:d1ffuz0r.com,2020-05-07:/n2o-logging-custom-backend.html</guid><category>Erlang</category><category>Lager</category><category>N2O</category><category>logging</category></item><item><title>N2O Logging</title><link>https://d1ffuz0r.com/n2o-logging.html</link><description>&lt;p&gt;Re-posting from 2014-10-08&lt;/p&gt;
&lt;p&gt;Logging and Error tracking are very important things for every project. Let's learn how to write logs in N2O.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Note:&lt;/strong&gt; For this example, we will use the code we created in previous articles about templates.&lt;/p&gt;
&lt;div class="section" id="implementation"&gt;
&lt;h2&gt;Implementation&lt;/h2&gt;
&lt;p&gt;N2O provides a basic interface for writing logs:&lt;/p&gt;
&lt;ul class="simple"&gt;
&lt;li&gt;wf:warning/1 …&lt;/li&gt;&lt;/ul&gt;&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Roman Gladkov</dc:creator><pubDate>Tue, 05 May 2020 00:00:00 +0300</pubDate><guid isPermaLink="false">tag:d1ffuz0r.com,2020-05-05:/n2o-logging.html</guid><category>Erlang</category><category>N2O</category><category>Tutorial</category><category>logging</category><category>erlang logging</category></item><item><title>N2O templates. Erlydtl</title><link>https://d1ffuz0r.com/n2o-templates-erlydtl.html</link><description>&lt;p&gt;Re-posting from 2014-09-26&lt;/p&gt;
&lt;p&gt;If you do use Django, ROR or any other modern framework, you should be familiar with templates. In N2O you can use &lt;a class="reference external" href="https://github.com/erlydtl/erlydtl"&gt;Erlydtl&lt;/a&gt; templates. In this part we will show how to create a view that will be rendering a simple Erlydtl template.&lt;/p&gt;
&lt;p&gt;For this step we …&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Roman Gladkov</dc:creator><pubDate>Mon, 04 May 2020 00:00:00 +0300</pubDate><guid isPermaLink="false">tag:d1ffuz0r.com,2020-05-04:/n2o-templates-erlydtl.html</guid><category>Erlang</category><category>N2O</category><category>Tutorial</category></item><item><title>N2O templates. Nitrogen</title><link>https://d1ffuz0r.com/n2o-templates-nitrogen.html</link><description>&lt;p&gt;Re-posting from 2014-09-25&lt;/p&gt;
&lt;p&gt;N2O template (Nitrogen) basically is a bunch of Erlang records compiled into HTML code. You can read more about templates at &lt;a class="reference external" href="https://synrc.com/apps/n2o/doc/web/"&gt;https://synrc.com/apps/n2o/doc/web/&lt;/a&gt; page. Here we want to show how all steps of the page creation. It will be done in several …&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Roman Gladkov</dc:creator><pubDate>Sun, 03 May 2020 00:00:00 +0300</pubDate><guid isPermaLink="false">tag:d1ffuz0r.com,2020-05-03:/n2o-templates-nitrogen.html</guid><category>Erlang</category><category>N2O</category><category>Tutorial</category></item><item><title>N2O templates. Static HTML</title><link>https://d1ffuz0r.com/n2o-templates-static-html.html</link><description>&lt;p&gt;Re-posting from 2014-09-24&lt;/p&gt;
&lt;p&gt;It's a time to learn more N2O. In this article we will show how to render templates using different techniques:&lt;/p&gt;
&lt;ul class="simple"&gt;
&lt;li&gt;Static html template&lt;/li&gt;
&lt;li&gt;N2O record-based templates&lt;/li&gt;
&lt;li&gt;&lt;a class="reference external" href="https://github.com/erlydtl/erlydtl"&gt;Erlydtl&lt;/a&gt; templates&lt;/li&gt;
&lt;/ul&gt;
&lt;div class="section" id="environment"&gt;
&lt;h2&gt;Environment&lt;/h2&gt;
&lt;p&gt;For this example, we will use a project we have created in the previous &lt;a class="reference external" href="/hello-n2o.html"&gt;tutorial&lt;/a&gt;.
A directory structure …&lt;/p&gt;&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Roman Gladkov</dc:creator><pubDate>Sat, 02 May 2020 00:00:00 +0300</pubDate><guid isPermaLink="false">tag:d1ffuz0r.com,2020-05-02:/n2o-templates-static-html.html</guid><category>Erlang</category><category>N2O</category><category>Tutorial</category></item><item><title>Hello N2O!</title><link>https://d1ffuz0r.com/hello-n2o.html</link><description>&lt;p&gt;Re-posting from 2014-09-16&lt;/p&gt;
&lt;p&gt;&amp;quot;N2O — The Most Powerful Erlang Web Framework&amp;quot;&lt;/p&gt;
&lt;p&gt;As a first step, we will show how to install N2O and create a simple application.&lt;/p&gt;
&lt;div class="section" id="environment"&gt;
&lt;h2&gt;Environment&lt;/h2&gt;
&lt;p&gt;N2O is an Erlang framework so let's install Erlang first (if you haven't done it yet).&lt;/p&gt;
&lt;p&gt;In Linux, we will use Erlang Solutions …&lt;/p&gt;&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Roman Gladkov</dc:creator><pubDate>Fri, 01 May 2020 00:00:00 +0300</pubDate><guid isPermaLink="false">tag:d1ffuz0r.com,2020-05-01:/hello-n2o.html</guid><category>Erlang</category><category>N2O</category><category>Tutorial</category></item><item><title>PyCon US 2017</title><link>https://d1ffuz0r.com/pycon-us-2017.html</link><description>&lt;div class="section" id="keynote-day-1"&gt;
&lt;h2&gt;Keynote Day 1&lt;/h2&gt;
&lt;p&gt;Video &lt;a class="reference external" href="https://www.youtube.com/watch?v=ZyjCqQEUa8o"&gt;https://www.youtube.com/watch?v=ZyjCqQEUa8o&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;Introduction.
PyCon is changing. Over years the conference has changed from all mostly web-focused it to a very diverse conference. Now there’s a lot of scientists (numpy, scipy), devops (ansible, redhat), web (django, flask), data engineering (spark, dask …&lt;/p&gt;&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Roman Gladkov</dc:creator><pubDate>Fri, 15 Mar 2019 12:28:00 +0300</pubDate><guid isPermaLink="false">tag:d1ffuz0r.com,2019-03-15:/pycon-us-2017.html</guid><category>python</category><category>pycon</category></item><item><title>Erlang vs Scala</title><link>https://d1ffuz0r.com/erlang-vs-scala.html</link><description>&lt;pre class="literal-block"&gt;
[10:59] z-b&amp;gt;
http://highscalability.com/blog/2014/1/6/how-hipchat-stores-and-indexes-billions-of-messages-using-el.html
[10:59] z-b&amp;gt; :)))))))))))))))))
[11:00] z-b&amp;gt; хайлод уровня бэ
[11:05] Чубака&amp;gt; z-b: umeshu na 1 shared hosting  na erlange
[11:06] z-b&amp;gt; Чубака: v 0.7 na scale
[11:06] Чубака&amp;gt; skala tam daje ne zapustitsya
[11 …&lt;/pre&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Roman Gladkov</dc:creator><pubDate>Wed, 24 Oct 2018 21:22:00 +0300</pubDate><guid isPermaLink="false">tag:d1ffuz0r.com,2018-10-24:/erlang-vs-scala.html</guid></item><item><title>SQLALchemy Query Manager</title><link>https://d1ffuz0r.com/sqlalchemy-query-manager.html</link><description>&lt;p&gt;So, Django has &amp;quot;manager&amp;quot; for the queries &lt;a class="reference external" href="https://docs.djangoproject.com/en/1.4/topics/db/managers/#django.db.models.Manager"&gt;https://docs.djangoproject.com/en/1.4/topics/db/managers/#django.db.models.Manager&lt;/a&gt;, that is good for creating DSL.&lt;/p&gt;
&lt;p&gt;For example, if you want get all users from database for chosen date, you can write some query:&lt;/p&gt;
&lt;pre class="literal-block"&gt;
User.objects.filter(birth_date &amp;gt; (date …&lt;/pre&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Roman Gladkov</dc:creator><pubDate>Tue, 23 Oct 2018 12:12:00 +0300</pubDate><guid isPermaLink="false">tag:d1ffuz0r.com,2018-10-23:/sqlalchemy-query-manager.html</guid></item><item><title>Python, Erlang, PostgreSQL, Clojure</title><link>https://d1ffuz0r.com/python-erlang-postgresql-clojure.html</link><description>&lt;p&gt;Ealier this year I had a goal to up my knowledge and become an expert in some technical areas. There's a bunch of links I found very interesting&lt;/p&gt;
&lt;div class="section" id="clojure"&gt;
&lt;h2&gt;Clojure&lt;/h2&gt;
&lt;p&gt;&lt;a class="reference external" href="https://www.youtube.com/watch?v=sp2Zv7KFQQ0"&gt;https://www.youtube.com/watch?v=sp2Zv7KFQQ0&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;&lt;a class="reference external" href="https://en.wikibooks.org/wiki/Learning_Clojure"&gt;https://en.wikibooks.org/wiki/Learning_Clojure&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;&lt;a class="reference external" href="http://www.braveclojure.com/clojure-for-the-brave-and-true/"&gt;http://www.braveclojure.com/clojure-for-the-brave-and-true/&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;clojuredocs.org/clojure …&lt;/p&gt;&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Roman Gladkov</dc:creator><pubDate>Sun, 24 Sep 2017 17:17:00 +0300</pubDate><guid isPermaLink="false">tag:d1ffuz0r.com,2017-09-24:/python-erlang-postgresql-clojure.html</guid></item><item><title>PG Bundle - All you need is Postgres</title><link>https://d1ffuz0r.com/pg-bundle-all-you-need-is-postgres.html</link><description>&lt;p&gt;I'm a huge fan of PostgreSQL. It's an open source RDBMS that makes MongoDB obsolete.
But lack of information for new people who are in the beginning of their career makes it hard to get started with PostgreSQL and let MongoDB take that big slice of users.&lt;/p&gt;
&lt;p&gt;I decided to …&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Roman Gladkov</dc:creator><pubDate>Sun, 25 Jun 2017 15:15:00 +0300</pubDate><guid isPermaLink="false">tag:d1ffuz0r.com,2017-06-25:/pg-bundle-all-you-need-is-postgres.html</guid></item><item><title>What it takes to be productive?</title><link>https://d1ffuz0r.com/what-it-takes-to-be-productive.html</link><description>&lt;p&gt;During all your career, while working for an employer or running your own business, you will always have a manager or be managing somebody. I, as a huge fun of productivity, trying to find ways to be as productive as possible and achieve more in shortest period of time. Productivity …&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Roman Gladkov</dc:creator><pubDate>Thu, 08 Dec 2016 23:30:00 +0300</pubDate><guid isPermaLink="false">tag:d1ffuz0r.com,2016-12-08:/what-it-takes-to-be-productive.html</guid></item><item><title>10 things about 2016</title><link>https://d1ffuz0r.com/10-things-about-2016.html</link><description>&lt;p&gt;How I spent this summ^Wyear.&lt;/p&gt;
&lt;ol class="arabic"&gt;
&lt;li&gt;&lt;p class="first"&gt;I started this year completely burned out by working 16+ hours/day, combining daily work and a side project.&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;&lt;p class="first"&gt;Visited Portland and San Diego for the first time with friends, 12 hours of driving San Diego-Oakland was fun but very tiring - would never do …&lt;/p&gt;&lt;/li&gt;&lt;/ol&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Roman Gladkov</dc:creator><pubDate>Thu, 01 Dec 2016 23:30:00 +0300</pubDate><guid isPermaLink="false">tag:d1ffuz0r.com,2016-12-01:/10-things-about-2016.html</guid></item><item><title>AIPromo - From Idea to Product</title><link>https://d1ffuz0r.com/aipromo-from-idea-to-product.html</link><description>&lt;p&gt;Automation is great, it makes your life easy and freeing a lot of time.&lt;/p&gt;
&lt;p&gt;AIPromo (&lt;a class="reference external" href="https://aipromo.online"&gt;https://aipromo.online&lt;/a&gt;) is a free AI powered content management tool. AIPromo's goal is to increase your personal brand and online presence on LinkedIn without doing anything, aka personal branding for lazy.&lt;/p&gt;
&lt;p&gt;This project started …&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Roman Gladkov</dc:creator><pubDate>Tue, 25 Oct 2016 23:30:00 +0300</pubDate><guid isPermaLink="false">tag:d1ffuz0r.com,2016-10-25:/aipromo-from-idea-to-product.html</guid></item><item><title>2014-2015</title><link>https://d1ffuz0r.com/2014-2015.html</link><description>&lt;div class="section" id="summary"&gt;
&lt;h2&gt;2014 Summary&lt;/h2&gt;
&lt;ul class="simple"&gt;
&lt;li&gt;1st year in the USA. Life here feels simple and sometimes boring&lt;/li&gt;
&lt;li&gt;Silicon Valley is a cold place&lt;/li&gt;
&lt;li&gt;Marketing is hard&lt;/li&gt;
&lt;li&gt;Sales is hard&lt;/li&gt;
&lt;li&gt;Mustang is awesome&lt;/li&gt;
&lt;li&gt;Walking to the work is better than driving. Daily driving is boring&lt;/li&gt;
&lt;li&gt;Work in the office &amp;gt; Remote work&lt;/li&gt;
&lt;li&gt;Los Angeles is …&lt;/li&gt;&lt;/ul&gt;&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Roman Gladkov</dc:creator><pubDate>Thu, 01 Jan 2015 13:30:00 +0300</pubDate><guid isPermaLink="false">tag:d1ffuz0r.com,2015-01-01:/2014-2015.html</guid></item><item><title>PyCon US 2014</title><link>https://d1ffuz0r.com/pycon-us-2014.html</link><description>&lt;p&gt;PyCon is over. This year the conference was at Montreal, Canada. The country looks pretty much as Russia from the window of airplane and city is very european. In comparison with PyCons I've visited before it was my biggest PyCon. I was impressed with how many people do use iPython …&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Roman Gladkov</dc:creator><pubDate>Tue, 29 Apr 2014 15:33:00 +0400</pubDate><guid isPermaLink="false">tag:d1ffuz0r.com,2014-04-29:/pycon-us-2014.html</guid><category>python</category><category>pycon</category><category>canada</category></item><item><title>crashkeeper</title><link>https://d1ffuz0r.com/crashkeeper.html</link><description>&lt;p&gt;&lt;a class="reference external" href="http://crashkeeper.com"&gt;CrashKeeper&lt;/a&gt; is a web service for collecting exceptions, logs and other things happened in your application.&lt;/p&gt;
&lt;p&gt;The main point of the CrashKeeper - deep understanding of your information, such like logs with custom user-based parsers for their logs, better understanding language dependents (&lt;strong&gt;WOW ERLANG, SUCH CLOJURE&lt;/strong&gt;) exceptions and messages (hello Sentry …&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Roman Gladkov</dc:creator><pubDate>Fri, 21 Feb 2014 22:35:00 +0400</pubDate><guid isPermaLink="false">tag:d1ffuz0r.com,2014-02-21:/crashkeeper.html</guid><category>erlang</category><category>projects</category><category>dev</category></item><item><title>Self-taught</title><link>https://d1ffuz0r.com/self-taught.html</link><description>&lt;p&gt;I don't believe that stars on stackoverflow could help you get a job, they can give you attention of recruiters, not more. Same and Github.
Before a large count of the interviews in soon, now is a good time to refresh knowledge.
My check list to read&amp;amp;watch&amp;amp;learn for …&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Roman Gladkov</dc:creator><pubDate>Wed, 11 Sep 2013 00:30:00 +0400</pubDate><guid isPermaLink="false">tag:d1ffuz0r.com,2013-09-11:/self-taught.html</guid><category>education</category><category>dev</category></item><item><title>Thailand summary. Spring - Autumn 2013</title><link>https://d1ffuz0r.com/thailand-summary-spring-autumn-2013.html</link><description>&lt;p&gt;Let's try, it is my first big post after starting learning English in classes with the native speaker and using in real life.&lt;/p&gt;
&lt;p&gt;My visit to Thailand comes to the end. Instead of one year that I wanted to live here, I spent only 5 months, even so I got …&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Roman Gladkov</dc:creator><pubDate>Tue, 10 Sep 2013 23:01:00 +0400</pubDate><guid isPermaLink="false">tag:d1ffuz0r.com,2013-09-10:/thailand-summary-spring-autumn-2013.html</guid><category>Thailand</category><category>life</category></item><item><title>Dash, Python</title><link>https://d1ffuz0r.com/dash-python.html</link><description>&lt;p&gt;Such awesome app, Dash. I heard about it app, but my laziness has not given to try one.
Finally I have tried it recently with &lt;cite&gt;dash-at-point&lt;/cite&gt; mode for Emacs. Easy access to help by one hot-key,
without permanent switching to browser, support of bunch libraries and languages.  But unfortunately Dash …&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Roman Gladkov</dc:creator><pubDate>Wed, 07 Aug 2013 16:03:00 +0400</pubDate><guid isPermaLink="false">tag:d1ffuz0r.com,2013-08-07:/dash-python.html</guid><category>python</category><category>tools</category><category>os x</category></item><item><title>Green Card. California, US</title><link>https://d1ffuz0r.com/green-card-california-us.html</link><description>&lt;p&gt;Before, in fall 2012, I have filled anket for the DV(Green Card) lottery.
And recently I have got a great news, I won the green card. Green Card given me right for living and working at the US,
with the following getting citizenship.
Of course, I can't to lose …&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Roman Gladkov</dc:creator><pubDate>Sat, 11 May 2013 06:32:00 +0400</pubDate><guid isPermaLink="false">tag:d1ffuz0r.com,2013-05-11:/green-card-california-us.html</guid><category>US</category></item><item><title>SQLAlchemy packages</title><link>https://d1ffuz0r.com/sqlalchemy-packages.html</link><description>&lt;p&gt;My collection of SQLAlchemy packages. Descriptions will be in the future&lt;/p&gt;
&lt;p&gt;&lt;a class="reference external" href="https://gist.github.com/d1ffuz0r/5223734"&gt;https://gist.github.com/d1ffuz0r/5223734&lt;/a&gt;&lt;/p&gt;
</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Roman Gladkov</dc:creator><pubDate>Fri, 22 Mar 2013 23:03:00 +0400</pubDate><guid isPermaLink="false">tag:d1ffuz0r.com,2013-03-22:/sqlalchemy-packages.html</guid><category>python</category><category>sqlalchemy</category></item><item><title>Djangocon EU, Pycon SG</title><link>https://d1ffuz0r.com/djangocon-eu-pycon-sg.html</link><description>&lt;p&gt;In this year I'd like to go Djangocon EU, but my unexpected early relocation to Thailand has canceled it.
And little time ago I found first Pycon at Singapur. I'll be there. May be, I'll to do some talk. It is dependents from progress of study at English courses.&lt;/p&gt;
</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Roman Gladkov</dc:creator><pubDate>Sun, 24 Feb 2013 23:17:00 +0400</pubDate><guid isPermaLink="false">tag:d1ffuz0r.com,2013-02-24:/djangocon-eu-pycon-sg.html</guid><category>conferences</category></item><item><title>Next step</title><link>https://d1ffuz0r.com/next-step.html</link><description>&lt;p&gt;So, it's a time for the next step. And one year of my live in Moscow. Perhaps, that is like belated post &amp;quot;what I did in this year (2012)&amp;quot;&lt;/p&gt;
&lt;p&gt;Moscow. City of opportunities.&lt;/p&gt;
&lt;p&gt;Fast life, different event, different people, and the dirt (in spring, in winter, in autumn on street …&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Roman Gladkov</dc:creator><pubDate>Sun, 03 Feb 2013 12:54:00 +0400</pubDate><guid isPermaLink="false">tag:d1ffuz0r.com,2013-02-03:/next-step.html</guid></item><item><title>Python, Ruby, Jobs</title><link>https://d1ffuz0r.com/python-ruby-jobs.html</link><description>&lt;p&gt;I look, for python, usually jobs for senior level programmers to big projects, for the middle and junior programmers very little, for ruby usually that is typical CRUD project for any level skills. Ruby is the new PHP?&lt;/p&gt;
</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Roman Gladkov</dc:creator><pubDate>Sat, 19 Jan 2013 00:32:00 +0400</pubDate><guid isPermaLink="false">tag:d1ffuz0r.com,2013-01-19:/python-ruby-jobs.html</guid></item><item><title>Music and life</title><link>https://d1ffuz0r.com/music-and-life.html</link><description>&lt;p&gt;Each big event or some part of time in my life usually have relate with new music groups in my music collection or gigs. So, latest of this year (relocation to Moscow): Candid8(punk) and Leaftrace (hardcore) with their best gigs. Very interested, what waits me for next year...&lt;/p&gt;
</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Roman Gladkov</dc:creator><pubDate>Mon, 26 Nov 2012 23:09:00 +0400</pubDate><guid isPermaLink="false">tag:d1ffuz0r.com,2012-11-26:/music-and-life.html</guid><category>music</category><category>punk</category></item><item><title>UA Pycon</title><link>https://d1ffuz0r.com/ua-pycon.html</link><description>&lt;p&gt;UA Pycon is done. In that year it be at 20-21 October in Kyiv.
It be my first Pycon and first trip to foreign country. Way to Ukraine 12 hours with cute company.&lt;/p&gt;
&lt;p&gt;After coming to Kyiv we and some small dinner we going to venue.
Near doors we given …&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Roman Gladkov</dc:creator><pubDate>Wed, 31 Oct 2012 15:49:00 +0400</pubDate><guid isPermaLink="false">tag:d1ffuz0r.com,2012-10-31:/ua-pycon.html</guid></item><item><title>Django dev</title><link>https://d1ffuz0r.com/django-dev.html</link><description>&lt;p&gt;Yeah! My &lt;a class="reference external" href="http://github.com/django/django/pull/410"&gt;http://github.com/django/django/pull/410&lt;/a&gt; pull request with new feature now merged into Django and be available at 1.5.1 version&lt;/p&gt;
</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Roman Gladkov</dc:creator><pubDate>Wed, 03 Oct 2012 15:39:00 +0400</pubDate><guid isPermaLink="false">tag:d1ffuz0r.com,2012-10-03:/django-dev.html</guid></item><item><title>English, learning</title><link>https://d1ffuz0r.com/english-learning.html</link><description>&lt;p&gt;When i started learn english I had began it learn main words. After i had learned some words, I has felt needing to know more grammatical rules. Two months of the everyday work had given results for me. Today I have more knowledge of the grammatic rules and I again …&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Roman Gladkov</dc:creator><pubDate>Wed, 12 Sep 2012 22:18:00 +0400</pubDate><guid isPermaLink="false">tag:d1ffuz0r.com,2012-09-12:/english-learning.html</guid></item><item><title>for developers</title><link>https://d1ffuz0r.com/for-developers.html</link><description>&lt;p&gt;Guys why you do not do screenshots your app or library in action? That can to save much time for other developers, they see your example and can chose need him or not your stuff. That important for to web-library or for any plugins.&lt;/p&gt;
</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Roman Gladkov</dc:creator><pubDate>Sat, 08 Sep 2012 16:36:00 +0400</pubDate><guid isPermaLink="false">tag:d1ffuz0r.com,2012-09-08:/for-developers.html</guid></item><item><title>Weekend, Coffeescript, HAML, SASS</title><link>https://d1ffuz0r.com/weekend-coffeescript-haml-sass.html</link><description>&lt;p&gt;It's a time for to improve my English! Let's talk about HAML, SASS, Coffeescript now!&lt;/p&gt;
&lt;p&gt;Long time i like try Coffeescript in action, and in that weekend I did it. It look better than pure JavaScript, as the mixture from Python, Ruby and Haskell of languages. Now write on the …&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Roman Gladkov</dc:creator><pubDate>Sun, 05 Aug 2012 23:54:00 +0400</pubDate><guid isPermaLink="false">tag:d1ffuz0r.com,2012-08-05:/weekend-coffeescript-haml-sass.html</guid><category>haml</category><category>sass</category><category>coffeescript</category></item><item><title>Ubuntu</title><link>https://d1ffuz0r.com/ubuntu.html</link><description>&lt;pre class="literal-block"&gt;
~ sudo apt-get upgrade
Reading package lists... Done
Building dependency tree
Reading state information... Done
The following packages will be upgraded
    libraptor1
...
&lt;/pre&gt;
&lt;p&gt;Ubuntu has some dinosaur??&lt;/p&gt;
</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Roman Gladkov</dc:creator><pubDate>Thu, 28 Jun 2012 11:38:00 +0400</pubDate><guid isPermaLink="false">tag:d1ffuz0r.com,2012-06-28:/ubuntu.html</guid><category>linux</category></item><item><title>Erlang Cheet Sheats</title><link>https://d1ffuz0r.com/erlang-cheet-sheats.html</link><description>&lt;p&gt;List of Erlang cheat sheets:&lt;/p&gt;
&lt;ul class="simple"&gt;
&lt;li&gt;&lt;a class="reference external" href="http://www.cheat-sheets.org/saved-copy/Erlang.CheatSheet(1.0).pdf"&gt;http://www.cheat-sheets.org/saved-copy/Erlang.CheatSheet(1.0).pdf&lt;/a&gt; Erlang CheatSheet&lt;/li&gt;
&lt;li&gt;&lt;a class="reference external" href="http://apoie.org/Erlang%20-%20CheatSheet%20v1.0.pdf"&gt;http://apoie.org/Erlang%20-%20CheatSheet%20v1.0.pdf&lt;/a&gt; Erlang-CheatSheet v1.0&lt;/li&gt;
&lt;li&gt;&lt;a class="reference external" href="http://cheat.errtheblog.com/s/erlang/"&gt;http://cheat.errtheblog.com/s/erlang/&lt;/a&gt; Cheat Erlang&lt;/li&gt;
&lt;li&gt;&lt;a class="reference external" href="http://www.rustyrazorblade.com/2008/11/erlang-records-cheatsheet/"&gt;http://www.rustyrazorblade.com/2008/11/erlang-records-cheatsheet/&lt;/a&gt; erlang-records-cheatsheet&lt;/li&gt;
&lt;li&gt;&lt;a class="reference external" href="http://www.scribd.com/doc/58566321/Erlang-Cheat-Sheet"&gt;http://www.scribd.com/doc …&lt;/a&gt;&lt;/li&gt;&lt;/ul&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Roman Gladkov</dc:creator><pubDate>Tue, 26 Jun 2012 18:19:00 +0400</pubDate><guid isPermaLink="false">tag:d1ffuz0r.com,2012-06-26:/erlang-cheet-sheats.html</guid><category>erlang</category></item><item><title>PyCharm themes</title><link>https://d1ffuz0r.com/pycharm-themes.html</link><description>&lt;p&gt;List of PyCharm themes on GIthub:&lt;/p&gt;
&lt;ul class="simple"&gt;
&lt;li&gt;&lt;a class="reference external" href="https://github.com/d1ffuz0r/pycharm-themes"&gt;https://github.com/d1ffuz0r/pycharm-themes&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a class="reference external" href="https://github.com/darvin/JetBrains-ZenBurn"&gt;https://github.com/darvin/JetBrains-ZenBurn&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a class="reference external" href="https://github.com/sevas/pycharm-color-schemes"&gt;https://github.com/sevas/pycharm-color-schemes&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a class="reference external" href="https://github.com/nek4life/pycharm-twilight"&gt;https://github.com/nek4life/pycharm-twilight&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a class="reference external" href="https://github.com/stantonk/alfalfa"&gt;https://github.com/stantonk/alfalfa&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a class="reference external" href="https://github.com/silkuze/pycharm-django-scheme"&gt;https://github.com/silkuze/pycharm-django-scheme&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a class="reference external" href="https://github.com/SilentSokolov/darkblue-schemes"&gt;https://github.com/SilentSokolov/darkblue-schemes&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a class="reference external" href="https://github.com/mekwall/obsidian-color-scheme"&gt;https://github.com/mekwall/obsidian-color-scheme&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;
</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Roman Gladkov</dc:creator><pubDate>Sun, 10 Jun 2012 03:21:00 +0400</pubDate><guid isPermaLink="false">tag:d1ffuz0r.com,2012-06-10:/pycharm-themes.html</guid><category>pycharm</category><category>color scheme</category></item><item><title>Macbook</title><link>https://d1ffuz0r.com/macbook.html</link><description>&lt;p&gt;I bought Macbook Air 13&amp;quot;, hey chiks where you?&lt;/p&gt;
</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Roman Gladkov</dc:creator><pubDate>Tue, 05 Jun 2012 23:17:00 +0400</pubDate><guid isPermaLink="false">tag:d1ffuz0r.com,2012-06-05:/macbook.html</guid></item><item><title>10 Erlang one liners to impress your friends</title><link>https://d1ffuz0r.com/10-erlang-one-liners-to-impress-your-friends.html</link><description>&lt;div class="section" id="multiple-each-item-in-a-list-by-2"&gt;
&lt;h2&gt;1. Multiple Each Item in a List by 2&lt;/h2&gt;
&lt;pre class="literal-block"&gt;
[X * 2 || X &amp;lt;- lists:seq(1, 11)].
&lt;/pre&gt;
&lt;/div&gt;
&lt;div class="section" id="sum-a-list-of-numbers"&gt;
&lt;h2&gt;2. Sum a List of Numbers&lt;/h2&gt;
&lt;pre class="literal-block"&gt;
lists:sum(lists:seq(1, 1001)).
&lt;/pre&gt;
&lt;/div&gt;
&lt;div class="section" id="verify-if-exists-in-a-string"&gt;
&lt;h2&gt;3.Verify if Exists in a String&lt;/h2&gt;
&lt;pre class="literal-block"&gt;
Wordslist = [&amp;quot;scala&amp;quot;, &amp;quot;akka&amp;quot;, &amp;quot;play framework&amp;quot;, &amp;quot;sbt&amp;quot;, &amp;quot;typesafe&amp;quot;].
Tweet = &amp;quot;This is an example tweet talking about …&lt;/pre&gt;&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Roman Gladkov</dc:creator><pubDate>Mon, 28 May 2012 21:20:00 +0400</pubDate><guid isPermaLink="false">tag:d1ffuz0r.com,2012-05-28:/10-erlang-one-liners-to-impress-your-friends.html</guid><category>erlang</category></item><item><title>Virtualenv, Python, Jenkins links</title><link>https://d1ffuz0r.com/virtualenv-python-jenkins-links.html</link><description>&lt;ul class="simple"&gt;
&lt;li&gt;&lt;a class="reference external" href="http://www.saltycrane.com/blog/2009/05/notes-using-pip-and-virtualenv-django/"&gt;http://www.saltycrane.com/blog/2009/05/notes-using-pip-and-virtualenv-django/&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a class="reference external" href="http://jenkins-ci.org/content/python-love-story-virtualenv-and-hudson"&gt;http://jenkins-ci.org/content/python-love-story-virtualenv-and-hudson&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a class="reference external" href="http://www.stevetrefethen.com/blog/Publishing-Python-unit-test-results-in-Jenkins.aspx"&gt;http://www.stevetrefethen.com/blog/Publishing-Python-unit-test-results-in-Jenkins.aspx&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a class="reference external" href="http://www.alexconrad.org/2011/10/jenkins-and-python.html"&gt;http://www.alexconrad.org/2011/10/jenkins-and-python.html&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;
</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Roman Gladkov</dc:creator><pubDate>Tue, 24 Apr 2012 23:22:00 +0400</pubDate><guid isPermaLink="false">tag:d1ffuz0r.com,2012-04-24:/virtualenv-python-jenkins-links.html</guid><category>tools</category><category>jenkins</category><category>ci</category></item><item><title>Selenium, Python, TinyMCE</title><link>https://d1ffuz0r.com/selenium-python-tinymce.html</link><description>&lt;p&gt;КОСТЫЛИ-КОСТЫЛИКИ&lt;/p&gt;
&lt;p&gt;чтобы записать текст в TinyMCE редактор, нужно найти его фрейм, перейти в него, выполнив js код записать во внутрь элемента текст, перейти обратно в главный фрейм и только тогда продолжать работу&lt;/p&gt;
&lt;div class="highlight"&gt;&lt;pre&gt;&lt;span&gt;&lt;/span&gt;&lt;span class="n"&gt;lead&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt; &lt;span class="n"&gt;body&lt;/span&gt; &lt;span class="o"&gt;=&lt;/span&gt; &lt;span class="n"&gt;browser&lt;/span&gt;&lt;span class="o"&gt;.&lt;/span&gt;&lt;span class="n"&gt;find_elements_by_tag_name&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="s1"&gt;&amp;#39;iframe&amp;#39;&lt;/span&gt;&lt;span class="p"&gt;)&lt;/span&gt;
&lt;span class="n"&gt;browser&lt;/span&gt;&lt;span class="o"&gt;.&lt;/span&gt;&lt;span class="n"&gt;switch_to_frame&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="n"&gt;lead&lt;/span&gt;&lt;span class="p"&gt;)&lt;/span&gt;
&lt;span class="n"&gt;browser&lt;/span&gt;&lt;span class="o"&gt;.&lt;/span&gt;&lt;span class="n"&gt;execute_script&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="s1"&gt;&amp;#39;document.getElementsByTagName(&amp;quot;p&amp;quot;)[0].innerHTML=&amp;quot;test lead&amp;quot;;&amp;#39;&lt;/span&gt;&lt;span class="p"&gt;)&lt;/span&gt;
&lt;span class="n"&gt;browser …&lt;/span&gt;&lt;/pre&gt;&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Roman Gladkov</dc:creator><pubDate>Tue, 10 Apr 2012 16:10:00 +0400</pubDate><guid isPermaLink="false">tag:d1ffuz0r.com,2012-04-10:/selenium-python-tinymce.html</guid><category>selenium</category><category>tools</category><category>javascript</category></item><item><title>Russian Python videos</title><link>https://d1ffuz0r.com/russian-python-videos.html</link><description>&lt;ul class="simple"&gt;
&lt;li&gt;&lt;a class="reference external" href="http://video.yandex.ru/users/it-people-ekb/tag/ekbpy/"&gt;http://video.yandex.ru/users/it-people-ekb/tag/ekbpy/&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a class="reference external" href="http://video.yandex.ru/users/ya-events/view/303/?cauthor=ya-events&amp;amp;cid=33"&gt;http://video.yandex.ru/users/ya-events/view/303/?cauthor=ya-events&amp;amp;cid=33&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a class="reference external" href="http://video.yandex.ru/users/ya-events/view/306/"&gt;http://video.yandex.ru/users/ya-events/view/306/&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a class="reference external" href="http://slav0nic.org.ua/entry/145#more"&gt;http://slav0nic.org.ua/entry/145#more&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a class="reference external" href="http://blip.tv/pycon-ukraine"&gt;http://blip.tv/pycon-ukraine&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a class="reference external" href="http://www.youtube.com/user/ShultaisEducation"&gt;http://www.youtube.com/user/ShultaisEducation&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;
</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Roman Gladkov</dc:creator><pubDate>Sun, 26 Feb 2012 12:01:00 +0400</pubDate><guid isPermaLink="false">tag:d1ffuz0r.com,2012-02-26:/russian-python-videos.html</guid><category>video</category></item><item><title>NEW</title><link>https://d1ffuz0r.com/new.html</link><description>&lt;p&gt;New year. New place. New job. New life&lt;/p&gt;
</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Roman Gladkov</dc:creator><pubDate>Thu, 16 Feb 2012 14:03:00 +0400</pubDate><guid isPermaLink="false">tag:d1ffuz0r.com,2012-02-16:/new.html</guid></item><item><title>Soon</title><link>https://d1ffuz0r.com/soon.html</link><description>&lt;p&gt;5 days left for to relocation to Moscow&lt;/p&gt;
</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Roman Gladkov</dc:creator><pubDate>Sun, 22 Jan 2012 23:30:00 +0400</pubDate><guid isPermaLink="false">tag:d1ffuz0r.com,2012-01-22:/soon.html</guid></item><item><title>Identi.ca</title><link>https://d1ffuz0r.com/identica.html</link><description>&lt;p&gt;I'm registered on &lt;a class="reference external" href="http://identi.ca/d1ffuz0r"&gt;http://identi.ca/d1ffuz0r&lt;/a&gt;, where I will improving my English with native speakers.&lt;/p&gt;
</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Roman Gladkov</dc:creator><pubDate>Sun, 22 Jan 2012 03:18:00 +0400</pubDate><guid isPermaLink="false">tag:d1ffuz0r.com,2012-01-22:/identica.html</guid><category>identi.ca</category></item><item><title>Linux rule</title><link>https://d1ffuz0r.com/linux-rule.html</link><description>&lt;p&gt;Article: &amp;quot;On the console, for complete dummies&amp;quot;&lt;/p&gt;
&lt;p&gt;Chapter I.&lt;/p&gt;
&lt;p&gt;Do not go on the console.&lt;/p&gt;
&lt;p&gt;end&lt;/p&gt;
&lt;p&gt;Contents:&lt;/p&gt;
&lt;p&gt;Chapter I. ........... a&lt;/p&gt;
</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Roman Gladkov</dc:creator><pubDate>Thu, 12 Jan 2012 23:23:00 +0400</pubDate><guid isPermaLink="false">tag:d1ffuz0r.com,2012-01-12:/linux-rule.html</guid><category>linux</category></item><item><title>English</title><link>https://d1ffuz0r.com/english.html</link><description>&lt;p&gt;I started active learning english language. Good luck me :)&lt;/p&gt;
</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Roman Gladkov</dc:creator><pubDate>Wed, 16 Nov 2011 23:09:00 +0400</pubDate><guid isPermaLink="false">tag:d1ffuz0r.com,2011-11-16:/english.html</guid></item><item><title>cheatsheets</title><link>https://d1ffuz0r.com/cheatsheets.html</link><description>&lt;p&gt;cheatsheets для дизайнеров и веб девелоперов
&lt;a class="reference external" href="http://spyrestudios.com/mega-collection-of-cheatsheets-for-designer-developers/"&gt;http://spyrestudios.com/mega-collection-of-cheatsheets-for-designer-developers/&lt;/a&gt;&lt;/p&gt;
</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Roman Gladkov</dc:creator><pubDate>Sun, 02 Oct 2011 08:43:00 +0400</pubDate><guid isPermaLink="false">tag:d1ffuz0r.com,2011-10-02:/cheatsheets.html</guid></item><item><title>тестовый почтовый сервер python</title><link>https://d1ffuz0r.com/testovyi-pochtovyi-server-python.html</link><description>&lt;p&gt;тестовый почтовый сервер&lt;/p&gt;
&lt;pre class="literal-block"&gt;
python -m smtpd -n -c DebuggingServer localhost:1025
&lt;/pre&gt;
</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Roman Gladkov</dc:creator><pubDate>Sat, 01 Oct 2011 02:42:00 +0400</pubDate><guid isPermaLink="false">tag:d1ffuz0r.com,2011-10-01:/testovyi-pochtovyi-server-python.html</guid><category>python</category><category>tools</category></item><item><title>black-bsd mitoll</title><link>https://d1ffuz0r.com/black-bsd-mitoll.html</link><description>&lt;pre class="literal-block"&gt;
&amp;lt;аццкий запил на гитарах&amp;gt;
Демоны!
Демоны!
Демоны!
Демоны упали в  Кору!
&amp;lt;проигрыш, потом повторить еще 2 раза&amp;gt;
Не ставь  Сендмээээйл! Еееее...!
&amp;lt;конец&amp;gt;
&lt;/pre&gt;
</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Roman Gladkov</dc:creator><pubDate>Sat, 01 Oct 2011 02:37:00 +0400</pubDate><guid isPermaLink="false">tag:d1ffuz0r.com,2011-10-01:/black-bsd-mitoll.html</guid></item><item><title>qdbus+gajim</title><link>https://d1ffuz0r.com/qdbusgajim.html</link><description>&lt;p&gt;статус aкка jabber.ru&lt;/p&gt;
&lt;pre class="literal-block"&gt;
qdbus org.gajim.dbus /org/gajim/dbus/RemoteObject org.gajim.dbus.RemoteInterface.get_status_message jabber.ru
&lt;/pre&gt;
&lt;p&gt;количество непрочитаных сообщений&lt;/p&gt;
&lt;pre class="literal-block"&gt;
qdbus org.gajim.dbus /org/gajim/dbus/RemoteObject org.gajim.dbus.RemoteInterface.get_unread_msgs_number
&lt;/pre&gt;
</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Roman Gladkov</dc:creator><pubDate>Sat, 01 Oct 2011 02:37:00 +0400</pubDate><guid isPermaLink="false">tag:d1ffuz0r.com,2011-10-01:/qdbusgajim.html</guid></item><item><title>ports</title><link>https://d1ffuz0r.com/ports.html</link><description>&lt;ul class="simple"&gt;
&lt;li&gt;21 порт =&amp;gt; FTP&lt;/li&gt;
&lt;li&gt;22 порт =&amp;gt; SSH&lt;/li&gt;
&lt;li&gt;23 порт =&amp;gt; Telnet&lt;/li&gt;
&lt;li&gt;25 порт =&amp;gt; Порт SMTP отвечающий за передачу почты&lt;/li&gt;
&lt;li&gt;43 порт =&amp;gt; Порт клиента WHOIS&lt;/li&gt;
&lt;li&gt;53 порт =&amp;gt; Система преобразования имени хоста&lt;/li&gt;
&lt;li&gt;80 порт =&amp;gt; Стандартный порт HTTP Веб севрера&lt;/li&gt;
&lt;li&gt;110 порт =&amp;gt; Порт POP отвечает за приём почты&lt;/li&gt;
&lt;li&gt;995 порт =&amp;gt; Защищённое SSL/TLS соединение POP …&lt;/li&gt;&lt;/ul&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Roman Gladkov</dc:creator><pubDate>Sat, 01 Oct 2011 02:34:00 +0400</pubDate><guid isPermaLink="false">tag:d1ffuz0r.com,2011-10-01:/ports.html</guid></item></channel></rss>