C# library ShellProgressBar

In my career I’ve made a lot of console applications. Purposes of that application was varied but some of them have one common thing: steps/stages. I’ve found out nice library which helps you display steps progress. The name of that library is … ShellProgressBar. Repository of ShellProgessBar is on github. You can use that library with .NET Core. There is a really good documentation on github. So, I’ll show you very simple example of fake import application with ShellProgressBar.

Continue reading “C# library ShellProgressBar”

Read it #10

Building modular, multi-tenant ASP.NET Core apps with Orchard Core framework
Watch video about multi-tenant ASP.NET Core apps.
C# ASP.NET Core Orchard Core

The Five Most Popular Operating Systems for the Internet of Things
Survey about operating systems for IoT.
IoT

Integrating Google APIs with Angular
Do you need to display something from google calendar? Maybe this article will help you.
angular
Continue reading “Read it #10”

Read it #5

Checklist for writing great Visual Studio extensions
Are you going to create visual studio extension? Maybe that article will be useful.
Visual Studio

Pipeline Pattern Implementations in C# .NET – Part 1
Article about pipeline pattern
C# Design Pattern

Scaling Postgresql for Large Amounts of Data
Do you know what is a difference between horizontal and vertical scaling? Do you know how we can scale PostgreSQL? No? Read it. If you know read it also because of you can forget something πŸ˜‰
PostgreSQL
Continue reading “Read it #5”

Read it #4

SQLite Tips and Tricks for Mobile Developers
I think that title say enough πŸ™‚ Do you use SQLite? Is anyone who don’t? πŸ™‚
SQLite

Find Out Why Your CSS Isn’t Working! New Firefox DevTools Features
Description of new features of Firefox’s devtools which are very useful to investigate website style’s issues.
css

PostgreSQL’s indexes – GIN
The explanation of GIN indexes in PostgreSQL. The GIN (Generalized Inverted Index) indexes are very useful for arrays and jsonb.
postgresql
Continue reading “Read it #4”

Read it #2

Creating Strings with No Allocation Overhead Using String.Create
Very good article about string creating. You will find out how to create strings in high performance way.
.net core

How to Section Your HTML
Article contains information about correct html structure on website.
html good practicies

Bloom Indexes in PostgreSQL
I think that you should read it if you have table that stores a lof of data and has a lot of columns.
postgresql database performance

Metrics to Monitor in Your PostgreSQL Database
Get more information about PostgreSQL monitoring
postgresql

Machine Learning with ML.NET in UWP: Binary Classification
Read more about binary classification. There are a theory and examples.
.net C# machine learning

8 Techniques to Avoid GC Pressure and Improve Performance in C# .NET
In present time when we run our applications on clouds we should focus more on performance. Why? Because we pay for every resources πŸ˜‰ Read this article and learn more how to imporve performance of .net applications
.net C#