Skip to content

Instantly share code, notes, and snippets.

View m090009's full-sized avatar
🤓
Looking for Opensource projects DL/CV to contribute to, also a job

Mohamed AlTohamy m090009

🤓
Looking for Opensource projects DL/CV to contribute to, also a job
View GitHub Profile
@gabrielemariotti
gabrielemariotti / README.md
Last active June 18, 2024 07:12
A SectionedGridRecyclerViewAdapter: use this class to realize a simple sectioned grid `RecyclerView.Adapter`.

You can use this class to realize a simple sectioned grid RecyclerView.Adapter without changing your code.

Screen

The RecyclerView has to use a GridLayoutManager.

This is a porting of the class SimpleSectionedListAdapter provided by Google

If you are looking for a sectioned list RecyclerView.Adapter you can take a look here

@pmanijak
pmanijak / Auto-deploy with git on Webfaction
Last active August 1, 2018 03:25
Setting up a simple auto-deploy with git on Linux
On server
-----------------
# make a git repo
$ mkdir /path/to/repo.git
$ cd /path/to/repo.git
$ git init --bare
# make a post-receive hook
# see the post-receive file in this Gist
# if you're using Node.js