Better Scala Tuples With shapeless
Shapeless provides a little syntax sugar that makes a standard Tuple
behave like a collection. Learn more about this API in a tutorial by Scala and Akka trainer, mentor and consultant Michael Pigg.
Shapeless provides a little syntax sugar that makes a standard Tuple
behave like a collection. Learn more about this API in a tutorial by Scala and Akka trainer, mentor and consultant Michael Pigg.
Anyone working on concurrent and distributed applications on the JVM should be familiar with Akka. Akka is an implementation of the Actor model that can be used from Scala or Java applications to provide a concurrency model that is designed from the ground up for systems spanning multiple machines. Defining an Actor The key abstraction in Akka is the Actor, which provides behavior and can store state. In Akka, actors are guaranteed to be run in a single-threaded illusion, which…
Rod Biresch, one of our Software Engineers, has posted another blog entry on working with the W65C2655XSB microcontroller board. This time, he shows us how we can use machine code to blink the LED, and how it translates to assembly language.
Rod Biresch, one of our Software Engineers, recently wrote a blog post about the W65C265SXB developer board based on 65xx technology. This blog post kicks off a series of posts exploring 65xx technology and how it pertains to the IoNT (Internet of Nano Things) market.
Chariot consultant Michael Pigg takes a look at using the Scala compiler’s -Xprint option to show us what’s happening under the covers.
What’s new in AngularJS’ 1.4.0 release? Chariot training director Ken Rimple explores the latest and greatest in AngularJS.
As a developer, you’ve probably heard about Vagrant, Docker, Chef and other VM and container tools. This series of articles will attempt to explain what these tools do and why you may want to investigate using them.
Becca Refford is an intern here at Chariot Solutions where she is learning to program in Java and JavaScript. She also serves as the producer of the Chariot podcast series where she edits our podcasts and books guests. She began her tech life as a student in the TechGirlz program, and is committed to continual learning and self-improvement.
I was able to attend Scala Days 2015 in San Francisco and see some excellent presentations on the Scala ecosystem. I’d like to highlight ones that were of particular interest to me.
This article is very old, and as such do not rely on it for information about the Angular 2.0 router API. As of this time, the new router has a few naming conventions to be aware of. Modifying the components directory I didn’t want to place my components in the root directory of my web application – instead I wanted to stick with a convention where I store all Angular code within an app prefix instead. I then wanted the…