Category: Windows
RabbitMQ.NET RabbitMQ.NET is a .NET Core library to easily integrate RabbitMQ in .NET Core applications Nuget https://www.nuget.org/packages/RabbitMQ.NET/ Github https://github.com/rizansari/RabbitMqCore Installation Install-Package RabbitMQ.NET Using the library RabbitMQ.NET is a simple library to Publish and Subscribe easily in .NET Core applications. Setup DI var serviceProvider = new ServiceCollection() .AddLogging(loggingBuilder => { loggingBuilder.SetMinimumLevel(Microsoft.Extensions.Logging.LogLevel.Trace); }) .AddRabbitMQCore(options => { options.HostName […]
Log4NetCore Log4NetCore is a .NET Core library to easily integrate log4net in .NET Core applications Nuget https://www.nuget.org/packages/Log4NetCoreEx/ Github https://github.com/rizansari/Log4NetCore Installation Install-Package Log4NetCoreEx Using the library Logging Builder How to use using Logging Builder var serviceProvider = new ServiceCollection() .AddLogging(loggingBuilder => { loggingBuilder.SetMinimumLevel(Microsoft.Extensions.Logging.LogLevel.Trace); loggingBuilder.AddLog4Net(); loggingBuilder.AddConsole(); }) .BuildServiceProvider(); Services Collection How to use using Services Collection var […]
RedUI is a Cross platform Redis Desktop Manager built with Electron, Angular, Clarity UI and ioredis. Main Features Cross platform Supports List view and Tree view `Monitor` mode Display Redis `Info` JSON formatting for `string` Github https://github.com/rizansari/red-ui Screenshots
Sometimes you don’t need everything in PDF document. Perhaps there are only half a dozen pages that are of actual interest, so the best thing to do is simply save them as their own file. This blog post will explain how to extract selected pages from a PDF and save it as a separate PDF […]
Tail is a program on Unix and Unix-like systems used to display the tail end of a text file or piped data. Tail also has option to monitor a file as new lines are added to the file by another process, tail updates the display. This is particularly useful for monitoring log files. I have […]
Few years ago PC manufacturers apply stickers on Laptops or Desktops showing Windows Product Key. But since Windows 8, it is no longer supplied. I have made on handy tool to Find out Windows Product Key and some other useful info. Download and Run. Download Windows Product Key Finder version 4.5 Hash for WindowsProductKey4.5.exe MD5: […]
Command line was and will be an important tool especially for Software Developers. With the launch of .NET Core, it is now even more important even in .NET ecosystem. Users find it difficult to browse to a certain directory by issuing CD (change directory) commands so there is a better way to go directly to […]
You can use this Python script to download / clone entire FTP directory recursively from remote FTP Host. Let’s say you would like to download www-data directory and all sub directories inside this one from ftp.test.com server. #!/usr/bin/python import sys import ftplib import os import time server = "FTPHOST" user = "anonymous" password = "anonymous" […]
Most of the time you need to add hard disk space to you virtual machine without effecting Primary hard disk. Below procedure can be used to add another virtual hard disk to Ubuntu hosted inside Hyper-V. 1. Add new hard disk from VM settings. 2. Start virtual machine and start terminal or connect through terminal […]
If you want to add your own application or folder to the Send to menu then open the Run dialog box by pressing Win+R, then paste this command into the text box: shell:sendto This will open the folder where all shortcuts for send to menu are available. Alternatively, you can navigate to %UserProfile%\AppData\Roaming\Microsoft\Windows\SendTo Create a […]