Skip to content

Instantly share code, notes, and snippets.

View akamahesh's full-sized avatar

Mahesh Bhatt akamahesh

View GitHub Profile
@akamahesh
akamahesh / 0_reuse_code.js
Created September 9, 2016 06:43
Here are some things you can do with Gists in GistBox.
// Use Gists to store code you would like to remember later on
console.log(window); // log the "window" object to the console
@akamahesh
akamahesh / DividerItemDecoration.java
Created September 22, 2016 13:22 — forked from alexfu/DividerItemDecoration.java
An ItemDecoration that draws dividers between items. Pulled from Android support demos.
/*
* Copyright (C) 2014 The Android Open Source Project
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
@akamahesh
akamahesh / RecentTimeformat
Created December 1, 2016 09:33
RecentTime formatting
//TODO need to change
String recentTime="2016-11-18 08:48:34";
SimpleDateFormat sdfDate = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");//dd/MM/yyyy
Date now = new Date();
String currentTime = sdfDate.format(now);
try {
Date d1 = sdfDate.parse(recentTime);
private String convert(long mill) throws ParseException {
String hms = String.format("%02d :%02d", TimeUnit.MILLISECONDS.toHours(mill),
TimeUnit.MILLISECONDS.toMinutes(mill) - TimeUnit.HOURS.toMinutes(TimeUnit.MILLISECONDS.toHours(mill)));
return hms;
}
@akamahesh
akamahesh / ZoomOutPageTransformer.java
Created December 12, 2016 04:59
ZoomOutPageTransformer
ZoomOutPageTransformer
@akamahesh
akamahesh / ReachabilityManager.java
Created December 12, 2016 05:01
ReachabilityManager
package com.innverse.epazer.APIManager;
/**
* Created by mahesh-bhatt on 26/10/2016.
* ReachabilityManager class provide clear interface to check the network reachability and also notify the reachability changes.
*/
import android.content.BroadcastReceiver;
import android.content.Context;
import android.content.Intent;
@akamahesh
akamahesh / ZoomOutPageTransformer.java
Created December 12, 2016 05:05
ZoomOutPageTransformer implements ViewPager.PageTransformer {
ZoomOutPageTransformer implements ViewPager.PageTransformer {
@akamahesh
akamahesh / DividerItemDecoration.java
Created December 12, 2016 10:26
DividerItemDecoration.java for recycler view
package com.innverse.epazer.UI.Controllers;
import android.content.Context;
import android.content.res.TypedArray;
import android.graphics.Canvas;
import android.graphics.Rect;
import android.graphics.drawable.Drawable;
import android.support.v7.widget.LinearLayoutManager;
import android.support.v7.widget.RecyclerView;
import android.view.View;
@akamahesh
akamahesh / DeviceDisplayMetrics.java
Created December 12, 2016 10:27
DeviceDisplayMetrics.java
package com.innverse.epazer.UI.Controllers;
import android.app.Activity;
import android.content.Context;
import android.util.DisplayMetrics;
/**
* Created by root on 28/11/16.
*/
package com.innverse.epazer.UI.Controllers;
import android.graphics.Bitmap;
import android.graphics.BitmapShader;
import android.graphics.Canvas;
import android.graphics.Paint;
import com.squareup.picasso.Transformation;
public class CircularTransformation implements Transformation {