conference – Stepan Suvorov Blog https://stepansuvorov.com/blog Release 2.0 Sun, 22 Jan 2017 08:39:19 +0000 en-US hourly 1 https://wordpress.org/?v=6.3.1 ngEurope 2016. brief review https://stepansuvorov.com/blog/2016/10/ngeurope-2016-brief-review/ https://stepansuvorov.com/blog/2016/10/ngeurope-2016-brief-review/#comments Fri, 28 Oct 2016 08:59:12 +0000 http://stepansuvorov.com/blog/?p=3134 Continue reading ]]>

Several days ago I had a chance to visit ngEurope conference. It was 2 nice intensive days filled with presentations. If by some reason you were not there and don’t have time to watch all 16 hours I made some notes for you.

First Day

Keynote (slides coming soon, video)

Miško Hevery made this presentation in so automatic mode like he made the same one more than 10 times already: looking in one point and reading text learned by heart. Check it out: he was alive first 1-2 minutes – rest was for robot that was reading the text.

Key points:

  • focus not only on web but also mobile and desktop appsangular-mobile-desktop
  • Angular2 is not a framework, but a platformangular2 platform
  • performance part: lazy loading, property tricks
  • detailed errors
  • explanation of change detection options
  • a bit about tools (angular-cli, augury)
  • several words about AoT
  • and Angular Universal

I think it’s good talk to have something like general overview of all the coming conference topics.

Angular & RxJs (slides, video)

Rob Worman with his favourite topic – reactive programming. Where could we find reactive approach in ng2?

  • Forms
  • Http
  • Async pipe
  • Router
  • @Query

Next Rob provided example of typeahead component building with ng2 and RxJs. Step by step with explanations. It’s the best quick start with RxJs that you could find. Strictly recommend if you did not have experience with reactive programming before.

Nice parts to take if you already working with RxJs:

  • method let() and taking out common part of the sequence
  • try to avoid using async pipes in many places (better to combine them in one on component params level)
  • future plans: to make Observable.fromEvent even more easy to use with @ObserveChild, @ObserveChildren decorators:

observeChild-decorator

Angular BatScanner (slides, video)

It was quick presentation of chrome extension for inspecting Angular2 application performance (BatScanner) by Douglas Duteil. Also Douglas showed the way of creating “hooks for hooks” and compiler injections to reach the goal.

Widgets for Angular2 (slides, video)

Pawel Kozlowski named his talk even “Custom widgets for Angular2? Piece of cake!“.

Let me retell you all the ingredients:

  • clear inline bindings                                                     clear-bindings
  • usage of <template> tag
  • css encapsulation
  • rxjs
  • ngZone for async update of the DOM
  • nice template shortcuts                                  ng2-template-shortcuts
  • change detection strategies
  • server side rendering
  • animations
  • UI-toolkit (ng-bootstap)

Data science with angular (video)

Pretty funny speaker, Ari Lerner. His virtual machine with slides crashed and after some unsuccessful tries we switched to next(Unit Tests) speaker.

Unit Tests for Angular2 Applications(slides, video)

Frankly speaking did not get Vikram Subramanian presentation: for developers who already worked with ng2 unit-tests it should be obvious, but for the rest it was not clear enough.

May be it was extra difficulty to focus on subject because of previous presentation confusion.

Embedded hybrid features in Mobile Banking App (video)

I would say that Willem Veelenturf presented not really technical topic. His experience how they make ionic application with the same performance as native app and the main idea(if I’m not mistaken) that they created own cordova plugins and integrate them with existing ionic app. And it was a statement that ING baking app(that they made) is the best in Netherlands. Sorry Willem, but it’s obvious that ABN AMRO mobile app is the best in NL ;)

Security in Angular2 (video)

Martin Probst and Raphaël Jamet provided nice hints how Angular2 helps you to prevent XSS vulnerabilities and how not to brake it.

It was all about sanitizing the data. And it’s good for all of us that Angular provides sanitizer from box. More over it knows about different contexts and it will not try to sanitize “<script>” tag if it’s URL resource.

security-contexts

But sometimes you need to output content that can not be sanitized by Angular, for example you want to place youtube video(that is not provided from your domain) on your site. In this case you need to do sanitization yourself, and don’t be lazy by just using bypassSecurityTrustResourceUrl method to switch of Angular one!

Gettings to Angular2 (slides coming soon, video)

It was a talk by Jen Bourey about ng1/ng2 migration. Most part of the presentation was about ngUpgrade tool. And the most efficient way – page oriented upgrade:

and it’s possible with parallel routing:

Everything had been shown on live demo together with lazy loading.

!important: $compile service will not work if you try to update ng1 directive to ng2.

ngupgrade-example on github.

UPD: nice article by Victor Savkin – Migrating Angular 1 Applications to Angular 2 in 5 Simple Steps.

Typescript latest (video)

The most part of the talk by Daniel Rosenwasser was about why we should use Typescript, but not about new features as title said. It was live coding where Daniel showed that you should not be afraid of Typescript and it’s really easy to switch from EcmaScript 2015. And then it was angular1 example how to write it with Typescript. And finally at the end of the talk we started with new features:

  • easy types with @types
  • nullable types

and for TS2.1:

AngularFire2 and you (slides coming soon, video)

Erik Haddad just made promotion for Firebase. Nothing new. May be it could be nice intro for developers who are just starting with Firebase.

And, yes, AngularFire2 has reactive approach based on Observables that’s nice!

Second Day

Angular CLI & You (video)

It was a story from Hans Larsen that started with explanation how painful was the process of working with ng1 environment.

And with angular-cli you everything from box:

  • ng new
  • ng build
  • ng serve
  • ng test/ ng e2e
  • ng generate …  – that will do not only code scaffolding for you but also all the imports

So:

  • compile SASS/LESS
  • TypeScript transpiration
  • Building
  • Asset optimisation
  • Live reload via websockets
  • Environment file(dev/prod configuration)
  • Also!: AoT and Tree Shacking

And some words what’s coming:

  • FASTER
  • Split CLI and Toolkit
  • Refactoring tools (mostly for updating Angular versions)
  • Addons and scripting
  • Library development

And after the presentation I also asked Hans about future plans for creating ng2 module library that could be easily integrated into cli, so you can install and apply any ng2 3rd party module by one command like:

ng install material

but unfortunately there are still no plans of doing it in nearest future.

Angular2 Applications with Augury (video)

It was introduction of the most powerful(current moment) chrome extension to debug and analyse Angular2 applications – Augury by Vanessa Yuen. She announced this tool like “not just a debugger”

So what does it do for you:

  • component relations
  • detailed component info & editable properties
  • dependancy diagram
  • change detection strategy
  • router structure

After it was live demo with debugger Fish Game and explanation what is under the hood of Augury: it’s build with Angular2 and with using its debug API.

Roadmap:

  • bugfix
  • injector graph improvements
  • native platform support

Getting Universal with Angular2 (video)

Wassim Chegham explained what is Angular Universal and when should we care about server side.

Why:

  • SEO
  • link preview (for social media)
  • web app gap (or first page rendering)

How to sync the state between first page rendered on server and real spa? It’s manager by special script preboot.js that records all the events before single page application is loaded and tries to reproduce it after.

To start:

[javascript]
import { UniversalModule } from ‘angular2-universal/browser’
[/javascript]

and for server side:

[javascript]
import { UniversalModule } from ‘angular2-universal/node’
[/javascript]

There are a lot of renders for different node frameworks, for example express.

There is Angular-Universal node starter.

Angular-cli support is coming soon.

From UI-Router to Component Router (slides coming soon, video)

Very good structured talk about routers by Nir Kaufman, really recommend you to watch this presentation have more deep understanding of routers in general:

  • states
  • use hash
  • tracing events
  • template syntax
  • nested states + lazy loading
  • parameters + Observables
  • resolve
  • extra data
  • events
  • guards
  • multiple views

Book to read – Angular Router by Victor Savkin

Reactive Music Apps in Angular and RxJs (video)

It’s difficult to resume presentation of Tero Parviainen, you just need to watch it!

He took patters from Terry Riley “In C” and with ng2 and RxJs made visualised music box out of it.

Demo and code.

ngAnimate2 = Layouts + Animation (video)

Matias Niemelä uncovered ng2 animation magic. Basics is:

  • defined inside @Component
  • DSL(Domain Specific Language) – animation syntax
  • animation triggers are State-based

Example:

[javascript]
@Component({
animations: [ trigger(‘myAnimation’),
[ transition(‘* =&amp;amp;amp;gt; *’,
[ style({opacity:0}),
animate(1000, { opacity: 1 })
])
]],
template: `<div [@myAnimation]="state">…</div>`
})
class Cmp {}
[/javascript]

Animations have callbacks:

  • (@animation.start)=”onStart($event)”
  • (@animation.done)=”onDone($event)”

Coming soon:

  • styling with CSS classes – style(‘.invisible’)
  • query() + select()
  • css parser
  • renderer/js integration
  • immediate canceling

If you just started with angular2 animations I really recommend to watch the presentation: it’s less than 20min but it contains material for several hours of intensive learning. May be Matias expected to have more time for talk, because he was sliding the slides so fast that I guess most past of the audience got lost the focus very soon.

Demo source code.

Evolution of Web on Mobile (video)

I found presentation Adam Bradley not interesting at all. I expected more from the lead of Ionic platform. “cars history, web/js history, now days mobiles, browsers, js much faster, bottleneck – network” – that’s all you need to know from this speech.

You will learn RxJs (slides coming soon, video)

A lot of live coding from André Staltz to build own RxJs library. All types of callbacks we could group in 3: next, error, complete, if we combine all 3 into one object and call it observer:

[javascript]
const observer = {
next: () => {},
error: () => {},
complete: () => {}
}
[/javascript]

and can pass this object to special method giveMeData:

[javascript]
giveMeData(observer);
[/javascript]

so inside this method we could have:

[javascript]
function giveMeData(ob){
ob.next(‘data’);
ob.complete();
};
[/javascript]

and now let’s assume that we have object `observable` and `giveMeData` is property of this object:

[javascript]
const observable = {
giveMeData: (ob) => {}
};
[/javascript]

And now we can rename `giveMeData` to `subscribe`.
So on and so forth with map and filter methods…
Nice to have more deep understanding of reactive programming pattens.

Minifying Angular2 Applications ( slidesvideo)

Presentation from Alex Eagle was not about minification, it was about building tools and optimization in general:

  • style checker
  • type checker (tslint)
  • ngc(AoT optimization) over tsc
  • lazy loading
  • tree-shaking
  • minification
  • compression

Full throttle Cross-platform development with Angular2, Cordova and Electron (video)

Christian Weyer and Thorsten Hans made some fun out of live coding with ng2 building app for different platforms. Thorsten did the coding and Christian kept audience warm.

Custom renderers in Angular2  (video)

May be I was just tired after all the talks at the end of the day, but frankly speaking I expected more from this topic by Marc Laval.  It was pretty abstract, but not highlighting the idea and it was a lot of code on slides that makes everything even more confusing. It was something about angular-richtext, nativescript and react-native renderers.

 

 

]]>
https://stepansuvorov.com/blog/2016/10/ngeurope-2016-brief-review/feed/ 1
ng-nl 2016. brief review https://stepansuvorov.com/blog/2016/02/ng-nl-2016-brief-review/ https://stepansuvorov.com/blog/2016/02/ng-nl-2016-brief-review/#comments Fri, 19 Feb 2016 04:17:25 +0000 http://stepansuvorov.com/blog/?p=3024 Continue reading ]]> ng-nl2106 label

This year I also visited NG-NL Conference in Amsterdam and to keep the tradition will share my notes/thoughts about it.

Basically the conference was dedicated to looking deep in Angular2 parts and reactive programming experiments.

All the topics were split into 2 tracks. You can find all the program details here. My route was the following:

ng-nl-schedule

Because keynote talks were not separated and columns were not sync in time you could get the illusion of time jump.

Awesome Productivity with Angular 2 (video)

Martin Probst started keynote with kind of excuse why we need to do step forward -“frameworks have to move” – that sounds really funny. Probably it was soft launch or preparation not to scary developers with new features.

After it was quick introduction of all new things in Angular2. New template syntax that gets rid of tons nested directives and uses explicit attribute binding, and you always know whether it is property, event or two-way binding:

  • [property] – property binding
  • (event) – event binding
  • [(two-way)] – two-way biding (still confusing)

Some words about the component concept that will kill old directives, scopes, controllers. Exact announcement about performance: Angular2 is 4-times faster than Angular1.

Martin also said that team works not only on framework but also on the environment. To make dev tools unified and productive. So angular-cli.

And it was a part why we should use TypeScript:

  • makes code more reliable
  • much better doc generation
  • allows autocompletion
  • gives safer API changes
  • fast API renaming

And, of course, the statement that we can easily use Angular2 without TypeScript is not true, using Angular2 without TypeScript is hard pain: even examples on official site are not always up-to-date.

Well, it was quite informative, thank you!

ngUpgrade Your App to Angular 2 (slides coming soon, video coming soon)

It was light talk by Tero Parviainen who showed the step by step migration to Angular2 with help of ngUpgrade.

When you have ideal decoupled component application you can start with ngUpgrade:

[javascript]
import {UpgradeAdapter} from ‘angular2/upgrade’;

var adapter = new UpgradeAdapter();
var app = angular.module(‘myApp’, []);

adapter.bootstrap(document.body, [‘myApp’]);
[/javascript]

and to have new components in old project you should you such hack:

[javascript]
app.directive(‘productDetail’,
adapter.downgradeNg2Component(ProductDetail));
[/javascript]

and the same goes for services:

[javascript]
adapter.addProvider(ProductService);
[/javascript]

But when you code is not ideal (that we usually call real life) you have to solve all architectural issues first and only then do ngUpgrade manipulations.

Fist step could be to remove all ng-include and ng-controller statements and replace them into components. For more detailed instructions check this Tero’s article.

@Tero, the way of presenting information by commenting code videos works perfectly!

 

How to Write a Library for Angular 2 (slides, video coming soon)

Olivier Combe was making fast coding talk about steps of Angular2 library creation.

First of all it would be better to make workshop out of this talk, to let everyone do the same steps. Because when you don’t do it simultaneously all the steps looks so obvious.

I know Olivier, that’s not his first conference in speaker role, but he was nervous and all talk was in a hurry, it looked like he’d prepared presentation for an hour and was told to make it in 15 minutes.

There were some hint how to setup Karma preprocessors for TypeScript.

Did not know about .nmpignore file before.

@Olivier, it would be really nice addition if you put some code and commands into your presentation.

 

Angular 2 Change Detection Explained (slides, video)

Couldn’t miss Pascal Precht talk and switched to track2 for it. Should also say that room was overcrowded.

The talk started with explaining the problem that we want to solve – basically it’s Model – DOM synchronisation. (recommended reading “Change And Its Detection In JavaScript Frameworks” by Tero Parviainen) Model could be changed by:

  • events (click, submit)
  • ajax requests and fetching data from remote source
  • timers

and how Angular gets known about it? –  ZONES!

Some explanation about async flow magic and back to zones:

[javascript]
zone.run(() => {
foo();
setTimeout(doSth, 0);
bar();
});
[/javascript]

and for Angular2 it’s ngZone.

More details in Understanding Zones and Zones in Angular 2.

Smart change detection with immutable objects: it’s easy to check whether object has changed or not.

ChangeDetectionStrategy.OnPush – where you could setup logic and do not update component each time.

Observables to setup change “listener” only for specific component.

@Pascal, waiting for your superduper demo examples code :)

 

Lunch

During lunch brake I had a chance to speak to Igor Minar and Martin Probst, asked them about TypeScript like an extra complexity to move a project to Angular2. It looks like they are going solid for it, even with future ES7 and decorators. So if you want to use Angular2 you MUST learn TypeScript. It was a good advice from Martin to try TypeScript with current Angular1.X version and only after, when we are confident enough move to Angular2 and use it together. Let’s see how far we will go.

 

Reactive Angular 2 (slides, video)

It was life coding with Rob Wormald. He lifted the curtain of reactive programming. We made Typeahead component with Observables, it was really nice example to show how to put everything in one stream. Then we created chat app with firebase. And after it was Todo app with Redux. Third one was really difficult to follow.

Related example from Rob suddenly found on internet – plnk.

 

Introduction to RxJS 5 (slides, video)

More reactive stuff from Gerard Sans. History of streams: pipes(unix, 1973) – > streams(node.js, 2009) -> observables (Microsoft, 2012) ->observables (Angular2, 2014). Some obvious things that you can do with array in ES5 like forEach, map, filter, reduce. Examples with Observables. Subscribe. No debugger support yet.

RxJs could be implementation in Angular2 for:

  • asynchronous processing
  • http
  • forms: controls, validation
  • component events

…and again Typeahead component example (plnk), now with nicer styles.

 

Angular 2 and the Single Immutable State Tree (slides, video coming soon)

Talk of Ciro Nunes about immutables has a lot in common with Pascal’s “Angular 2 Change Detection Explained”.

pure function – returns new object.

ChangeDetectionStrategy.OnPush

Redux – unidirectional data flow.

Angular implementation

[javascript]
const appStore = createStore(rootReducer);
bootstrap(App, [
provide(‘AppStore’, {userValue: appStore}),
Actions
]);
[/javascript]

or

@Ciro, it looks like 3rd link under presentation is broken.

 

The new Component Router for Angular 2 and 1.x (slides, video coming soon)

Manfred Steyer started with some kind of fast slides, some of them with German notation.

Router LIfe Cycle Callbacks:

  • onActivate
  • onDeactivate
  • canDeactivate
  • @canActivate

Nice concept of honest authorisation with checkbox only :)

Lazy loading for components is there.

Router part inside each component:

[javascript]
app.component(‘bookFlight’, {
controller: BookFlightController,
templateUrl: ‘components/book-flight/book-flight.html’,
$routeConfig: [
{ path: ‘/’, component: ‘passenger’, name: ‘Passenger’ },
{ path: ‘/flight’, component: ‘flight’, name: ‘Flight’, useAsDefault: true },
{ path: ‘/booking’, component: ‘booking’, name: ‘Booking’ },
{ path: ‘/passenger/:id’, component: ‘passengerEdit’, name: ‘PassengerEdit’ }
]
});

[/javascript]

Access control could be done via @canActivate:

[javascript]
app.component(‘passengerEdit’, {
controller: PassengerEditController,
template: passengerEditTemplate,
$canActivate: () => {
console.debug("$canActivate");
return true;
}
});
[/javascript]

Can be installed in Angular1 via ng-controller, unfortunately did not find this place in your code.

Link to router config examples: Angular2 and Angular1.5

@Manfred, I think it should be some piece of code that goes after each model slide for better understanding. Second thing – we don’t need ControllerAs for Angular1.5 anymore.

 

Rendering in Angular 2  (slides, video)

Leonardo Zizzamia presented one more topic about trying to solve problem of synchronising Model and UI.

Render decoupling to make it possible to use different renders. Make it possible to have the same code base, same templates for different platforms.

Canvas Root Render

Angular2 Rendering is still in beta

and nice app – https://getplan.co based on Angualr1.4.9 (still migrating to 2)

 

Which Way Is Up? (video)

Todd Motto told us a nice story about Jerry, a pirat-packman-developerJerry js

I’ll not retell you the story, better wait for the video ;)

Todd just assembled all our doubts and fears about JS boom(what technology to use?), open source and participating in community life.

Some lessons from the story:

  • don’t be scared of new technologies
  • but don’t try to use them all at once, just keep an eye on them
  • contribute to open source projects – the great way of knowledge sharing
  • you know it well only when you can explain it well – write a blog, explain your thoughts
  • and keep in mind:

Nothing was achieved in comfort zone!

]]>
https://stepansuvorov.com/blog/2016/02/ng-nl-2016-brief-review/feed/ 6
ng-nl. brief review https://stepansuvorov.com/blog/2015/02/ng-nl-brief-review/ https://stepansuvorov.com/blog/2015/02/ng-nl-brief-review/#comments Sat, 14 Feb 2015 01:19:03 +0000 http://stepansuvorov.com/blog/?p=2334 Continue reading ]]> logo

I was happy to visit NG-NL Conference in Amsterdam (the first AngularJS one in NL) and would like to share my thoughts with you.

As far as there were a lot of topics to discuss conference was run in 2 tracks. Here you can find the whole schedule. I followed next route:

ng-nl plan so several words about each one.

Intro + Welcome (slides, video)

It was great speech by Aaron Frost. We can say that it was about everything and nothing(from tech side) the same time. He provided good structured way how everyone can grow as a professional inside AngularJS/JavaScript(and probably not only) community.

After several days/weeks/months listeners could forget the context, but they never forget awesome comparison that authors of frameworks and tools like builders who are constructing a bridge across the river, river of different development issues. And they know that these bridges would be used not only by them but mostly by juniors. So he wished us create our own bridges, help to improve existing ones and never troll builders.

Very inspiring! Thank you, Aaron.

Videogular and the future of HTML5 video (slides, video)

It was presentation of Videogular – HTML5 video player for AngularJS by Raúl Jiménez. First part of the presentation for me was like “reading” documentation for component and explaining obvious things. Second part was more interesting with life coding and real example. Site sawfish.stimme.de shows Videogular connected to google maps API that is really impressing!

@Raul, I will definitely have more detailed look on your project.

Lazy load anything using ocLazyLoad (slides, video)

A very short talk by Olivier Combe. He presented his extension ocLazyLoad that allows to do lazy loading for modules in AngularJS. Pointed out how important lazy loading is, especially for mobile limited network connection. Also it was some explanation how it could work with router (both ngRoute and ui-router). It’s nice that ocLazyLoad also support dependancy injection for loaded modules.

There are some expectations to get similar functionality in Angular1.5, we’ll see.

@Olivier, why only 20 min for such a fundamental concept? Already dived into the source code.

Visual Review – Automated GUI testing with Protractor

Daniel Marjenburgh presented Visual Review – tool to check visual changes between different project builds (btw name is terrible extremely difficult to google it :). The tool works together with protractor (thanks to special plugin VisualReview-protractor) that makes it really tasty. The base idea is quite simple: to make and compare screenshots. In protractor scenario code it looks simply like:

[javascript]
vr.takeScreenshot(‘AngularJS-homepage’);
[/javascript]

@Daniel, I liked the idea. Only one question is still open for me: how could I make it work with remote browsers (for example Browserstack service)?

TDD in javascript – Not a myth (slides)

In all the details and for the very basics – TDD in JavaScript by Ofir Dagan. In this presentation you could find answers for all the questions: “why to do testing?”, “how to do it right?”, “which tools to use?”, “how to analyse the coverage?” and even “how mother nature do TDD”. It’s really good and quick introduction for developers who want to start with testing.

@Ofir, I wish I met you 2 years ago when I started my “trial and error method” with TDD.

Inside The Angular Directive Compiler (video)

I even could not imaging that this lecture about Directive Compiler would be so interesting for me. Step by step together with Tero Parviainen we recreated functionality of $compileProvider.$compile method. It consists of 4 steps:

  • compile (parse html template for directives)
  • link (link them to the scope)
  • inheritance (create new scope if needed and operate with it)
  • isolation (not provide the scope by itself but do attribute binding)

@Tero, you pushed me to look into source code more often :) And of course thank you for the book!

Domain Model Objects in AngularJS (video)

Gert Hengeveld showed how we could create Model layer based on javascript classes (or constructor functions). During all the presentation I had filling that backend developer wants to bring his concepts to client side(To be sure that I understood concept correctly I went to original article). I was not convinced that I should try this approach. There were so many theoretical things that we ostensibly would be able to do with this structure(I even don’t remember the whole list): validation, relations, etc… I would like to see your implementation of this concepts. Because without implementation it’s nothing to discuss. In our applications for data layer we are using Restangular wrapped with our services where we do validation and all this stuff, and it works pretty well.

@Gert, if you have some code to share – please show it, I really would like to have a look.

How I made a mess of my Angular application (slides, video)

Very funny speech by Dave Smith about past Angular mistakes and ruler punishment. I just provide the list of mentioned mistakes and solution(in brackets) for them:

  • scope abuse ( do not create scope everywhere)
  • global controller functions ( use another syntax )
  • shadow scope ( use “controllers as ” or nested model)
  • $watch abuse ( use ng-change, events, flux pattern)
  • ng-include ( just don’t use ng-include)
  • pass scope like param to services ( never do so)
  • home grown build tools ( many existing proven tools)

btw, it was a suggestion to put own Angular mistakes on twitter with tag #ngoops (not much for now)

@Dave, mine were(except several from your list):

  • bad file structure
  • everything in controller (DOM manipulations and business logic)
  • used jQuery a lot instead native directives

Modern authentication solutions (slides, video)

Manfred Steyer told us a lot about OAuth 2.0 and OpenID and not much about AngularJS implementation.  And it would be also interesting to hear about some existing solutions for Angular and compare them.

@Manfred, 45 min definitely not enough for OAuth specific. I guess audience divided into 2 parts: who worked with OAuth before – for them it was boring, and who did not know this protocol – they still don’t know it.

AngularJS Lab

I don’t know why, but we skipped this.

But still I had quite interesting talk with Christoph Burgdorf. Christoph, thank you for advise about detecting language for authorised user.

Closing Keynote (video)

keynote

I’m glad to be with Carmen Popoviciu in one community.

 

@organisers, @speakers, thank you very much for such a great event!

]]>
https://stepansuvorov.com/blog/2015/02/ng-nl-brief-review/feed/ 4