All Questions
4 questions
2votes
2answers
435views
JavaScript -- Convert decimal to another base
The Source code is maintained on GitHub and may be cloned via the following commands. A Live demo is hosted online, thanks to GitHub Pages. ...
3votes
0answers
40views
Decoding request object before use it in an Insert query
I want to decode a request object before use it in an insert query. Request object containes the following JSON body: ...
5votes
1answer
1kviews
Converting any PHP function toString() like in JS
In JavaScript, any function is basically an object on which you can call (function(){}).toString() to get it's underlying code as a string. I'm working on a ...
6votes
1answer
2kviews
BBCode to HTML converter using functional programming
I was inspired to write a BBCode to HTML converter as I'm currently learning functional programming. I wanted achieve functional cohesion. jsFiddle I'd like feedback on: structuring of the code. ...