<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title>DEV Community: Imperator</title>
    <description>The latest articles on DEV Community by Imperator (@megaimperator).</description>
    <link>https://dev.to/megaimperator</link>
    <image>
      <url>https://media2.dev.to/dynamic/image/width=90,height=90,fit=cover,gravity=auto,format=auto/https:%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F1172317%2F97a02519-bb16-4554-a34b-dbfdee719bba.png</url>
      <title>DEV Community: Imperator</title>
      <link>https://dev.to/megaimperator</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/megaimperator"/>
    <language>en</language>
    <item>
      <title>Excellent less-known .NET libraries</title>
      <dc:creator>Imperator</dc:creator>
      <pubDate>Sun, 01 Oct 2023 12:16:49 +0000</pubDate>
      <link>https://dev.to/megaimperator/excellent-less-known-net-libraries-a76</link>
      <guid>https://dev.to/megaimperator/excellent-less-known-net-libraries-a76</guid>
      <description>&lt;p&gt;With .Net platform being faster and richer with every release, there are still things missing as they are limiting themselves to really necessary functionality.&lt;br&gt;
Beside convenience, I like performance and authors of these libraries are performance junkies themselves so they made sure that they are the fastest...&lt;/p&gt;

&lt;p&gt;&lt;a href="https://html-agility-pack.net/"&gt;HTML Agility Pack&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Once you learn XPATH (query language for XML/HTML), there is no turning back. Query into HTML with a help of this library and accomplish anything in few lines of code.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://dotnet.github.io/dotNext/"&gt;DotNext&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Useful and rich low-level additions to .Net system libraries. Must have if you are creating any sort of infrastructure code.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://nsec.rocks/"&gt;NSec&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Modern cryptography primitives (hashes, encryption, key exchange, signatures) - wrapper around LibSodium C implemenation - really fast!&lt;/p&gt;

&lt;p&gt;&lt;a href="https://github.com/MessagePack-CSharp/MessagePack-CSharp"&gt;MessagePack-CSharp&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;If you need binary serialization to well-known format (message pack), use this very fast library. Beats JSON in time and space consumption.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://github.com/benaadams/Ben.Http"&gt;Ben.Http&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;If you need minimal web server, this is minimal wrapper around Kestrel, much faster than ASP.Net Core.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://github.com/terrafx/terrafx.interop.mimalloc"&gt;TerraFX.MimAlloc&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Fastest unmanaged memory allocator I have found.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://github.com/atifaziz/NCrontab"&gt;NCrontab&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Crontab scheduler expression handling library.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://github.com/VSadov/NonBlocking"&gt;Nonblocking dictionary&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Concurrent dictionary which doesn't block threads - faster than one which comes with framework, especially in concurrent work.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://spectreconsole.net/"&gt;Spectre.Console&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Excellent toolkit for writing command-line applications plus nice GUI elements for these.&lt;/p&gt;

&lt;p&gt;Some gurus with lot of performant low-level libraries (dig inside for more gems):&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;&lt;a href="https://github.com/xoofx"&gt;XOOFX&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://github.com/Cysharp"&gt;Cysharp&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://github.com/neuecc"&gt;Neuecc&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;I have to mention awesome lists for .Net Core, they are good starting point for research, but I have found much more in GitHub.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://github.com/quozd/awesome-dotnet"&gt;https://github.com/quozd/awesome-dotnet&lt;/a&gt;&lt;br&gt;
&lt;a href="https://github.com/thangchung/awesome-dotnet-core"&gt;https://github.com/thangchung/awesome-dotnet-core&lt;/a&gt;&lt;/p&gt;

</description>
      <category>programming</category>
      <category>backend</category>
      <category>dotnet</category>
      <category>csharp</category>
    </item>
    <item>
      <title>Tiny online developer tools</title>
      <dc:creator>Imperator</dc:creator>
      <pubDate>Thu, 28 Sep 2023 11:52:12 +0000</pubDate>
      <link>https://dev.to/megaimperator/small-online-developer-tools-i1a</link>
      <guid>https://dev.to/megaimperator/small-online-developer-tools-i1a</guid>
      <description>&lt;p&gt;I regularly use many online tools to help software development so this is a list of these. Not being part of development tools, I have to hop on web versions of these.&lt;/p&gt;

&lt;h2&gt;
  
  
  Regular expressions
&lt;/h2&gt;

&lt;p&gt;These tools help to create debug and understand various regular expressions which you will create. Also contain useful examples.&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;&lt;p&gt;&lt;a href="https://regex101.com/"&gt;https://regex101.com/&lt;/a&gt;&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;&lt;a href="https://regexr.com/"&gt;https://regexr.com/&lt;/a&gt;&lt;/p&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  CRON schedule expressions
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;&lt;p&gt;&lt;a href="https://crontab.guru/"&gt;https://crontab.guru/&lt;/a&gt;&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;&lt;a href="https://www.freeformatter.com/cron-expression-generator-quartz.html"&gt;https://www.freeformatter.com/cron-expression-generator-quartz.html&lt;/a&gt;&lt;/p&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  Sites with lot of tools
&lt;/h2&gt;

&lt;p&gt;Converters, validators, beautifiers, minifiers, cryptography, generators, editors, viewers (this will give you idea what is there):&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;&lt;p&gt;&lt;a href="https://www.utilities-online.info/"&gt;https://www.utilities-online.info/&lt;/a&gt;&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;&lt;a href="https://www.freeformatter.com/"&gt;https://www.freeformatter.com/&lt;/a&gt;&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;&lt;a href="https://appdevtools.com/"&gt;https://appdevtools.com/&lt;/a&gt;&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;&lt;a href="https://www.lambdatest.com/learning-hub/free-online-developers-tools"&gt;https://www.lambdatest.com/learning-hub/free-online-developers-tools&lt;/a&gt;&lt;/p&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  HTTP Request bin
&lt;/h2&gt;

&lt;p&gt;If you need to test your HTTP requests, you can send them to free pages for debugging.&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;&lt;a href="https://public.requestbin.com/"&gt;https://public.requestbin.com/&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  OpenAPI tools
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;&lt;a href="https://openapi.tools/"&gt;https://openapi.tools/&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;

</description>
      <category>programming</category>
      <category>productivity</category>
      <category>developer</category>
      <category>softwaredevelopment</category>
    </item>
  </channel>
</rss>
