• submit to reddit
Eric Gregory05/08/13
7656 views
0 replies

Dev of the Week: Zemian Deng

This week we're talking to Zemian Deng, a Java developer working for the Bank of New York Mellon.

Steven Lott05/08/13
2622 views
0 replies

Legacy Code Preservation: The Bugs Are The Features

The extreme end of "paving the cowpaths" are people for whom the bug list is also the feature list. This is a very strange phenomenon, rarely seen, but still relevant to this review.

Trevor Parsons05/07/13
1058 views
0 replies

Tail -f is dead, long live tail -f

Why do so many log management solutions ignore the ability to tail your logs or to get a live feed of what your most recent system events are?

Justin Bozonier05/07/13
5956 views
0 replies

Algorithm of the Week: Shortest Path with Djikstra

Shortest path algorithms can be most easily related to a class of problem every online driving direction service (like MapQuest or Google Maps) has to solve. These problems work with a concept known as a directed weighted graph which is a collection of points with connections to other points as well as a cost for each connection.

Patrick Debois05/07/13
1903 views
0 replies

The Future of DevOps

Besides repeating the devops stories, we also need to seek diversity and make sure we keep adapting to situations.

Matt Rapczynski05/07/13
1925 views
0 replies

Configuring Grails to Ignore DDL on Specific Domains

What is a responsible way to use Grails with existing tables, and guarantee that it will not try to change those schema objects? If only Grails mapping had a simple way to turn off DDL on specific domains, but still retain the awesomeness of DRY methods like list(…), named queries, and even inserting/updating records through save(…). I present to you what I think is a reasonably elegant solution for this problem.

Trevor Parsons05/06/13
405 views
0 replies

Switching Between UTC and Local Time

All Logentries servers are configured for the UTC timezone. We use this as the default timezone for all internal data including customer’s logs. However, at the browser UI level we detect a user’s local timezone and present all dates in a more human friendly way, i.e. in the local time.

Nicolas Frankel05/06/13
1455 views
0 replies

Deployit, Deployment Automation Made Easy

There’s no magic in how Deployit works, it uses existing parts of modern development environments, most notably CI servers. The only requirement is to have a dedicated Maven project that creates so-called DAR archives, which are nothing more than ZIP files wrapping all resources mandatory for a deployment.

Chase Seibert05/06/13
2233 views
0 replies

Happybase Connection Pooling

Wrote a simple connection pool for Happybase using socketpool...

Aaron Nichols05/06/13
2628 views
0 replies

DevopsDays 2013 - We Are Avoiding Culture, Why?

I just got back from Devops Days Austin. It was a really good conference. I think I enjoyed the speakers and Open Spaces at this event more than I did at Devops Days Mountain View last year. Huge props to the organizers and speakers for putting together such a great set of topics.

Mike Hadlow05/06/13
2015 views
0 replies

The Benefits of a Reverse Proxy

A reverse proxy is server component that sits between the internet and your web servers. It accepts HTTP requests, provides various services, and forwards the requests to one or many servers.

Eric Gregory05/05/13
482 views
0 replies

HTTP Caching 101

Sebastien Lambla from Caffeine IT explores the basics of HTTP caching.

Kin Lane05/05/13
3554 views
0 replies

A Civic Hacker Corps

I've always been told, "If You Don't Vote, You Can't Whine." This is a statement I've heard from hundreds of American citizens that I've encountered throughout my life, across every region of this great country. While I agree with the intent of this statement, I have to declare that it isn't enough!

Eric Gregory05/05/13
2453 views
0 replies

How Chef Enables Prezi's DevOps Culture

This OpsCode talk from Zsolt Dollenstein explores how major web presentation site Prezi uses Chef to cultivate a DevOps culture.

Eric Gregory05/04/13
2069 views
0 replies

I Hear You Like Pull Requests

Konstantin Haase delves into adding automatic Pull Request testing to Travis CI, exploring why pull requests are so powerful.