Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

View Aenterhy's full-sized avatar

Roman Herasimenko Aenterhy

  • Fintech Band
  • United Kingdom
View GitHub Profile
@Aenterhy
Aenterhy / gist:93b92a9b85e43d3ac2901338133a9d3f
Created July 16, 2017 17:42
StatementRepositoryImpl.Java
package ua.ibox.app.repository;
import java.util.ArrayList;
import java.util.Collections;
import java.util.Date;
import java.util.List;
import io.reactivex.Completable;
import io.reactivex.Single;
import ua.ibox.app.api.Api;
So the solution is:
1) Replace the script from the MailChimp with this one:
<script type="text/javascript" src="//s3.amazonaws.com/downloads.mailchimp.com/js/signup-forms/popup/embed.js" data-dojo-config="usePlainJson: true, isDebug: false">
</script>
<script type="text/javascript">require(["mojo/signup-forms/Loader"],
@Aenterhy
Aenterhy / EndlessRecyclerOnScrollListener.java
Last active August 29, 2015 14:27 — forked from ssinss/EndlessRecyclerOnScrollListener.java
Endless RecyclerView OnScrollListener
import android.support.v7.widget.LinearLayoutManager;
import android.support.v7.widget.RecyclerView;
public abstract class EndlessRecyclerOnScrollListener extends RecyclerView.OnScrollListener {
public static String TAG = EndlessRecyclerOnScrollListener.class.getSimpleName();
private int previousTotal = 0; // The total number of items in the dataset after the last load
private boolean loading = true; // True if we are still waiting for the last set of data to load.
private int visibleThreshold = 5; // The minimum amount of items to have below your current scroll position before loading more.
int firstVisibleItem, visibleItemCount, totalItemCount;
@Aenterhy
Aenterhy / gist:ccda3835f7e484cc6300
Last active August 29, 2015 14:13
Google glass location helper class
import android.content.Context;
import android.location.Criteria;
import android.location.Location;
import android.location.LocationManager;
import android.os.Bundle;
import android.os.Handler;
import android.util.Log;
import java.util.ArrayList;
import java.util.Collections;