Skip to content

Instantly share code, notes, and snippets.

View abdusalamApps's full-sized avatar

abdusalamApps

  • Lund University
  • Helsingborg
View GitHub Profile
@heroheman
heroheman / ranger-cheatsheet.md
Last active July 19, 2024 17:56
Ranger Cheatsheet

Ranger Cheatsheet

General

Shortcut Description
ranger Start Ranger
Q Quit Ranger
R Reload current directory
? Ranger Manpages / Shortcuts
@SehoNoh
SehoNoh / DynamicGridLayoutManager.java
Last active April 14, 2019 02:32
Android Dynamic RecyclerView LayoutManager (when you are using RecyclerView in ScrollView, these layout manager will resize RecyclerView's height with their items.) / ListView Version - https://gist.github.com/NohSeho/5638005fa27763fd21f8
import android.content.Context;
import android.support.v7.widget.GridLayoutManager;
import android.support.v7.widget.RecyclerView;
import android.view.View;
import android.view.ViewGroup;
public class DynamicGridLayoutManager extends GridLayoutManager {
private int spanCount = 1;