Skip to main content

Hello, World!

This is my new blog! This is my first foray into writing about technology - of course I've written my share of documentation, specifications and proposals, but this is different: this blog is completely open-ended. I'm not constrained by what a client wants or the marketing team likes. So...to start with, I'm going to talk a little about myself.

I grew up near Albany, NY and studied at Cornell University where I graduated with majors in Mathematics, Computer Science and Philosophy. Since graduating in 2005, I have had a variety of software-related jobs. My job titles have included Systems Analyst, Project Manager, Software Developer, Development Manager and Lead Engineer. I have been working in the New York City metro area since early 2010, and recently moved to Bay Ridge, Brooklyn. Working in software technology is great in NYC - it's one of the top places in the US for technology jobs and I find the urban lifestyle fits my tastes very well.

Most of my engineering experience is in Java development, and in the open-source ecosystem that supports Java development. Some of the tools I like to work with include Solr/Lucene, Spring, Hadoop, Maven, Tomcat, Jetty, Jenkins, Nginx, MySQL and Cassandra. While less glamorous, I frequently use Google Gson and Apache HttpClient. I also have a working knowledge of JSTL, Velocity, HTML, CSS and JavaScript. I'm not a very good UX designer, but I keep working on it.

I have long been fascinated by distributed systems, especially the impact of network partition on distributed computing. Some of my other interests include responsive/mobile web design, native Android development, data visualization, large scale data analysis, real-time information processing, software build systems and API's. Modular and layered designs are a cornerstone of my software design style. Software tends to come apart at the interfaces, so it's important to focus on them.

In conclusion I want to introduce a companion application to this blog. I'm launching a demo application that reports status information and news related to mass transit in the New York City metro area. I expect the techniques and challenges involved will help me find good topics to post about on the blog. It's pretty basic at the moment.

Thanks for joining me on this writing journey. I'm not sure where this will take me, but that's part of the appeal. Happy reading!

Comments

Popular posts from this blog

ReactJS, NPM and Maven

I'm just starting to get into working with ReactJS, Facebook's open source rendering framework. My project uses SpringBoot for annotation-driven dependency injection and MVC. I thought it would be great if I could use a bit of ReactJS to enhance the application. If you're looking for a basic conceptual intro, I recommend ReactJS for Stupid People and of course the official documentation  is quite good. In full disclosure, I still have no idea how to do "flux" yet. As an experienced Java backend developer, I'm pretty decent at hacking Maven builds - which is precisely what this blog post is going to be about. First, a word about how React likes to be built. Like many front-end tools, there is a toolkit for the node package manager (NPM). From the command prompt, one might run npm install -g react-tools  which installs the jsx command. The  jsx  command provides the ability to transform JSX syntax into ordinary JavaScript, which is precisely what I want...

Solved: Unable to Locate Spring Namespace Handler

I attempted to run a Spring WebMVC application, and when starting up the application complained that it didn't know how to handle the MVC namespace in my XML configuration. The project runs JDK 7 and Spring 4.0.6 using Maven as the build system. The following is my XML configuration file: <?xml version="1.0" encoding="UTF-8"?> <beans xmlns="http://www.springframework.org/schema/beans"        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"        xmlns:mvc="http://www.springframework.org/schema/mvc"        xsi:schemaLocation="         http://www.springframework.org/schema/beans         http://www.springframework.org/schema/beans/spring-beans.xsd         http://www.springframework.org/schema/mvc         http://www.springframework.org/schema/mvc/spring-mvc.xsd">          <mvc:annotation-driven/> ...

Capture Everything

This week I've started planning for the next version of our data collection system. The key realization for me is that I do not know all the questions we will need to answer in the future. Our current focus is on specific sequences of click events, but in the future we might want to look at browser versions or behavioral patterns related to IP addresses. If we don't capture user-agent, for example, we won't be able to answer questions about browser versions. If we don't capture IP then we cannot look for patterns in IP addresses. We should store data in a way that maximizes the range of questions we can address in the future. In the past few years, the cost of storing data have continued to fall. We use AWS extensively.  Amazon S3 costs are very reasonable and guarantees a high level of availability. Also, lower compute costs and open source tools like Hadoop that process large data volumes have greatly increased our ability to extract valuable insights from data. So s...