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. O

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/>      </beans> I have a few more beans than this, but their details aren't especially relevant

Spark Cassandra Connector Tip

We're using Databricks as our provider for Spark execution, and we've been struggling to get the Spark Cassandra connector to work outside of the local development environment. The connector was attempting to connect to 127.0.0.1 even though we were passing the new host information into the getOrCreate(..) call. After working with Ganesh at Databricks support, we figured it out. The realization is that in Databricks, calls to getOrCreate() from a fat jar don't create a new SparkContext object. Thus, the configuration passed in gets ignored. If you want to update the Cassandra host information for the connector, you must update it after  the call to getOrCreate() instead. Add the configuration directly to the context and you'll be good to go!