Introducing the slang API
Lately was working on some slang filtering module, but for the LOLz of it made a simple JSON API.
The deal is pretty simple, the API takes in an SMS slang word and expands the acronym.
So, here is a simple jQuery code to get results :
$.getJSON("http://h3manth.com/slang.php?str=OMG&callback=?",
function(str){
console.log(str.result);
});
function(str){
console.log(str.result);
});
Do try the API and let me know if there are any additions to be done ☺
Recent blog posts
- watir-webdriver web inspector
- gem list to gemfile
- Packing ruby2.0 on debian.
- Made it into The Guinness Book!
- to_h in ruby 2.0
- Filter elements by pattern jQuery.
- Better HTML password fields for mobile ?
- Grayscale image when user offline
- nth-child CSS pseudo-class Christmas colors
- EventEmitter in nodejs