How Much Code Is Needed to Create Something Useful?

#ICYMI: Your business likely requires customized views of the data that is core to the creation of your product. Decades ago, accomplishing this involved development of large data analysis software libraries that were customized to a company’s particular needs, along with user interfaces that enabled employees to view the data, so they could respond to anomalies.

Much has changed in recent decades. Data analysis code that had to be custom-developed decades ago is now available in software libraries such as Python’s NumPy and SciPy. Similarly, modern data display libraries available, for example, Matplotlib. This code is well tested and verified by a large user community. By utilizing these libraries, developers can simply call verified functions, rather than developing new custom code. https://goo.gl/gQ5omL #DataIntegration #ML

REST Webservices Using Jersey 2.x and Maven

An updated version of JAX-RS (Java API for RESTful Web Services) was released in August 2017 via JSR 370. A reference implementation was released by Jersey in April 2018, Jersey 2.27. This article attempts to test a sample REST implementation using this update. It uses a single REST API operation.

* Create a new Maven project in Eclipse. Make sure to choose “maven-archetype-webapp” as artifact ID from the catalog. https://goo.gl/TLcPmc #DataIntegration #ML