OPI Blog
Learn from experts in their fields

Archive For:

Developing Private In-House Libraries with CocoaPods
For iOS/Mac development, CocoaPods (http://cocoapods.org/) is the dependency manager we use at Object Partners to discover and integrate a wide variety of open source libraries available online. Following the CocoaPods “podspec” is great for sharing ...
Gradle Summit 2014 Recap
2014 saw the 2nd annual Gradle Summit hosted by No Fluff Just Stuff and the Gradleware team in Santa Clara, CA. This was my first year attending and I will definitely be back. Jay Zimmerman ...
Pooling Web Service Connections in Grails
Apache Commons Pool is a great tool to easily configure an object pool on the JVM. Having a pool of created objects helps when you need to reuse connection objects that are expensive to create ...
Jun 5, 2014
Inline initialization of Java Maps
Inline initialization of maps in Java has been a sign of weakness in the Java language. This approach has given me the most concise way to initialize maps, while meeting all of my goals. Goals: ...
Extending Angular’s $resource Service for a Consistent API
One of my favorite modules provided by AngularJS is the ngResource module, because it has intelligent defaults and also allows me to be very flexible configuring resources and REST api calls to match pretty much ...