Skip to content

Instantly share code, notes, and snippets.

View lingarajsankaravelu's full-sized avatar
😀
Your friendly neighbourhood programmer

Lingaraj Sankaravelu lingarajsankaravelu

😀
Your friendly neighbourhood programmer
  • SAMSUNG R&D (SRIB) INDIA
  • Bangalore
  • 20:56 (UTC +05:30)
  • X @lingaraj_25
View GitHub Profile
@Antarix
Antarix / UnzipUtility.java
Created October 17, 2014 09:50
Unzip utility for Android
import java.io.BufferedOutputStream;
import java.io.File;
import java.io.FileInputStream;
import java.io.FileOutputStream;
import java.io.IOException;
import java.util.zip.ZipEntry;
import java.util.zip.ZipInputStream;
/**
* This utility extracts files and directories of a standard zip file to
package com.tom.utils;
import android.os.Environment;
import android.os.StatFs;
/**
* Created by Tom on 7/15/13.
* Some helper methods for FS queries.
*/
public class DiskUtils {
@surma
surma / github_forall.sh
Created August 6, 2012 23:22
Journey to my own Android ROM

Motivation

  • Make testing new releases easy for me. No tedious reinstalling of my common apps
  • Some graphical customizations for nerdcred
  • Ability to patch things
  • Deeper understanding

Plan

  • Be as vanilla as possible for easy version upgrade
@MohamedAlaa
MohamedAlaa / tmux-cheatsheet.markdown
Last active May 8, 2024 07:49
tmux shortcuts & cheatsheet

tmux shortcuts & cheatsheet

start new:

tmux

start new with session name:

tmux new -s myname
@davidnunez
davidnunez / gist:1404789
Created November 29, 2011 13:20
list all installed packages in android adb shell
pm list packages -f