Skip to content

Instantly share code, notes, and snippets.

View baladkb's full-sized avatar
🎯
Happy Octocat

BK baladkb

🎯
Happy Octocat
  • Chennai ✈️ India
View GitHub Profile
http://divan.github.io/posts/go_concurrency_visualize/
https://github.com/golang/go/wiki/LearnConcurrency
https://github.com/divan
import java.util.HashMap;
import java.util.Iterator;
import java.util.Map;
import org.json.JSONException;
import org.json.JSONObject;
public class JSONCompare {
HashMap<String, Object> data;
import java.util.HashMap;
import java.util.Map;
public class HASMAPCompare {
public static void main(String[] args) {
final Map<String, String> hm1 = new HashMap<String, String>();
hm1.put("01", "Bala");
hm1.put("02", "Sha");
import org.json.JSONArray;
import org.json.JSONException;
import org.json.JSONObject;
import java.util.HashMap;
import java.util.HashSet;
import java.util.Iterator;
import java.util.Map;
import java.util.Set;
@baladkb
baladkb / Icons image
Last active January 3, 2017 10:05
Icon Images websites...
http://www.365cons.com/
@baladkb
baladkb / Java
Last active January 2, 2017 11:09
JSON Array shuffling
http://www.programcreek.com/java-api-examples/index.php?source_dir=hacktoolkit-android_lib-master/src/com/hacktoolkit/android/models/HTKContact.java
http://www.programcreek.com/java-api-examples/org.json.JSONObject
@baladkb
baladkb / get-in-between-dates.js
Created December 26, 2016 09:54
Get in-between dates via start and end date
function formatDate(inputDate) {
var chunks = inputDate.split('/');
var formattedDate = chunks[1]+'/'+chunks[0]+'/'+chunks[2];
return formattedDate;
}
function dateFormat(startDate,endDate)
{
var dates = [],
currentDate = startDate,
addDays = function(days) {
@baladkb
baladkb / CSS links
Last active January 31, 2017 09:56
CSS Websites
@baladkb
baladkb / My collection Web sites
Last active October 21, 2016 12:47
For my ref - Websites
For Text box and TextArea increse when mouse over
https://www.impressivewebs.com/css3-transitions-without-hover/
http://james-star.com/answers/en/css3-hover-effect-transitions-transformations-and-animations/
For Select box Search option
https://select2.github.io/examples.html
https://harvesthq.github.io/chosen/
http://jedwatson.github.io/react-select/