Generated by All in One SEO v4.9.10, this is an llms.txt file, used by LLMs to index the site. # Shashi Jeevan's Blog | AI, Clouds and Containers Things worth sharing ## Sitemaps - [XML Sitemap](https://shashijeevan.com/sitemap.xml): Contains all public & indexable URLs for this website. ## Posts - [Celebrating 15 Years of Microsoft Azure: Transforming the Future of Cloud Computing](https://shashijeevan.com/celebrating-15-years-of-microsoft-azure-transforming-the-future-of-cloud-computing/) - Microsoft Azure marks 15 years of innovation in cloud computing, empowering businesses worldwide with AI-driven solutions, hybrid cloud capabilities, and enterprise security. Since its launch in February 2010, Azure has expanded into a comprehensive suite of over 200 cloud services, enabling seamless application development, deployment, and scalability. Azure’s Journey: 15 Years of Cloud Leadership Azure - [Happy 10th Birthday Microsoft Azure!!!](https://shashijeevan.com/happy-10th-birthday-microsoft-azure/) - Introduction In the year 2008, Microsoft started working on a project codenamed "Project Red Dog". This was an operating system for the Cloud. This was to compete with Amazon WebServices (AWS) which was launched in 2006 and quickly got so popular that everyone wanted to say that we use AWS. Microsoft later renamed this OS - [SyncFusion Succinctly Series Free Technical Books](https://shashijeevan.com/syncfusion-succinctly-series-free-technical-books/) - SyncFusion Succinctly Series of eBooks, located here , are by far the best source of free technical eBooks. They have over 150+ books written on popular software-related topics. Each book is around 100+ pages and covers the important aspects of a particular technology. These ebooks are available for download the following formats PDF format for - [Learning List to Pick from for the year 2020](https://shashijeevan.com/learning-list-2020/) - Prepare your own learning list from the list I have prepared by looking at the technologies in 2019. I have included the evergreen technologies list Angular, ReactJS but also emerging ones like AutoML. Machine/Deep Learning PythonTensorflow AutoML H20.aiGoogle Cloud AutoMLTransmogrifAIAuto Keras Front End JavaScriptTypeScriptAngularReactJS Mobile DartFlutter Cloud Azure Azure InfrastructureAzure DevelopmentAzure Architect AWS Web C# - [Tips for gitignore files](https://shashijeevan.com/tips-gitignore-files/) - Here are some tips for using git ignore files in your projects. I will keep updating this list so keep checking. 1. Creating .gitignore in Windows Explorer If you are trying to create .gitignore from the windows explorer windows throws an error. This is because of historic reasons that file name before the extension cannot - [How to create a self-signed certificate using openssl?](https://shashijeevan.com/create-self-signed-certificate-openssl/) - What is a digital certificate? Digital certificate contains keys for authenticating the holder of the certificate. It is typically issued by a trusted entity called CA (Certificate Authority). Self-signed certificate is used for testing purpose which is issued by yourself without the need for a Trusted CA. Using OpenSSL to generate self-signed certificate Open SSL - [Deep Learning at Global Azure Bootcamp 2018](https://shashijeevan.com/presentation-global-azure-bootcamp-2018/) - Background Global Azure Bootcamp is held every year in multiple locations across the world on the same day. This year's event was held on April 21st. I had attended the previous years' sessions at various locations. I had found them to be very informative and useful. This year I got an opportunity to give a - [Deep Learning presentation](https://shashijeevan.com/deep-learning-presentation/) - Past few months I have been delving into the AI, ML and Deep Learning and related topics. My interest got triggered after coming across a session on Fast.ai that is a free Deep Learning framework from Jeremy Howard. Here is the link to the online course. Background In my college days we had customary lab - [Shortcut to get current machine IP address](https://shashijeevan.com/machine-ip-address-shortcut/) - Search for machine IP address On windows when you want to know the machine IP address you typically type ipconfig. This command provides too much of text and you literally have to go through all the junk to find the text that contains the IP address. Here is a tip to extract the IP address from - [Docker to increase your productivity](https://shashijeevan.com/docker-increase-productivity/) - Docker usage in the development and test environment can save you lot of effort and time. Windows containers are new and are still evolving. Using them requires a big change in the mindset. To begin with, the team could start using the docker in the development process to get familiar with the Windows containers.This article talks about - [Creating a simple service using ServiceStack](https://shashijeevan.com/creating-simple-service-using-servicestack/) - Introduction ServiceStack is a framework similar to ASP.Net MVC, Web API, WCF etc. used to build web applications and services. The framework is platform independent and the applications built using it can be run on both Windows and Linux. In this article we will build a simple REST based web service that will return ‘Note’ - [How to enable Windows Containers](https://shashijeevan.com/how-to-enable-windows-containers/) - Microsoft support for Windows containers started with Windows Server 2016 and Windows 10 Anniversary edition. Windows supports two types of containers Native and Hyper-V. They differ in the isolation provided by the Operation System. The native containers are treated as any other process by the operation system. Hyper-V containers are run under a light weight - [Setting up secure web site communication in Apache web server](https://shashijeevan.com/setting-up-secure-web-site-communication-in-apache-web-server/) - Securing your website is a common requirement these days. You need to get SSL certificate for your domain to secure the communication between the browser and the Web Server. There are many sources like Let's Encrypt who provide these SSL certificates for free. If you are setting up SSL certificate using a control panel like - [List of scenarios where Docker for Windows can be utilized](https://shashijeevan.com/docker-for-windows-use-cases/) - Docker platform was built on use cases derived from running large scale services on Linux platform. It is obvious that the scenarios where Linux is most popular is not in the desktop end but on the server side applications. Due to this Docker in specific and Containers in general have been designed and are most - [Awesome course on blogging to increase your market value](https://shashijeevan.com/awesome-course-on-blogging-to-increase-your-market-value/) - I have been writing blogs on and off since 2004. My first blog also won me a prize. My intention behind starting a blog was to share my experiences as software professional. I used to hear about how people used to make tons of money through theirs blogs. I used to wonder how this is - [Free resources from Microsoft on Windows Containers and .Net Microservices](https://shashijeevan.com/free-resources-from-microsoft-on-windows-containers-and-net-microservices/) - Microsoft support for containers started with Windows Server 2016. You can now build and run Docker containers in Windows 10 too. Microsoft has provided free resources for developers and IT professionals to help migrate to this new technology easily. Following are some of these resources. Free ebook: Introduction to Windows Containers https://aka.ms/containersebook Introduces what containers - [HTTP Header Referer](https://shashijeevan.com/http-header-referer/) - The HTTP Header "Referer" is used maily to detect the URL from which a page is loaded. But there are times when this header is not passed. This also can be spoofed using some plug-ins. This article has more details on this. https://isc.sans.edu/forums/diary/When+does+your+browser+send+a+Referer+header+or+not/16433/ - [Monitor android device web traffic](https://shashijeevan.com/monitor-android-device-web-traffic/) - Some times we need to monitor the web traffic going from inside the Android device to various services on the internet. This can be achieved by using a PC and Fiddler software to act as a proxy in between the android device and the internet. The following articles show the simple way to set this - [Absolutely Simple WebServers that will save your time!](https://shashijeevan.com/running-a-simple-web-server/) - At times you would want to run a simple web server to serve static pages for trying out somethings. To run such web server on Windows we have two simple options. Option 1: Using Python Python version 2.x.x comes with a pre-built script called ‘SimpleHTTPServer’ for running a Web server. You can run it using the ## Pages - [Refund Policy](https://shashijeevan.com/refund-policy/) - Refund and Cancellation Policy All digital products sold through shashijeevan.com are delivered electronically upon purchase. Because digital products are made available to the buyer immediately and cannot be returned in the way a physical product can, all sales of downloadable digital content are final once the file has been accessed or downloaded. - [About](https://shashijeevan.com/about/) - I am an Entrepreneur, Inventor, Author, Trainer, Manager and Architect. I have M. Tech. from IIT Kharagpur and am the inventor of US Patent (Number: 6,609,084, Issue Date: August 19, 2003). In my professional experience of 27+ years, I had managed, architected, designed, developed and deployed solutions/products in the ePayments, Digital Signage, Rich Media and - [Privacy Policy](https://shashijeevan.com/privacy-policy/) - Privacy Policy This privacy policy applies to the Quick BMI app (hereby referred to as "Application") for mobile devices that was created by Shashijeevan M P (hereby referred to as "Service Provider") as a Free service. This service is intended for use "AS IS". Information Collection and Use The Application collects information when you download ## Categories - [Uncategorized](https://shashijeevan.com/category/uncategorized/) - [Apache](https://shashijeevan.com/category/apache/) - [Blogging](https://shashijeevan.com/category/blogging/) - [Containers](https://shashijeevan.com/category/containers/) - [Courses](https://shashijeevan.com/category/courses/) - [Docker](https://shashijeevan.com/category/docker/) - [Professional](https://shashijeevan.com/category/professional/) - [SSL](https://shashijeevan.com/category/ssl/) - [Windows](https://shashijeevan.com/category/windows/) - [Productivity](https://shashijeevan.com/category/productivity/) - [Certificate](https://shashijeevan.com/category/certificate/) - [ServiceStack](https://shashijeevan.com/category/servicestack/) - [API](https://shashijeevan.com/category/api/) - [REST](https://shashijeevan.com/category/rest/) - [Git](https://shashijeevan.com/category/git/) - [Tips](https://shashijeevan.com/category/tips/) - [Deep Learning](https://shashijeevan.com/category/deep-learning/) - [Azure](https://shashijeevan.com/category/azure/) - [Presentation](https://shashijeevan.com/category/presentation/) - [Meetup](https://shashijeevan.com/category/meetup/) - [Learning](https://shashijeevan.com/category/learning/) - [Free](https://shashijeevan.com/category/free/) - [Books](https://shashijeevan.com/category/books/) ## Tags - [Deep Learning](https://shashijeevan.com/tag/deep-learning/) - [Azure](https://shashijeevan.com/tag/azure/) - [Presentation](https://shashijeevan.com/tag/presentation/) - [Learning](https://shashijeevan.com/tag/learning/) - [2020](https://shashijeevan.com/tag/2020/) - [Technology](https://shashijeevan.com/tag/technology/)