AngularJS

DevNews #96 – ng-conf 2015 – day 1 recap – Angular 2, 1.4 and more

Salt Lake City, Utah, is a beautiful place to have a conference. The organizers must realize that, as they planned ski trips and other events all around the show. That said, I’ve been locked up in my hotel room for the most part digesting what I’ve learned in Day 1. There is a live stream … Read More

DevNews #95 – We talk about new AWS services, Angular JS 2.0 surfaces, and the Apple Car is a thing?

In this episode, we talk about Waitr and Protractor, two Jasmine WebDriver APIs, Angular 2.0 surfaces, we talk about Apple’s self-driving car, and discuss a bunch of new Amazon AWS features including Cloud Trail for Route53 and health checks. Stay to the end for our silly Apple Car jokes.

TechCast #84 – AngularJS creator Misko Hevery on Angular 2.0 and x.ai team on Amy Ingram, A/I calendar assistant

Today’s show features the creator of the landmark Javascript framework, AngularJS. I spoke to Misko Hevery about the rise of Angular in our current, “Good Parts JS” ECMAScript 5 world, how it evolved, and his focus on the next chapter, Angular 2.0. My second guests, Alex Poon and Matt Casey, have created the AI-based digital assistant, Amy Ingram, for coordinating meeting schedules by reading and responding to real email texts and learning your preferences.

My $scope Is Not Your Dumping Ground

This little problem came up in my recent AngularJS/Ionic app. It all started with an innocent modal dialog. There are several, but for the sake of simplicity, let’s look at the login dialog: The generic dialog plumbing is a div with a surrounding overlay that dims out the rest of the screen. You can click … Read More

DevNews #93 – Angular 2.0 news, Ember reaches 1.8.0, and Minecraft to learn programming?

Gource — open source visualization tool, example Haydle visualization Ember 1.8.0 — the move to HTMLBars React.js: How does it fit in with everything else? GitHub Enterprise on AWS At AWS ReInvent this week – AWS Lambda – cloud computing functionally– oh and there’s support for Docker via containers Rob Eisenberg leaves Angular team Khan … Read More

AngularJS & Ionic: CSS Library Selection

Aaron Mulder reviews several mobile CSS frameworks – JQuery Mobile, TopCoat, Bootstrap and Ionic – for a side project. Check out his criteria and selection.

DevNews #91 – What we know about Angular 2.0 (so far)

If you’ve been working with Angular a lot recently, you may have received word about a set of potentially breaking changes in the next major version, 2.0. In this podcast, Ken Rimple, Don Coleman and Joel Confino discuss Angular 2.0, the reason for these changes, and some of the potential impact.

AngularJS Corner – The ngMock and ngMockE2E libraries

AngularJS provides two powerful mock and test support modules, both contained in a single script file. The modules, ngMock and ngMockE2E, provide different features for different purposes, though both modules are defined in, angular-mocks.js. In this post I’ll explain the differences between the modules and how they get mounted in a test scenario.

AngularJS Corner – Using promises and $q to handle asynchronous calls

A number of Angular services return promises: $http, $interval, $timeout, for example. Anything needing to run in the background will need to coordinate with a caller such as a controller or directive, and the promise API is the way to go. But how does it work? We’ll show you how with this short tutorial.