Skip to content

Instantly share code, notes, and snippets.

View ni8mr's full-sized avatar
🇧🇩
Busy in concept building, guiding team and development

Noor Faizur Reza ni8mr

🇧🇩
Busy in concept building, guiding team and development
View GitHub Profile
@ni8mr
ni8mr / frontendDevlopmentBookmarks.md
Created June 11, 2016 05:19 — forked from dypsilon/frontendDevlopmentBookmarks.md
A badass list of frontend development resources I collected over time.
@ni8mr
ni8mr / bootsrap_class_list
Created May 31, 2016 10:41 — forked from geksilla/bootsrap_class_list
Bootstrap css class list
.navbar
.caret
.label
.table
.img-responsive
.img-rounded
.img-thumbnail
.img-circle
.sr-only
.lead
function en2bn(input){
var en = ["1","2","3","4","5","6","7","8","9","0"];
var bn = ["১","২","৩","৪","৫","৬","৭","৮","৯","০"];
input = input.toString();
for( var i = 0; i <= 10; i++)
{
input = input.replace( en[i] , bn[i] );
}
return input;
}