This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
https://github.com/raphaelfabeni/css-loader | |
https://github.com/eliorshalev/sprite-spirit | |
https://github.com/ganapativs/bttn.css | |
$$$$$$$$$$$$$$$$$ $$$$$ progressbar $$$$$ $$$$$$$$$$$$$$$ | |
https://github.com/crisbeto/angular-svg-round-progressbar | |
$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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) { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
http://www.365cons.com/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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"); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
http://divan.github.io/posts/go_concurrency_visualize/ | |
https://github.com/golang/go/wiki/LearnConcurrency | |
https://github.com/divan |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
https://threejs.org/ | |
https://github.com/d3/d3 | |
http://brm.io/matter-js/ |
OlderNewer