Skip to content

Instantly share code, notes, and snippets.

View ledreamer's full-sized avatar

Satyaki Banerjee ledreamer

  • Start up
  • India
View GitHub Profile
@ledreamer
ledreamer / a-modern-frontend-dev.md
Last active April 5, 2016 19:06 — forked from dwayne/a-modern-frontend-dev.md
Articles, tutorials and tools for modern front-end development.

Problem: What does a Modern Front-End Development Workflow Look Like?

I want to start writing libraries and large applications using the JavaScript language. However, I don't know how to setup the project and which build tools to use. What I do know is that the JavaScript community has moved way beyond using browser developer tool plugins and strategically-placed console.log() statements to debug, test, and build code.

I need help.

Below, I will keep track of articles, tutorials and tools I come across as I search for a way to bring my front-end development chops up-to-date.

The Ultimate Resource

@ledreamer
ledreamer / gist:7bf485cc197335cd7db2
Created November 5, 2015 17:35 — forked from samkirton/gist:0242ba81d7ca00b475b9
Fixed a bug where images added to the MediaStore are not inserted at the front of the gallery
package com.memtrip;
import java.io.FileNotFoundException;
import java.io.IOException;
import java.io.OutputStream;
import android.content.ContentResolver;
import android.content.ContentUris;
import android.content.ContentValues;
import android.graphics.Bitmap;
@ledreamer
ledreamer / form_layout.xml
Last active August 29, 2015 14:27
Android simple form layout
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical" android:layout_width="match_parent"
android:layout_height="wrap_content">
<TableLayout
android:layout_width="fill_parent"
android:layout_height="wrap_content">
<TableRow
android:layout_width="fill_parent"