﻿<?xml version="1.0" encoding="utf-8"?>
<rss
  version="2.0">
  <channel>
    <title>Abdusselam Kösecik</title>
    <link>http://www.kosecik.com/</link>
    <description>My thoughts on software and science and what I don't want to forget.</description>
    <lastBuildDate>Tue, 11 Sep 2018 17:54:42 +0300</lastBuildDate>
    <item>
      <guid
        isPermaLink="true">http://www.kosecik.com/posts/welcome-to-blogifier</guid>
      <link>http://www.kosecik.com/posts/welcome-to-blogifier</link>
      <category>welcome</category>
      <category>blog</category>
      <title>Welcome to Blogifier!</title>
      <description>&lt;h2 id="what-is-blogifier"&gt;What is Blogifier&lt;/h2&gt;
&lt;p&gt;Blogifier is simple, beautiful, light-weight open source blog written in .NET Core. This cross-platform, highly extendable and customizable web application brings all the best blogging features in small, portable package.&lt;/p&gt;
&lt;h2 id="system-requirements"&gt;System Requirements&lt;/h2&gt;
&lt;ul&gt;
&lt;li&gt;Windows, Mac or Linux&lt;/li&gt;
&lt;li&gt;ASP.NET Core 3.1&lt;/li&gt;
&lt;li&gt;Visual Studio 2019, VS Code or other code editor (Atom, Sublime etc)&lt;/li&gt;
&lt;li&gt;SQLite by default, MS SQL Server, MySQL and PostreSQL out of the box.&lt;/li&gt;
&lt;/ul&gt;
&lt;h2 id="getting-started"&gt;Getting Started&lt;/h2&gt;
&lt;ol&gt;
&lt;li&gt;Clone or download source code&lt;/li&gt;
&lt;li&gt;Run application in Visual Studio or using your code editor&lt;/li&gt;
&lt;li&gt;Use admin/admin to log in&lt;/li&gt;
&lt;/ol&gt;
&lt;h2 id="demo-site"&gt;Demo site&lt;/h2&gt;
&lt;p&gt;The &lt;a href="http://blogifier.net"&gt;demo site&lt;/a&gt; is a playground to check out Blogifier features. You can write and publish posts, upload files and test application before install. And no worries, it is just a sandbox and will clean itself.&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;&amp;lt;div&amp;gt;&amp;lt;css&amp;gt;&amp;lt;/css&amp;gt;&amp;lt;/div&amp;gt;
&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;&lt;img src="/data/admin/2020/4/admin-dashboard.png" alt="data/admin/2020/4/admin-dashboard.png" /&gt;&lt;/p&gt;
</description>
      <pubDate>Tue, 11 Sep 2018 17:54:42 +0300</pubDate>
      <summary>&lt;p&gt;Blogifier is simple, beautiful, light-weight open source blog written in .NET Core. This cross-platform, highly extendable and customizable web application brings all the best blogging features in small, portable package.&lt;/p&gt;
&lt;h4 id="to-login"&gt;To login:&lt;/h4&gt;
&lt;ul&gt;
&lt;li&gt;User: admin&lt;/li&gt;
&lt;li&gt;Pswd: admin&lt;/li&gt;
&lt;/ul&gt;
</summary>
      <cover>http://www.kosecik.com/data/admin/2020/5/blog.jpg</cover>
    </item>
    <item>
      <guid
        isPermaLink="true">http://www.kosecik.com/posts/markdown-syntax</guid>
      <link>http://www.kosecik.com/posts/markdown-syntax</link>
      <category>markdown</category>
      <title>Markdown Syntax</title>
      <description>&lt;h1 id="h1"&gt;H1&lt;/h1&gt;
&lt;h2 id="h2"&gt;H2&lt;/h2&gt;
&lt;h3 id="h3"&gt;H3&lt;/h3&gt;
&lt;h3 id="bold"&gt;Bold&lt;/h3&gt;
&lt;p&gt;&lt;strong&gt;bold text&lt;/strong&gt;&lt;/p&gt;
&lt;h3 id="italic"&gt;Italic&lt;/h3&gt;
&lt;p&gt;&lt;em&gt;italicized text&lt;/em&gt;&lt;/p&gt;
&lt;h3 id="strikethrough"&gt;Strikethrough&lt;/h3&gt;
&lt;p&gt;&lt;del&gt;The world is flat.&lt;/del&gt;&lt;/p&gt;
&lt;h3 id="link"&gt;Link&lt;/h3&gt;
&lt;p&gt;&lt;a href="https://www.example.com"&gt;link title&lt;/a&gt;&lt;/p&gt;
&lt;h3 id="image"&gt;Image&lt;/h3&gt;
&lt;p&gt;&lt;img src="https://via.placeholder.com/200x100" alt="alt text" /&gt;&lt;/p&gt;
&lt;h3 id="blockquote"&gt;Blockquote&lt;/h3&gt;
&lt;blockquote&gt;
&lt;p&gt;blockquote&lt;/p&gt;
&lt;/blockquote&gt;
&lt;h3 id="ordered-list"&gt;Ordered List&lt;/h3&gt;
&lt;ol&gt;
&lt;li&gt;First item&lt;/li&gt;
&lt;li&gt;Second item&lt;/li&gt;
&lt;li&gt;Third item&lt;/li&gt;
&lt;/ol&gt;
&lt;h3 id="unordered-list"&gt;Unordered List&lt;/h3&gt;
&lt;ul&gt;
&lt;li&gt;First item&lt;/li&gt;
&lt;li&gt;Second item&lt;/li&gt;
&lt;li&gt;Third item&lt;/li&gt;
&lt;/ul&gt;
&lt;h3 id="inline-code"&gt;Inline Code&lt;/h3&gt;
&lt;p&gt;&lt;code&gt;code&lt;/code&gt;&lt;/p&gt;
&lt;h3 id="code-block"&gt;Code Block&lt;/h3&gt;
&lt;pre&gt;&lt;code class="language-csharp"&gt;{
  &amp;quot;firstName&amp;quot;: &amp;quot;John&amp;quot;,
  &amp;quot;lastName&amp;quot;: &amp;quot;Smith&amp;quot;,
  &amp;quot;age&amp;quot;: 25
}
&lt;/code&gt;&lt;/pre&gt;
&lt;h3 id="table"&gt;Table&lt;/h3&gt;
&lt;table&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th&gt;Header One&lt;/th&gt;
&lt;th&gt;Header Two&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;Item One&lt;/td&gt;
&lt;td&gt;Item Two&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Item Three&lt;/td&gt;
&lt;td&gt;Item Four&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;
</description>
      <pubDate>Sun, 22 Mar 2020 22:34:24 +0300</pubDate>
      <summary>&lt;p&gt;Markdown Syntax&lt;/p&gt;
</summary>
      <cover>http://www.kosecik.com/data/admin/2020/5/keyboard.jpg</cover>
    </item>
    <item>
      <guid
        isPermaLink="true">http://www.kosecik.com/posts/blogifier-features</guid>
      <link>http://www.kosecik.com/posts/blogifier-features</link>
      <category>blog</category>
      <category> feature</category>
      <title>Blogifier Features</title>
      <description>&lt;h3 id="user-management"&gt;User Management&lt;/h3&gt;
&lt;p&gt;Blogifier is single-user personal blog application written in ASP.NET Core with Blazor administration panel. It uses standard ASP.NET forms authentication model, when new empty database created it allows to register new user which becomes a blog owner.&lt;/p&gt;
&lt;h3 id="content-management"&gt;Content Management&lt;/h3&gt;
&lt;p&gt;Built-in file upload supports file attachments along with images and videos in &lt;a href="https://github.com/blogifierdotnet/Blogifier/blob/master/docs/VideoAudio.md"&gt;standard HTML5 format&lt;/a&gt;.&lt;/p&gt;
&lt;h3 id="markdown-editor"&gt;Markdown Editor&lt;/h3&gt;
&lt;p&gt;The post editor uses markdown syntax, which many writers prefer over HTML for its simplicity.&lt;/p&gt;
&lt;h3 id="simple-search"&gt;Simple Search&lt;/h3&gt;
&lt;p&gt;There is simple but quick and functional search in the post lists.&lt;/p&gt;
&lt;h3 id="email-and-newsletters"&gt;Email and Newsletters&lt;/h3&gt;
&lt;p&gt;Blogifier uses &lt;a href="https://github.com/blogifierdotnet/Blogifier/blob/master/docs/SendGrid.md"&gt;SendGrid&lt;/a&gt; email service by default, with can be replaced if required. Newsletter can be set up to send notifications to email subscribers when new post is published.&lt;/p&gt;
&lt;h3 id="rss-feed"&gt;RSS Feed&lt;/h3&gt;
&lt;p&gt;RSS Syndication Feed provided so people can subscribe to the blog posts via feed aggregators.&lt;/p&gt;
</description>
      <pubDate>Fri, 26 Oct 2018 17:54:42 +0300</pubDate>
      <summary>&lt;p&gt;List of the main features supported by Blogifier, includes user management, content management, plugin system, markdown editor, simple search and others. This is not the full list and work in progress.&lt;/p&gt;
</summary>
      <cover>http://www.kosecik.com/data/admin/2020/5/work.jpg</cover>
    </item>
  </channel>
</rss>