Skip to content

Instantly share code, notes, and snippets.

View deda9's full-sized avatar
๐Ÿ
Learning is always fun

Bassem Qoulta deda9

๐Ÿ
Learning is always fun
View GitHub Profile
@deda9
deda9 / android_studio_shortcuts.md
Created June 20, 2016 13:28 — forked from stkent/android_studio_shortcuts.md
Android Studio Shortcuts (Mac)

Android Studio Shortcuts (Mac)

Notes:

  • Two of the most useful shortcuts utilize the Fn (function) keys. It is therefore recommended that you enable the "Use all F1, F2, etc. keys as standard function keys" option [System Preferences > Keyboard].
  • Be sure to enable the Mac OS X 10.5+ keymap in Android Studio [Preferences > Keymap].
  • A fairly complete shortcut list can be found here.

Useful symbols:

@deda9
deda9 / ArrayAdapter.java
Created June 10, 2016 16:56 — forked from passsy/ArrayAdapter.java
ArrayAdapter for RecyclerView
import android.support.v7.widget.RecyclerView;
import java.util.Collections;
import java.util.Comparator;
import java.util.List;
/**
* Created by pascalwelsch on 04.07.14.
*/
public abstract class ArrayAdapter<T, VH extends RecyclerView.ViewHolder>
# coding=UTF-8
from __future__ import division
import re
# This is a naive text summarization algorithm
# Created by Shlomi Babluki
# April, 2013
class SummaryTool(object):