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
@baladkb
baladkb / SDP fault nature function
Created August 29, 2019 19:26
SDP fault nature function
function applyFaultLookup(){
//var categoryVal=$CS.getText("CATEGORY");
jQuery.ajax({
url: 'http://cag.dev.spritle.com:8084/api/IFMSInterface/GetNatureOfFault?category=Building',
type: 'get',
dataType: 'json',
success: function (result) {
let daftar = result;
var html = '';
jQuery.each(daftar, function (i, data) {
@baladkb
baladkb / My Fav Quotes
Last active July 16, 2019 08:59
My Fav Quotes :)
"He's sensation but he doesn't know it keep him on as a property man" - Charlie Chaplin(The Circus film)
"Failure is not an option, it's a requirement." -Dom Mazetti
"If you cannot find peace within yourself, you will never find it anywhere else." - Marvin Gaye
Before you start, be clear about what you want your reader to do after you end
“We realize the importance of our voices only when we are silenced.” Malala Yousafzai
Oor Sutri Puranam
https://colorlib.com/preview/theme/opium/
@baladkb
baladkb / Place to visit !!!
Last active April 5, 2019 11:58
Place to visit !!!
*Amazing view of mountain lakes in Albanian Alps
*Zarautz, Spain
*Nepal jungle
*Fjaðrárgljúfur, Iceland
*Geirangerfjord, Norway
*Kluane National Park and Reserve of Canada, Canada
@baladkb
baladkb / tetn web reference
Last active February 21, 2019 10:09
tetn web reference
http://www.michaelvillar.com/
https://github.com/michaelvillar/photoslog
https://threejs.org/
https://tonejs.github.io/demos
http://dynamicsjs.com/
@baladkb
baladkb / goodGitRepos.txt
Last active February 12, 2019 13:33
Good Git Repos !!!
https://github.com/codingforentrepreneurs
https://github.com/keras-team/keras
https://github.com/llSourcell
https://github.com/ardamavi
https://github.com/deeplearningturkiye
@baladkb
baladkb / replace uncode to special char in Javascript
Created September 20, 2018 11:14
replace uncode to special char in Javascript
entityMap : {
'&': '&',
'<': '&lt;',
'>': '&gt;',
//'"': '&quot;',
//"'": '&#39;',
//'/': '&#x2F;',
//'`': '&#x60;',
'=': '&#x3D;'
},
$('.dropdown-col-filter').click(function(e) {
e.stopPropagation();
});
$(document).click(function() {
$(this).find('.dropdown-content-col-filter').removeClass("show");
});