Category: Windows

RabbitMQ.NET library to easily integrate RabbitMQ in .NET Core applications

Author: | Categories: IoT, Linux, Programming, Windows No Comments
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 library to easily integrate log4net in .NET Core applications

Author: | Categories: Linux, Programming, Windows No Comments
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 – Redis Desktop

Author: | Categories: Database, Linux, Mac, Programming, Windows No Comments
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

How to Extract Pages from a PDF Document to Create a New PDF Document using Google Chrome

Author: | Categories: General, Windows No Comments
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 command for Windows with Colors

Author: | Categories: Programming, Windows One Comment
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 […]

Windows Product Key Finder

Author: | Categories: General, Programming, Windows No Comments
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: […]

Quick Command Line Access from Windows Explorer

Author: | Categories: Programming, Windows No Comments
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 […]

Download all files from FTP in Python

Author: | Categories: Linux, Programming, Windows 7 Comments
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" […]

Mount (Automount) VHD partition in Ubuntu host

Author: | Categories: Linux, Windows No Comments
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 […]

Customize the “Send To” Menu in Windows

Author: | Categories: Windows No Comments
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 […]