Navigating the Front End Wilderness Part 2

Today I ran into major problems trying to setup a React script to query JSON from a site and parse it into something usable. I’m new to this stuff and used an existing tutorial to mangle according to my needs. I ended up with the following code: var PlanetList = React.createClass({ getInitialState: function() { return {Planets: []}; }, componentDidMount: function() { this.serverRequest = $.getJSON(this.props.source, function (result) { var parray = result....

March 11, 2016 · James

Navigating the Front End Wilderness Part 1

Recently I’ve set myself a task of developing a web based game in order to get myself up to speed on modern development patterns and technologies… something I haven’t done since I worked with PHP over a decade ago. For my application I wanted to work in a MVC pattern and to carve off the view layer as client side. For this task I selected React. This is a challenge for me as the minimal amount of Javascript I know has been used to create Gluecode for automation tasks....

February 28, 2016 · James

Docker Integration with IntelliJ IDEA

Often times you may have a need to spin up multiple machines to test out an application you are developing. Frequently this can lead you to install all manner of software and frameworks on your local laptop. Overtime this may lead to application conflicts or just a plain mess. With IntelliJ IDEA and Docker, it’s now quite easy to deploy your application into a Docker container or containers directly from your IDE with the click of a button....

February 3, 2016 · James

Eclipse Container Integration with VMware AppCatalyst

The past year has seen tremendous growth and support for Containerization within the Development space. Containers provide a fast and easy way to fire up a multitude of different development, test, and even production environments. Unfortunately Docker does not run natively on OSX, an abstraction layer is needed to create a Container Runtime Host for the Docker service to run on. Enter VMware AppCatalyst and Project Photon: Project Photon: A lightweight purpose built Linux Container Runtime Host currently released as an Open Source Tech Preview project by VMware AppCatalyst: A CLI/RESTful API driven lightweight hypervisor for OSX which provides a perfect environment for running Photon instances hosting Docker services The goal of this article is to walk the user through the initial configuration steps required to integrate VMware AppCatalyst with IntelliJ IDEA....

January 26, 2016 · James