Skip to main content

A Technical Talk on Microservices and Cloud Deployment

This is a full-length session of microservices development using Microsoft .Net Core WebAPI(C#.Net) and Mongo DB as backend. The session presentation available below   The source code of session available in GitHub , feel free to share your feedback and contribute to this project Full session video Prerequisites for development MongoDB (you can download from here ) Visual Studio 2019 DotNet Core 3.1.x SDK Postman (for API Testing)

Screen Zooming Tool in Windows

Image result for screen magnifier







We know that in presentation/demo most of the people might feel uncomfortable to read the content in the slides/screen. To overcome this we use to increase the font size of the content.

Windows Magnifier

Build-In Tool

The simple build-in Magnifier tool available in Windows (surely in 7 and 8.x). In the mid of presentation no need to open the Magnifier from start menu you can make use of shortcut key Win + + (Windows key + Plus symbol key), this will open the magnifier and magnifies our screen

Shortcut keys


Increase Zoom   : Windows key + +  ( + Plus key)
Decrease Zoom  : Windows + -  ( + Minus key)

Another option

Windows Sysinternals Suite is bunch of system utility tool set, this has a screen zooming tool know as ZoomIt this has few value added functionalists and shortcut keys customization

Features of Zoomit

  1. Normal Zoom
  2. Live Zoom
  3. Draw (on screen)
  4. Type (on screen)
  5. Break (simple timer for presentation break)
SysInternals ZoomIt
for more information about SysInternals Suite click here


Comments

Popular posts from this blog

Know more about Azure Website KUDU?

KUDU  is the web tool for analyzing and troubleshooting azure websites. Benefits of Kudu Know about operating system Environment variables Processors & cores Applications settings Connection strings Process explorer (running instances) Debugging console (Command prompt & PowerShell) Diagnostics Log (view & download) Site extensions management and more Environment details Command prompt Are your wondering to use KUDU?, its very simple open browser and type https://{ your azure website name }.scm.azurewebsites.net . To access KUDU you need to have your azure deployment credentials! Example Your azure website : https://textingwebsite.azurewebsites.net/ Kudu URL : https://textingwebsite.scm.azurewebsites.net/ for more information about Kudu click here

Resource Explorer (DLL/Exe) using C#

After long time we are with the Resource Explorer. This is verymuch usefull for the resource management in the Application/DLL. Purspose     You are having the images/icon in other dll then you can load and use that particular image/icon using the below concept Source Code: public partial class frmAssemblyHandling : Form { public frmAssemblyHandling() { InitializeComponent(); } private void btnSelectDLL_Click( object sender, EventArgs e) { //the required resources to filter from the available ArrayList arImageFilter = new ArrayList (); arImageFilter.AddRange( new string [] { ".png" , ".ico" , ".bmp" , ".png" }); OpenFileDialog fd = new OpenFileDialog (); fd.Filter = "DLL Files (*.Dll)|*.dll|Application Files (*.exe)|*.exe" ;

A Technical Talk on Microservices and Cloud Deployment

This is a full-length session of microservices development using Microsoft .Net Core WebAPI(C#.Net) and Mongo DB as backend. The session presentation available below   The source code of session available in GitHub , feel free to share your feedback and contribute to this project Full session video Prerequisites for development MongoDB (you can download from here ) Visual Studio 2019 DotNet Core 3.1.x SDK Postman (for API Testing)