Skip to content

Instantly share code, notes, and snippets.

View arun21's full-sized avatar
🏠
Working

Arun Prabhu arun21

🏠
Working
View GitHub Profile
<html>
<!--
Author: Arun Prabhu
Date: May 1, 2019
-->
<center>
<h3>Arun Prabhu Homepage</h3>
package ca.uwo.csd.cs2212.USERNAME;
public class BankAccount {
private double balance;
public BankAccount(double balance) {
this.balance = balance;
}
@arun21
arun21 / gist:79729aaf7314c6a99ff6e412db7af354
Created June 18, 2017 05:37
Google Contacts API v3 Javascript sample
<html>
<head>
<script src="https://apis.google.com/js/client.js"></script>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.10.1/jquery.min.js"></script>
<script>
function auth() {
var config = {
'client_id': 'OAUTH_CLIENT_ID',
'scope': 'https://www.google.com/m8/feeds'
};