Stay looped in
Links
-
Recent Comments
- Iterative Design | The Apprentice Path said [...] Behind the Screens: the Making of Campaign M...
- natlee75 said I’ve found that the easiest way to explain w...
- natlee75 said Actually we’d get a type error since the `fn...
- Samy Al Bahra said Hi Sam, Apologies for the late response. Our syste...
- Steph said Reading a lot of different explanations definitely...
Archives by Month
Categories
Category Archives: Development Process
Testing in Python: using nose & mocks
Here on the AppNexus Optimization team, we write code to optimize algorithms for our customers. We want to write good great code, so of course we test our code. We write and unit test our code in Python and run … Continue reading
On RESTful API Standards – Just Be Cool: 11 Rules for Practical API Development (part 2 of 2)
I posted a few days ago about my ideas for 11 rules for practical API development. Let’s jump back in with rules 6 to 11. 6. Make it easy to understand and navigate through child objects. The fact is it … Continue reading
On RESTful API Standards – Just Be Cool: 11 Rules for Practical API Development (part 1 of 2)
There are many articles floating around the internet right now about defining RESTful API standards. I’m guessing this is because Ruby on Rails makes it so easy to build an API that everyone and their mom has started building one. … Continue reading
Project Hydra – Scaling an API Globally
At AppNexus we provide our clients with a RESTful API that allows people to manage all of their data in our adserving echosystem. The API is built on a LAMP stack with memcache sprinkled in to help out with session … Continue reading
Webkit (Chrome, Safari) console.log is broken.
Chrome and Safari have a pretty serious bug where console.log() does not log variables as they are at the time of calling console.log(), but rather as they are some time in the future. If you’re not aware of it, you … Continue reading