Skip to content

Instantly share code, notes, and snippets.

View sunmughan's full-sized avatar
:octocat:
Verified Developer

Sunmughan Swamy sunmughan

:octocat:
Verified Developer
View GitHub Profile
@sunmughan
sunmughan / gist:726dc5591deaeddd21668bd9b0cc527b
Last active April 18, 2024 10:58
Microsoft Visual Studio Product Key 2022 - 2023
Please STAR this gist if it worked for you 💜
Visual Studio 2019 Enterprise
BF8Y8-GN2QH-T84XB-QVY3B-RC4DF
Visual Studio 2019 Professional
NYWVH-HT4XC-R2WYW-9Y3CM-X4V3Y
@sunmughan
sunmughan / index.html
Created August 11, 2017 18:02 — forked from SendOTP/index.html
SendOTP: Client Side flow sample code
<script type="text/javascript" src="jquery-2.1.4.min.js"></script>
<script type="text/javascript">
function sendOTP() {
var data = JSON.stringify({countryCode: "country code", mobileNumber: "Mobile number to be verified"});
$.ajax({
url: 'https://sendotp.msg91.com/api/generateOTP',
type: 'POST',
crossDomain: true,
processData: false,
contentType: 'application/json',