Posts

Showing posts from 2020

Web Development Self Learning Program for Beginners

Image
Microsoft announced Web Development  Self Learning  Program  for Beginners. Web Development for Beginners - A Curriculum   Microsoft announced Web Development Program Self Learning for Beginners. Interested Peoples can Join and learn web development technologies. Program Name Called 'Web Dev for Beginners ' is hosted on GitHub and YouTube.   Azure Cloud Advocates at Microsoft offer a 12-week, 24-lesson curriculum all about JavaScript, CSS, and HTML basics. Microsoft also wrote several starter lessons in JavaScript basics to introduce concepts, paired with video from the " Beginners Series to: JavaScript " collection of video tutorials, some of whose authors contributed to this curriculum. While we have purposefully avoided introducing JavaScript frameworks so as to concentrate on the basic skills needed as a web developer before adopting a framework, a good next step to completing this curriculum would be learning about Node.js via another collection of videos

Enable SSL in Jenkin without using a key store password

  Enable SSL in Jenkin without using a key store password on Windows Operating System            Use Jenkins start-up parameters  -- httpsPort --httpsCertificate –httpsPrivateKey         Request New certificate and Password from Support Team or generate with 3rd Party Vendor. Certificate need to be in .pfx format.        Copy the newly created .pfx file to any location on the server.        Install OpenSSL on the Server.       Open the Command Prompt and got to “C:\Program Files\cURL” & Run the below command one by one. ·          Extract private key             openssl pkcs12 -in "C:\Temp\Certificate\Certificate\<certName>.pfx" -nocerts -nodes -out "C:\Temp\Certificate\Certificate\<private KeyName>.key"              Enter password when prompted.   ·          Extract certificate             openssl pkcs12 -in "C:\Temp\Certificate\Certificate\<certName>.pfx" -nokeys -out "C:\Temp\Certificate\Certificate\<certName>..crt"