Skip to content

Instantly share code, notes, and snippets.

View bhatguru03's full-sized avatar

Guruprasad Bhat bhatguru03

View GitHub Profile
@bhatguru03
bhatguru03 / VerifyHMAC.cs
Created April 4, 2019 14:30
For HMAC Verification
using System;
using System.Web;
using System.Text;
using System.Security.Cryptography;
using System.Collections.Specialized;
using System.Text.RegularExpressions;
using System.Collections.Specialized;
using System.Collections.Generic;
public class VerifyHMAC
@bhatguru03
bhatguru03 / IsMobile.cs
Created April 3, 2019 20:26
For Detecting Browsers
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Text.RegularExpressions;
using System.Diagnostics;
/// <summary>
/// Summary description for IsMobile
/// </summary>
@bhatguru03
bhatguru03 / JusPayPayment.cs
Last active April 3, 2019 20:07
JusPay Payment Gateway Example
using System;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Web.UI.HtmlControls;
using System.Collections.Generic;
using Juspay.ExpressCheckout;
using Newtonsoft.Json.Linq;
using Juspay.ExpressCheckout.Base;
using System.Diagnostics;
@bhatguru03
bhatguru03 / AppHelper.java
Created October 16, 2018 12:51 — forked from anggadarkprince/AppHelper.java
Upload file with Multipart Request Volley Android
import android.graphics.Bitmap;
import android.graphics.drawable.BitmapDrawable;
import android.graphics.drawable.Drawable;
import java.io.ByteArrayOutputStream;
/**
* Sketch Project Studio
* Created by Angga on 12/04/2016 14.27.
*/
public class AppHelper {