Skip to content

Instantly share code, notes, and snippets.

View shaheenkdr's full-sized avatar

Shaheen K shaheenkdr

  • Hyderabad, India
View GitHub Profile
@shaheenkdr
shaheenkdr / GraphQL Sample codes
Last active October 21, 2017 01:22
test codes for graphql for Devfest Kochi 21st
OPERATION
==========================
query foo
{
allTrips
{
id
title
-----------------------------------com.example.Aggregations.java-----------------------------------
package com.example;
import javax.annotation.Generated;
@Generated("org.jsonschema2pojo")
public class Aggregations {
@shaheenkdr
shaheenkdr / Imgcmp
Created July 10, 2015 08:57
Image comparison | To compare two images given their URL
//SIMPLE PROGRAM CREATED BY TEAM BLOX AS PART OF STARTUP BOX PROGRAM
//USER CAN GIVE TWO IMAGE URLS AND THE PROGRAM COMPARES RGB VALUES OF PIXELS AND RETURNS THE SIMILARITY ON A SCALE OF 0-100
//ANY QUERIES CONTACT: shaheenkader@outlook.com
// : syameradi@gmail.com
// : afrahnv@gmail.com
package imager;
import java.awt.image.BufferedImage;
import javax.imageio.ImageIO;