Skip to content

Instantly share code, notes, and snippets.

View Prosquid1's full-sized avatar
🎯
Focusing

Oyeleke Okiki Prosquid1

🎯
Focusing
  • London, United Kingdom
View GitHub Profile
# git clone https://github.com/ShikherVerma/ReverseEngineerAndroidLibraries.git ~/AndroidStudioProjects/SampleApplication
# cd ~/AndroidStudioProjects/SampleApplication
# git checkout lib/butterknife
@gpetuhov
gpetuhov / clean_architecture.txt
Last active October 29, 2023 06:56
Clean architecture tutorials (MVC, MVP, MVVM)
ROBERT MARTIN
https://blog.cleancoder.com/uncle-bob/2012/08/13/the-clean-architecture.html
https://www.youtube.com/watch?v=Nsjsiz2A9mg
http://cleancoder.com/
https://cleancoders.com/
ANDROID
https://fernandocejas.com/2014/09/03/architecting-android-the-clean-way/
https://habr.com/ru/company/mobileup/blog/335382/
@iChintanSoni
iChintanSoni / BaseRecyclerAdapter.java
Last active February 1, 2018 14:00
This implementation of generic recycler adapter is truely inspired from Firebase Database UI Adapter.
package com.chintansoni.android.mesamis.base;
import android.support.v7.widget.RecyclerView;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
import java.lang.reflect.Constructor;
import java.lang.reflect.InvocationTargetException;
import java.util.ArrayList;
@Plumillon
Plumillon / PFRecyclerViewAdapter.java
Last active April 1, 2022 07:29
Simpler generic RecyclerView.Adapter and RecyclerView.ViewHolder with click listener
import android.content.Context;
import android.support.v7.widget.RecyclerView;
import android.view.View;
import android.view.ViewGroup;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
@keeguon
keeguon / countries.json
Created April 5, 2012 11:11
A list of countries in JSON
[
{name: 'Afghanistan', code: 'AF'},
{name: 'Åland Islands', code: 'AX'},
{name: 'Albania', code: 'AL'},
{name: 'Algeria', code: 'DZ'},
{name: 'American Samoa', code: 'AS'},
{name: 'AndorrA', code: 'AD'},
{name: 'Angola', code: 'AO'},
{name: 'Anguilla', code: 'AI'},
{name: 'Antarctica', code: 'AQ'},