<?xml version="1.0" encoding="windows-1251"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
	<channel>
		<atom:link href="https://wordplay.rusff.me/export.php?type=rss" rel="self" type="application/rss+xml" />
		<title>infocoding</title>
		<link>https://wordplay.rusff.me/</link>
		<description>infocoding</description>
		<language>ru-ru</language>
		<lastBuildDate>Wed, 13 May 2020 16:44:13 +0300</lastBuildDate>
		<generator>MyBB/mybb.ru</generator>
		<item>
			<title>console commands</title>
			<link>https://wordplay.rusff.me/viewtopic.php?pid=112#p112</link>
			<description>&lt;p&gt;1. Make a db dump:&lt;/p&gt;&lt;div class=&quot;quote-box quote-main&quot;&gt;&lt;blockquote&gt;&lt;p&gt;&lt;span style=&quot;font-size: 18px&quot;&gt;&lt;span style=&quot;font-family: Courier New&quot;&gt;pg_dump -U postgres ntdent &amp;gt; ntdentdump-200513.sql&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&lt;/blockquote&gt;&lt;/div&gt;
						&lt;p&gt;2. Restore a dump into a db:&lt;/p&gt;&lt;div class=&quot;quote-box quote-main&quot;&gt;&lt;blockquote&gt;&lt;p&gt;&lt;span style=&quot;font-size: 18px&quot;&gt;&lt;span style=&quot;font-family: Courier New&quot;&gt;psql -U postgres ntdent &amp;lt; ./defects-and-procedures.sql&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&lt;/blockquote&gt;&lt;/div&gt;</description>
			<author>mybb@mybb.ru (admin)</author>
			<pubDate>Wed, 13 May 2020 16:44:13 +0300</pubDate>
			<guid>https://wordplay.rusff.me/viewtopic.php?pid=112#p112</guid>
		</item>
		<item>
			<title>Hibernate</title>
			<link>https://wordplay.rusff.me/viewtopic.php?pid=110#p110</link>
			<description>&lt;div class=&quot;quote-box quote-main&quot;&gt;&lt;blockquote&gt;&lt;p&gt;&lt;span style=&quot;font-size: 20px&quot;&gt;&lt;span style=&quot;font-family: Courier New&quot;&gt;org.hibernate.hql.internal.QueryExecutionRequestException: Not supported for DML operations [delete from ru.ntdev.businesslogic.entity.CureDefect cd where cd.cure = :cure and cd.tooth = :tooth]; nested exception is java.lang.IllegalStateException: org.hibernate.hql.internal.QueryExecutionRequestException: Not supported for DML operations [delete from ru.ntdev.businesslogic.entity.CureDefect cd where cd.cure = :cure and cd.tooth = :tooth]&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&lt;/blockquote&gt;&lt;/div&gt;
						&lt;p&gt;Причина: возварщала List&amp;lt;T&amp;gt; вместо void в методе репозитория&lt;/p&gt;</description>
			<author>mybb@mybb.ru (admin)</author>
			<pubDate>Fri, 08 May 2020 11:08:28 +0300</pubDate>
			<guid>https://wordplay.rusff.me/viewtopic.php?pid=110#p110</guid>
		</item>
		<item>
			<title>Работа с ORM различных языков и их фреймворков</title>
			<link>https://wordplay.rusff.me/viewtopic.php?pid=108#p108</link>
			<description>&lt;div class=&quot;quote-box quote-main&quot;&gt;&lt;blockquote&gt;&lt;p&gt;&lt;span style=&quot;font-size: 20px&quot;&gt;&lt;strong&gt;&lt;span style=&quot;display: block; text-align: center&quot;&gt;1. Java + Spring&lt;/span&gt;&lt;/strong&gt;&lt;/span&gt;&lt;/p&gt;&lt;/blockquote&gt;&lt;/div&gt;&lt;p&gt;&lt;span style=&quot;display: block; text-align: center&quot;&gt;&lt;span style=&quot;font-style: italic&quot;&gt;(Создаем отдельный репозитория для работы с Userб наследуемся от org.springframework.data.repository.CrudRepository)&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;
						&lt;p&gt;1. Получение всех записей таблицы&lt;/p&gt;&lt;div class=&quot;code-box&quot;&gt;&lt;strong class=&quot;legend&quot;&gt;Код:&lt;/strong&gt;&lt;div class=&quot;blockcode&quot;&gt;&lt;div class=&quot;scrollbox&quot; style=&quot;height: 6em&quot;&gt;&lt;pre&gt;@Query(&amp;quot;select u from User u&amp;quot;)
List&amp;lt;User&amp;gt; readAll();&lt;/pre&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;
						&lt;p&gt;2. Получение одной записи по полю&lt;/p&gt;&lt;div class=&quot;code-box&quot;&gt;&lt;strong class=&quot;legend&quot;&gt;Код:&lt;/strong&gt;&lt;div class=&quot;blockcode&quot;&gt;&lt;div class=&quot;scrollbox&quot; style=&quot;height: 4.5em&quot;&gt;&lt;pre&gt;User getById()&lt;/pre&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;</description>
			<author>mybb@mybb.ru (admin)</author>
			<pubDate>Thu, 09 Apr 2020 14:05:14 +0300</pubDate>
			<guid>https://wordplay.rusff.me/viewtopic.php?pid=108#p108</guid>
		</item>
		<item>
			<title>Интересности</title>
			<link>https://wordplay.rusff.me/viewtopic.php?pid=105#p105</link>
			<description>&lt;div class=&quot;code-box&quot;&gt;&lt;strong class=&quot;legend&quot;&gt;Код:&lt;/strong&gt;&lt;div class=&quot;blockcode&quot;&gt;&lt;div class=&quot;scrollbox&quot; style=&quot;height: 6em&quot;&gt;&lt;pre&gt;List&amp;lt;CureProcedure&amp;gt; _procedures = cure.getProcedures();
Math.toIntExact(_procedures.stream().filter(_p -&amp;gt; !_p.getStatus().equals(CureProcedure.STATUS_DONE)).count()&lt;/pre&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;</description>
			<author>mybb@mybb.ru (admin)</author>
			<pubDate>Tue, 14 Jan 2020 19:45:16 +0300</pubDate>
			<guid>https://wordplay.rusff.me/viewtopic.php?pid=105#p105</guid>
		</item>
		<item>
			<title>commands</title>
			<link>https://wordplay.rusff.me/viewtopic.php?pid=103#p103</link>
			<description>&lt;p&gt;&lt;strong&gt;3/ Работа на уровне документов&lt;/strong&gt;&lt;br /&gt;3.1/ Посмотреть список всех документов в коллекции&lt;/p&gt;&lt;div class=&quot;code-box&quot;&gt;&lt;strong class=&quot;legend&quot;&gt;Код:&lt;/strong&gt;&lt;div class=&quot;blockcode&quot;&gt;&lt;div class=&quot;scrollbox&quot; style=&quot;height: 4.5em&quot;&gt;&lt;pre&gt;db.&amp;lt;collection_name&amp;gt;.find()&lt;/pre&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;
						&lt;p&gt;3.2/ Добавить поле ко всем документам коллекции&lt;/p&gt;&lt;div class=&quot;code-box&quot;&gt;&lt;strong class=&quot;legend&quot;&gt;Код:&lt;/strong&gt;&lt;div class=&quot;blockcode&quot;&gt;&lt;div class=&quot;scrollbox&quot; style=&quot;height: 4.5em&quot;&gt;&lt;pre&gt;db.&amp;lt;collection_name&amp;gt;.update({}, { $set: {&amp;quot;new_field&amp;quot;: &amp;quot;field_value&amp;quot;} }, false, true)&lt;/pre&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;</description>
			<author>mybb@mybb.ru (admin)</author>
			<pubDate>Mon, 02 Dec 2019 13:30:22 +0300</pubDate>
			<guid>https://wordplay.rusff.me/viewtopic.php?pid=103#p103</guid>
		</item>
		<item>
			<title>create desktop launcher for application</title>
			<link>https://wordplay.rusff.me/viewtopic.php?pid=98#p98</link>
			<description>&lt;p&gt;&lt;a href=&quot;https://www.maketecheasier.com/create-desktop-file-linux/&quot; rel=&quot;nofollow&quot; target=&quot;_blank&quot;&gt;https://www.maketecheasier.com/create-d &amp;#8230; ile-linux/&lt;/a&gt;&lt;/p&gt;&lt;hr /&gt;
						&lt;p&gt;launch your text editor and paste the following into the empty text file:&lt;/p&gt;&lt;div class=&quot;code-box&quot;&gt;&lt;strong class=&quot;legend&quot;&gt;Код:&lt;/strong&gt;&lt;div class=&quot;blockcode&quot;&gt;&lt;div class=&quot;scrollbox&quot; style=&quot;height: 15em&quot;&gt;&lt;pre&gt;[Desktop Entry]
Encoding=UTF-8
Version=1.0
Type=Application
Terminal=false
Exec=/path/to/executable
Name=Name of Application
Icon=/path/to/icon&lt;/pre&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;
						&lt;p&gt;Save the file in “~/.local/share/applications” folder as “application-name.desktop”. The “.local” folder is a hidden folder in your Home directory and you will have enable “Show Hidden Files” mode to view it. If you want it to be globally accessible, run the following command in the terminal:&lt;/p&gt;</description>
			<author>mybb@mybb.ru (admin)</author>
			<pubDate>Tue, 13 Aug 2019 11:09:44 +0300</pubDate>
			<guid>https://wordplay.rusff.me/viewtopic.php?pid=98#p98</guid>
		</item>
		<item>
			<title>SQL Server</title>
			<link>https://wordplay.rusff.me/viewtopic.php?pid=97#p97</link>
			<description>&lt;p&gt;Django + MS SQL (worked for me, Linux Mint)&lt;/p&gt;
						&lt;p&gt;&lt;a href=&quot;https://stackoverflow.com/posts/48819311/revisions&quot; rel=&quot;nofollow&quot; target=&quot;_blank&quot;&gt;https://stackoverflow.com/posts/48819311/revisions&lt;/a&gt;&lt;/p&gt;</description>
			<author>mybb@mybb.ru (admin)</author>
			<pubDate>Sun, 28 Apr 2019 11:00:12 +0300</pubDate>
			<guid>https://wordplay.rusff.me/viewtopic.php?pid=97#p97</guid>
		</item>
		<item>
			<title>Odoo</title>
			<link>https://wordplay.rusff.me/viewtopic.php?pid=94#p94</link>
			<description>&lt;p&gt;ir = Information Repository&lt;/p&gt;</description>
			<author>mybb@mybb.ru (admin)</author>
			<pubDate>Thu, 21 Mar 2019 10:14:46 +0300</pubDate>
			<guid>https://wordplay.rusff.me/viewtopic.php?pid=94#p94</guid>
		</item>
		<item>
			<title>commands</title>
			<link>https://wordplay.rusff.me/viewtopic.php?pid=93#p93</link>
			<description>&lt;div class=&quot;code-box&quot;&gt;&lt;strong class=&quot;legend&quot;&gt;Код:&lt;/strong&gt;&lt;div class=&quot;blockcode&quot;&gt;&lt;div class=&quot;scrollbox&quot; style=&quot;height: 4.5em&quot;&gt;&lt;pre&gt;desc mysql.user;&lt;/pre&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class=&quot;code-box&quot;&gt;&lt;strong class=&quot;legend&quot;&gt;Код:&lt;/strong&gt;&lt;div class=&quot;blockcode&quot;&gt;&lt;div class=&quot;scrollbox&quot; style=&quot;height: 7.5em&quot;&gt;&lt;pre&gt;show datatables;
create database test;
use database;&lt;/pre&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class=&quot;code-box&quot;&gt;&lt;strong class=&quot;legend&quot;&gt;Код:&lt;/strong&gt;&lt;div class=&quot;blockcode&quot;&gt;&lt;div class=&quot;scrollbox&quot; style=&quot;height: 4.5em&quot;&gt;&lt;pre&gt;select host, user from mysql.user;&lt;/pre&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;</description>
			<author>mybb@mybb.ru (admin)</author>
			<pubDate>Tue, 19 Mar 2019 10:37:17 +0300</pubDate>
			<guid>https://wordplay.rusff.me/viewtopic.php?pid=93#p93</guid>
		</item>
		<item>
			<title>openssh-server</title>
			<link>https://wordplay.rusff.me/viewtopic.php?pid=91#p91</link>
			<description>&lt;p&gt;&lt;a href=&quot;https://ubuntuforums.org/showthread.php?t=1037603&quot; rel=&quot;nofollow&quot; target=&quot;_blank&quot;&gt;https://ubuntuforums.org/showthread.php?t=1037603&lt;/a&gt;&lt;/p&gt;
						&lt;p&gt;&lt;span style=&quot;color: red&quot;&gt;&lt;strong&gt;error:&lt;/strong&gt;&lt;/span&gt;&lt;/p&gt;&lt;div class=&quot;quote-box quote-main&quot;&gt;&lt;blockquote&gt;&lt;p&gt;invoke-rc.d: initscript ssh, action &amp;quot;restart&amp;quot; failed.&lt;br /&gt;&amp;lt; ... &amp;gt;&lt;br /&gt;dpkg: dependency problems prevent configuration of ssh:&lt;br /&gt; ssh depends on openssh-server (&amp;gt;= 1:7.6p1-4ubuntu0.3); however:&lt;br /&gt;&amp;#160; Package openssh-server is not configured yet.&lt;/p&gt;
						&lt;p&gt;dpkg: error processing package ssh (--configure):&lt;br /&gt; dependency problems - leaving unconfigured&lt;br /&gt;No apport report written because the error message indicates its a followup error from a previous failure.&lt;br /&gt;&amp;#160; &amp;#160; &amp;#160; &amp;#160; &amp;#160; &amp;#160; &amp;#160; &amp;#160; &amp;#160; &amp;#160; &amp;#160; &amp;#160; &amp;#160; &amp;#160; &amp;#160;Errors were encountered while processing:&lt;br /&gt; openssh-server&lt;br /&gt; ssh&lt;br /&gt;E: Sub-process /usr/bin/dpkg returned an error code (1)&lt;/p&gt;&lt;/blockquote&gt;&lt;/div&gt;
						&lt;p&gt;&lt;span style=&quot;color: lime&quot;&gt;&lt;strong&gt;solve:&lt;/strong&gt;&lt;/span&gt;&lt;/p&gt;&lt;div class=&quot;code-box&quot;&gt;&lt;strong class=&quot;legend&quot;&gt;Код:&lt;/strong&gt;&lt;div class=&quot;blockcode&quot;&gt;&lt;div class=&quot;scrollbox&quot; style=&quot;height: 6em&quot;&gt;&lt;pre&gt;sudo apt-get --purge remove openssh-server
sudo apt-get install openssh-server&lt;/pre&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;
						&lt;p&gt;If that dint solve your problem try to get rid of the /etc/sshd_config file&lt;/p&gt;</description>
			<author>mybb@mybb.ru (admin)</author>
			<pubDate>Tue, 19 Mar 2019 10:18:31 +0300</pubDate>
			<guid>https://wordplay.rusff.me/viewtopic.php?pid=91#p91</guid>
		</item>
		<item>
			<title>sql queries</title>
			<link>https://wordplay.rusff.me/viewtopic.php?pid=84#p84</link>
			<description>&lt;div class=&quot;code-box&quot;&gt;&lt;strong class=&quot;legend&quot;&gt;Код:&lt;/strong&gt;&lt;div class=&quot;blockcode&quot;&gt;&lt;div class=&quot;scrollbox&quot; style=&quot;height: 7.5em&quot;&gt;&lt;pre&gt;
UPDATE TABLE &amp;lt;table_name&amp;gt; SET &amp;lt;key1&amp;gt;=&amp;lt;val1&amp;gt;, &amp;lt;key2&amp;gt;=&amp;lt;val2&amp;gt; WHERE &amp;lt;condition&amp;gt;;
&lt;/pre&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;</description>
			<author>mybb@mybb.ru (admin)</author>
			<pubDate>Wed, 13 Mar 2019 11:24:40 +0300</pubDate>
			<guid>https://wordplay.rusff.me/viewtopic.php?pid=84#p84</guid>
		</item>
		<item>
			<title>Css Grid</title>
			<link>https://wordplay.rusff.me/viewtopic.php?pid=83#p83</link>
			<description>&lt;div class=&quot;quote-box quote-main&quot;&gt;&lt;blockquote&gt;&lt;p&gt;&lt;span style=&quot;font-size: 16px&quot;&gt;&lt;span style=&quot;font-family: Courier New&quot;&gt;grid-area: grid-row-start / grid-column-start / grid-row-end / grid-column-end&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&lt;/blockquote&gt;&lt;/div&gt;&lt;p&gt;&amp;lt;integer&amp;gt; | span &amp;lt;integer&amp;gt;&lt;/p&gt;&lt;div class=&quot;quote-box quote-main&quot;&gt;&lt;blockquote&gt;&lt;p&gt;&lt;span style=&quot;font-size: 16px&quot;&gt;&lt;span style=&quot;font-family: Courier New&quot;&gt;order: &amp;lt;integer&amp;gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&lt;/blockquote&gt;&lt;/div&gt;</description>
			<author>mybb@mybb.ru (admin)</author>
			<pubDate>Sat, 02 Mar 2019 16:54:55 +0300</pubDate>
			<guid>https://wordplay.rusff.me/viewtopic.php?pid=83#p83</guid>
		</item>
		<item>
			<title>Visual Studio Code</title>
			<link>https://wordplay.rusff.me/viewtopic.php?pid=81#p81</link>
			<description>&lt;p&gt;Полезные расширения:&lt;br /&gt;&lt;strong&gt;&lt;br /&gt;1. git lense&lt;br /&gt;2. POWER MODE!!!!!!!&lt;br /&gt;3. &lt;/strong&gt;&lt;/p&gt;</description>
			<author>mybb@mybb.ru (admin)</author>
			<pubDate>Fri, 22 Feb 2019 10:25:17 +0300</pubDate>
			<guid>https://wordplay.rusff.me/viewtopic.php?pid=81#p81</guid>
		</item>
		<item>
			<title>zsh, oh-my-zsh</title>
			<link>https://wordplay.rusff.me/viewtopic.php?pid=77#p77</link>
			<description>&lt;p&gt;zsh-themes:&lt;/p&gt;
						&lt;p&gt;1. &lt;strong&gt;bureau&lt;/strong&gt;&lt;/p&gt;</description>
			<author>mybb@mybb.ru (admin)</author>
			<pubDate>Thu, 21 Feb 2019 09:58:17 +0300</pubDate>
			<guid>https://wordplay.rusff.me/viewtopic.php?pid=77#p77</guid>
		</item>
		<item>
			<title>default designs</title>
			<link>https://wordplay.rusff.me/viewtopic.php?pid=71#p71</link>
			<description>&lt;p&gt;&lt;strong&gt;Class DarkBlue&lt;/strong&gt;&lt;/p&gt;
						&lt;p&gt;&lt;a href=&quot;http://uploads.ru/nvIwT.png&quot; rel=&quot;nofollow&quot; target=&quot;_blank&quot;&gt;&lt;img class=&quot;postimg&quot; loading=&quot;lazy&quot; src=&quot;https://s7.uploads.ru/t/nvIwT.png&quot; alt=&quot;http://s7.uploads.ru/t/nvIwT.png&quot; /&gt;&lt;/a&gt;&lt;/p&gt;</description>
			<author>mybb@mybb.ru (admin)</author>
			<pubDate>Thu, 14 Feb 2019 10:46:53 +0300</pubDate>
			<guid>https://wordplay.rusff.me/viewtopic.php?pid=71#p71</guid>
		</item>
		<item>
			<title>Commits phrases</title>
			<link>https://wordplay.rusff.me/viewtopic.php?pid=67#p67</link>
			<description>&lt;p&gt;Исправить — fix&lt;br /&gt;Извлечь - retrieve | &lt;br /&gt;Применить - apply&lt;/p&gt;
						&lt;p&gt;Разрешить — &lt;br /&gt;Запретить — disable, forbid&lt;br /&gt;Доступ — access&lt;/p&gt;</description>
			<author>mybb@mybb.ru (admin)</author>
			<pubDate>Fri, 18 Jan 2019 09:14:09 +0300</pubDate>
			<guid>https://wordplay.rusff.me/viewtopic.php?pid=67#p67</guid>
		</item>
		<item>
			<title>commandes</title>
			<link>https://wordplay.rusff.me/viewtopic.php?pid=65#p65</link>
			<description>&lt;p&gt;delete local branch:&lt;br /&gt;&lt;strong&gt;&lt;span style=&quot;color: red&quot;&gt;$&lt;/span&gt; git branch -d &amp;lt;branch_name&amp;gt;&lt;/strong&gt;&lt;/p&gt;
						&lt;p&gt;delete remote branch:&lt;br /&gt;&lt;strong&gt;&lt;span style=&quot;color: red&quot;&gt;$&lt;/span&gt; git push &amp;lt;remote_name&amp;gt; --delete &amp;lt;branch_name&amp;gt;&lt;/strong&gt;&lt;/p&gt;</description>
			<author>mybb@mybb.ru (admin)</author>
			<pubDate>Sat, 22 Dec 2018 12:11:31 +0300</pubDate>
			<guid>https://wordplay.rusff.me/viewtopic.php?pid=65#p65</guid>
		</item>
		<item>
			<title>Докер</title>
			<link>https://wordplay.rusff.me/viewtopic.php?pid=63#p63</link>
			<description>&lt;p&gt;Запуск:&lt;/p&gt;
						&lt;p&gt;1. sudo docker-compose up&lt;br /&gt;2. sudo docker-compose exec samozdev bash&lt;br /&gt;2.1. C_FORCE_ROOT=1 python manage.py celery worker&lt;/p&gt;</description>
			<author>mybb@mybb.ru (admin)</author>
			<pubDate>Thu, 20 Dec 2018 09:17:29 +0300</pubDate>
			<guid>https://wordplay.rusff.me/viewtopic.php?pid=63#p63</guid>
		</item>
		<item>
			<title>sqlite3</title>
			<link>https://wordplay.rusff.me/viewtopic.php?pid=40#p40</link>
			<description>&lt;p&gt;1) Подключиться к базе:&lt;/p&gt;
						&lt;p&gt;sqlite3 &amp;lt;path/to/db&amp;gt;&lt;/p&gt;
						&lt;p&gt;2) Список таблиц:&lt;/p&gt;
						&lt;p&gt;.tables&lt;/p&gt;</description>
			<author>mybb@mybb.ru (admin)</author>
			<pubDate>Sat, 22 Sep 2018 21:31:37 +0300</pubDate>
			<guid>https://wordplay.rusff.me/viewtopic.php?pid=40#p40</guid>
		</item>
		<item>
			<title>Цвета</title>
			<link>https://wordplay.rusff.me/viewtopic.php?pid=39#p39</link>
			<description>&lt;p&gt;Подбор сочетаний (&lt;a href=&quot;https://coolors.co/&quot; rel=&quot;nofollow&quot; target=&quot;_blank&quot;&gt;https://coolors.co/&lt;/a&gt;)&lt;/p&gt;</description>
			<author>mybb@mybb.ru (admin)</author>
			<pubDate>Sun, 09 Sep 2018 22:57:25 +0300</pubDate>
			<guid>https://wordplay.rusff.me/viewtopic.php?pid=39#p39</guid>
		</item>
		<item>
			<title>Шрифты</title>
			<link>https://wordplay.rusff.me/viewtopic.php?pid=38#p38</link>
			<description>&lt;p&gt;1. Noto Sans (&lt;a href=&quot;https://fonts.google.com/specimen/Noto+Sans&quot; rel=&quot;nofollow&quot; target=&quot;_blank&quot;&gt;https://fonts.google.com/specimen/Noto+Sans&lt;/a&gt;) + CYRRILIC&lt;br /&gt;2. Metropolis (&lt;a href=&quot;https://www.fontsquirrel.com/fonts/metropolis&quot; rel=&quot;nofollow&quot; target=&quot;_blank&quot;&gt;https://www.fontsquirrel.com/fonts/metropolis&lt;/a&gt;)&lt;/p&gt;</description>
			<author>mybb@mybb.ru (admin)</author>
			<pubDate>Sun, 09 Sep 2018 22:56:10 +0300</pubDate>
			<guid>https://wordplay.rusff.me/viewtopic.php?pid=38#p38</guid>
		</item>
		<item>
			<title>Синтаксис</title>
			<link>https://wordplay.rusff.me/viewtopic.php?pid=37#p37</link>
			<description>&lt;p&gt;1. Вход в интерактивную оболочку postgresql&lt;/p&gt;&lt;div class=&quot;quote-box quote-main&quot;&gt;&lt;blockquote&gt;&lt;p&gt;&lt;span style=&quot;font-size: 20px&quot;&gt;&lt;span style=&quot;font-family: Courier New&quot;&gt;$ psql --username=postgres&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&lt;/blockquote&gt;&lt;/div&gt;
						&lt;p&gt;2. Создание базы данных&lt;/p&gt;&lt;div class=&quot;quote-box quote-main&quot;&gt;&lt;blockquote&gt;&lt;p&gt;&lt;span style=&quot;font-size: 20px&quot;&gt;&lt;span style=&quot;font-family: Courier New&quot;&gt;$ psql --username=postgres&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&lt;/blockquote&gt;&lt;/div&gt;</description>
			<author>mybb@mybb.ru (admin)</author>
			<pubDate>Thu, 30 Aug 2018 21:38:16 +0300</pubDate>
			<guid>https://wordplay.rusff.me/viewtopic.php?pid=37#p37</guid>
		</item>
		<item>
			<title>imaplib</title>
			<link>https://wordplay.rusff.me/viewtopic.php?pid=36#p36</link>
			<description>&lt;p&gt;Команды возвращают кортеж: (результат, данные)&lt;/p&gt;
						&lt;p&gt;mail.select(&#039;inbox&#039;)&lt;br /&gt;=&amp;gt; (&#039;OK&#039;, b&#039;6&#039;)&lt;/p&gt;
						&lt;p&gt;mail.search(charset=None, &#039;ALL&#039;)&lt;br /&gt;=&amp;gt; (&#039;OK&#039;, b&#039;1 2 3 4 5 6&#039;)&lt;/p&gt;
						&lt;p&gt;mail.uid(&#039;search&#039;, charset=None, &#039;ALL&#039;)&lt;br /&gt;=&amp;gt; (&#039;OK&#039;, b&#039;1 56 78 345 567 900&#039;)&lt;/p&gt;</description>
			<author>mybb@mybb.ru (admin)</author>
			<pubDate>Mon, 27 Aug 2018 11:38:13 +0300</pubDate>
			<guid>https://wordplay.rusff.me/viewtopic.php?pid=36#p36</guid>
		</item>
		<item>
			<title>Настройка Webpack</title>
			<link>https://wordplay.rusff.me/viewtopic.php?pid=33#p33</link>
			<description>&lt;p&gt;Структура:&lt;/p&gt;&lt;div class=&quot;quote-box quote-main&quot;&gt;&lt;blockquote&gt;&lt;p&gt;&lt;span style=&quot;font-size: 18px&quot;&gt;&lt;/p&gt;
						&lt;p&gt;&lt;span style=&quot;font-family: Courier New&quot;&gt;&lt;span style=&quot;color: green&quot;&gt;src/&lt;/span&gt;&lt;br /&gt;&lt;span style=&quot;color: silver&quot;&gt;——&lt;/span&gt; &lt;span style=&quot;color: green&quot;&gt;js/&lt;/span&gt;&lt;br /&gt;&lt;span style=&quot;color: silver&quot;&gt;————&lt;/span&gt; &lt;span style=&quot;color: maroon&quot;&gt;__init__.js&lt;/span&gt;&lt;br /&gt;&lt;span style=&quot;color: silver&quot;&gt;——&lt;/span&gt; &lt;span style=&quot;color: green&quot;&gt;sass/&lt;/span&gt;&lt;br /&gt;&lt;span style=&quot;color: silver&quot;&gt;————&lt;/span&gt; &lt;span style=&quot;color: green&quot;&gt;modules/&lt;/span&gt;&lt;br /&gt;&lt;span style=&quot;color: silver&quot;&gt;——————&lt;/span&gt; __init__.sass&lt;br /&gt;&lt;span style=&quot;color: silver&quot;&gt;— — — &lt;/span&gt;module1.sass&lt;br /&gt;&lt;span style=&quot;color: silver&quot;&gt;— — — &lt;/span&gt;module2.sass&lt;br /&gt;&lt;span style=&quot;color: silver&quot;&gt;— — — &lt;/span&gt;module3.sass&lt;br /&gt;&lt;span style=&quot;color: silver&quot;&gt;— — &lt;/span&gt;&lt;span style=&quot;color: green&quot;&gt;parts/&lt;/span&gt;&lt;br /&gt;&lt;span style=&quot;color: silver&quot;&gt;— — — &lt;/span&gt;__init__.sass&lt;br /&gt;&lt;span style=&quot;color: silver&quot;&gt;— — — &lt;/span&gt;part1.sass&lt;br /&gt;&lt;span style=&quot;color: silver&quot;&gt;— — — &lt;/span&gt;part2.sass&lt;br /&gt;&lt;span style=&quot;color: silver&quot;&gt;— — &lt;/span&gt;__init__.sass&lt;br /&gt;&lt;span style=&quot;color: silver&quot;&gt;— — &lt;/span&gt;theme.sass&lt;br /&gt;&lt;span style=&quot;color: silver&quot;&gt;— — &lt;/span&gt;supporting.sass&lt;/span&gt;&lt;br /&gt;&lt;span style=&quot;color: silver&quot;&gt;— &lt;/span&gt;&lt;span style=&quot;color: maroon&quot;&gt;entry.js&lt;/span&gt;&lt;br /&gt;&lt;span style=&quot;color: silver&quot;&gt;— &lt;/span&gt;&lt;span style=&quot;color: maroon&quot;&gt;index.html&lt;/span&gt;&lt;/p&gt;
						&lt;p&gt;&lt;/span&gt;&lt;/p&gt;&lt;/blockquote&gt;&lt;/div&gt;</description>
			<author>mybb@mybb.ru (admin)</author>
			<pubDate>Sat, 25 Aug 2018 22:05:13 +0300</pubDate>
			<guid>https://wordplay.rusff.me/viewtopic.php?pid=33#p33</guid>
		</item>
		<item>
			<title>Структура HTML-страницы</title>
			<link>https://wordplay.rusff.me/viewtopic.php?pid=30#p30</link>
			<description>&lt;p&gt;&lt;span style=&quot;font-size: 18px&quot;&gt;&lt;strong&gt;&lt;em class=&quot;bbuline&quot;&gt;Модули (переиспользуемые элементы структуры):&lt;/em&gt;&lt;/strong&gt;&lt;/span&gt;&lt;/p&gt;
						&lt;p&gt;1.&lt;/p&gt;</description>
			<author>mybb@mybb.ru (admin)</author>
			<pubDate>Thu, 23 Aug 2018 13:55:42 +0300</pubDate>
			<guid>https://wordplay.rusff.me/viewtopic.php?pid=30#p30</guid>
		</item>
	</channel>
</rss>
