Showing posts with label Computer science. Show all posts
Showing posts with label Computer science. Show all posts

Thursday, June 19, 2014

RESTfull Love service Triangle

Hi All ,

 Today I will be writing little about RESTful api (Represntational state transfer) , kind of web service.Now day every  application (generally mobile application) and good website will provide one
of these services to the programer to interact more and develop application on top of it.





 So to start with REST u should be knowing these 3 terms (mug it) (also REST triangle)
1. noun
2.verb
3.content-type

In rest , noun is URL identifier (eg. www.example.com ).
Verb   is the action to be taken HTTP request method eg GET to read , POST to create, PUT to update and DELETE to delete.

Monday, September 9, 2013

Know Thy Complexities!!!!

Hi there!  This webpage covers the space and time Big-O complexities of common algorithms used in Computer Science.  When preparing for technical interviews in the past, I found myself spending hours crawling the internet putting together the best, average, and worst case complexities for search and sorting algorithms so that I wouldn't be stumped when asked about them.  Over the last few years, I've interviewed at several Silicon Valley startups, and also some bigger companies, like Yahoo, eBay, LinkedIn, and Google, and each time that I prepared for an interview, I thought to msyelf "Why oh why hasn't someone created a nice Big-O cheat sheet?".  So, to save all of you fine folks a ton of time, I went ahead and created one.  Enjoy!
GoodFairPoor