SlideShare a Scribd company logo
Web	Framework

AngularJS
How	to	code	today	with	tomorrow	tools
Carlo	Bonamico	-	@carlobonamico
NIS	s.r.l.
carlo.bonamico@gmail.com
carlo.bonamico@nispro.it
Yes	but	you	can't	do	that	in	a	web	app
Sure?	people	used	to	think	it	was	impossible	to	get
interactive	email	clients	(GMail)
word	processors	and	spreadsheets	(GDocs)
file	share	(Dropbox)
real-time	monitoring	(Kibana)
offline	apps	(Nozbe)
The	web	is	(and	will	always	be)	more	powerful	than	people	think!
the	same	now	applies	to	mobile	web
which	will	overcome	the	"desktop"	web	in	terms	of	traffic
next	year
OK,	wo	I	will	go	for	HTML5
to	implement	my	next	great	service/project
																										...	a	few	months	go	by...

WTF!!	I	did	not	think	web	development	was	could	be	that	messy!
Spaghetti	code	tastes	better	in	a	dynamic	language	such	as	JS
I	spent	most	of	my	time	juggling	the	DOM
I	cannot	integrate	the	Form	widgets	I	love	with	the	charts	library	I
love
Where	is	modularization?	and	encapsulation?
"everything"	can	fiddle	with	"everything"...
Then	the	problems	begin
Initially,	it	"feels"	more	productive,	but...
When	the	app	grows,
debugging	gets	harder
refactoring	gets	harder
effective	testing	gets	impossible
When	the	team	grows,	collaboration	becomes	harder!
every	time	a	designer	makes	a	beautiful	look,	we	spend
days	implementing	it	and	regression	testing
It's	becoming	impossible	to	evolve!
HELP	ME!

Please,	before	I	go	back	to	Desktop	development,
can	you	tell	me	if	there	is	a	better	way?
If	I	were	to	answer	this	question	in	2008...
Almost	a	no	brainer:	go	for	Adobe	Flex!
It	has
encapsulation,	interfaces
event	driven	GUI
modular	and	reusable	comoponents
great	tooling

The	web	platform	was	just	not	there	yet...
Fast-forward	to	2015...
Definitely	a	no-brainer:
go	for	Web	Components	+	event-driven	MVC
http://mozilla.github.io/brick/docs.html
http://www.polymer-project.org/
And	now?	on	end	of	2013
Blurry	situation...
Adobe	Flex	is	Open	Source	(but	maybe	too	late...)	and	lost	support
HTML5	is	booming,	but	large-scale	JS	dev	is	hard	

But	please,	I	HAVE	to	deliver	a	great	Web	App	in	a	few	months!
Well..
The	future	is	already	here	—	it's	just	not	very	evenly	distributed.
William	Gibson

If	the	hundred	year	language	(from	2113)	were	available	today,
would	we	want	to	program	in	it?
Paul	Graham	-	http://paulgraham.com/hundred.html
Enter	AngularJS
Use	tomorrow	web	technologies	today

http://www.angularjs.org
And	almost	transparently	upgrade	as	soon	as	they	are	available

http://www.2ality.com/2013/05/web-components-angular-ember.html
Robust,	productive	(&	fun!)	Web	dev
Open	Source	toolset
backed	by	Google
great,	active	and	open	community

used	from	startups	to	Microsoft,	Oracle	&	Google	itself

Extremely	productive,	robust,	testable,	and	scalable
from	mockups	to	small	apps	to	large	enterprise	apps
Strong	points
Angular	follows	and	ehnances	the	HTML	way	of	doing	things
declarative
interoperable
Event-driven	Model-View-Controller
plain	JS	models
Data	binding

View	is	as	decoupled	as	possibile	from	logic
Great	for	effective	Designer-Developer	workflows!
OK,	you	are	getting	me	interested

but	I	want	proof!
Well...

OK!	THIS	presentation	is	not	PowerPoint
nor	OpenOffice	nor	Keynote
It's	an	AngularJS	app	I	wrote	in	a	few	hours

Press	F12	to	be	sure!

Thanks	http://plnkr.co	!
#
What's	inside
A	View:	index.html
a	style.css
peppered-up	with	AngularJS	'ng-something'	directives
A	model
data:	slides.md
code:	array	of	slide	object
A	controller
script.js
The	model
			var	slide	=	{
																				number:	i	+	1,
																				title:	"Title	"	+	i,
																				content:	"#Title	n	markdown	sample",
																				html:	"",
																				background:	"backgroundSlide"
				};
A	service	to	load	the	model	from	markdown
				ngSlides.service('slidesMarkdownService',	function	($http)	{
				var	converter	=	new	Showdown.converter();
				return	{
								getFromMarkdown:	function	(path)	{
												var	slides	=	[];
												$http({method:	'GET',	url:	path}).
																success(function	(data,	status,	headers,	config)	{
																				var	slidesToLoad	=	data.split(separator);	//two	dashes
																				for	(i	=	0;	i	<	slidesToLoad.length;	i++)	{
																								var	slide	=	{
																												content:	slidesToLoad[i],
																												//..	init	other	slide	fields
																								};
																								slide.html	=	converter.makeHtml(slide.content);
																								slides.push(slide);
																				}
																});
												return	slides;
								}
				}
})
A	simple	declarative	view
binding	the	model	to	the	html
<body	ng-app="ngSlides"	ng-class="slides[currentSlide].background"
						ng-controller="presentationCtrl">
<div	id="slidesContainer"	class="slidesContainer"	>
				<div	class="slide"	ng-repeat="slide	in	slides"
																							ng-show="slide.number	==	currentSlide"	>
								<div	ng-bind-html="slide.html"></div>
								<h4	class="number">{{slide.number}}</h4>
				</div>
</div>
</body>

and	a	very	simple	css	for	positioning	elements	in	the	page
A	controller	focused	on	interaction
				ngSlides.controller("presentationCtrl",	function	($scope,	$http,
																																						$rootScope,	slidesMarkdownService)	{
				$scope.slides	=	slidesMarkdownService.getFromMarkdown('slides.md');
				$scope.currentSlide	=	0;
				$scope.next	=	function	()	{
								$scope.currentSlide	=	$scope.currentSlide	+	1;
				};
				$scope.previous	=	function	()	{
								$scope.currentSlide	=	$scope.currentSlide	-	1;
				};

});
Integration	with	non-angular	code
$apply	utility	function	to	notify	angular	of	changes
angular.element(	...).scope()
to	access	controller	methods	and	scope	outside	angular
document.onkeyup	=	KeyPressed;
function	KeyPressed(e)	{
				var	key	=	(	window.event	)	?	event.keyCode	:	e.keyCode;
				var	controllerElement	=	angular.element(document.getElementById("slidesContainer"))
;
				var	scope	=	controllerElement.scope()
				scope.$apply(function	()	{
								switch	(key)	{
												case	39:
												{
																scope.next();
																break;
												}
				//...
Slide	sources	in	markdown	format
slides.md
#It's	an	AngularJS	app	I	wrote	in	a	few	hours
<br/>
##	Press	F12	to	be	sure!
What's	inside	-	details
A	custom	directive
A	few	filters
AngularJS	magic
Any	sufficiently	advanced	technology	is	indistinguishable	from	magic.
Arthur	C.	Clarcke
<li	ng-repeat="slide	in	slides	|	filter:q">...</li>
AngularJS	magic	is	made	of
Dependency	Injection
makes	for	decoupling,	testability,	and	enriching	of	your
code	and	tags
		function	SlidesCtrl($scope,	SlidesService)
		{
				SlidesService.loadFromMarkdown('slides.md');
		}
AngularJS	magic	is	made	of
Transparent	navigation	and	history	with	 ng-view 	and	 ng-route
Databinding
a	few	little	tricks	(Dirty	checking)
which	will	disappear	when	the	future	(ECMAScript6
object.observe)	arrives
The	power	of	composition
Microkernel	architecture
core:	HTML	compiler,	Dependency	Injection,	module
system
everything	else	is	a	directive,	service	or	module
Composition	of
modules
module('slides',['slides.markdown'])

directives
<h1	ng-show='enableTitle'	ng-class='titleClass'>..</h1>

filters
slide	in	slides	|	filter:q	|	orderBy:title	|	limit:3

...

Do	you	know	of	other	microkernel-based	technologies
with	a	strong	focus	on	composition?
they	tend	to	be	strong	and	long	lived	:-),	right	Linux,	Maven,	Jenkins?
Take	advantage	of	AngularJS	capabilities
Integration	with	other	frameworks
Showdon	Markdown	converter
https://github.com/coreyti/showdown
Highlight.js	for	syntax	highlighting
plain	JS	for	keyboard	handling
AngularJS	is	opinionated
but	it	will	let	you	follow	a	different	way	in	case	you	really
really	need	it
Testing
Unit	Testing
mocking
http	mocking
End-To-End	testing
scenarios
Jasmine
Weak	points
Even	angular	is	not	perfect...	yet!
Dynamic	page	rendering,	so	SEO	is	hard
temporary	solutions	with	PhantomJS	on	the	server	side
a	few	cloud-based	services
personally	think	Google	is	working	on	fixing	that
Tooling	is	good	but	can	improve
Support	for	lesser	browser
Lessons	learnt
angularJS	docs	are	great!	but	beware	of	 <ANY	ng-show="{expression}">
If	you	write	 <div	ng-show="{divEnableFlag}">
It	won't	work!	Write	 <div	ng-show="divEnableFlag">
Lessons	learnt
Getting	started	is	very	easy
But	to	go	further	you	need	to	learn	the	key	concepts
promises
dependency	injection
directives
scopes
Lessons	learnt
Like	all	the	magic	wands,	you	could	end	up	like	Mikey	Mouse	as	the
apprentice	sorcerer
So	get	your	training!
Online
Codemotion	training	(4-5	february	and	4-5	march	2014)
http://training.codemotion.it/
Lessons	learnt
AngularJS	makes	for	great	mockups
interactivity	in	plain	HTML	views
AngularJS	changes	your	way	of	working	(for	the	better!)
let	you	free	of	concentrating	on	your	ideas
makes	for	a	way	faster	development	cycle
makes	for	a	way	faster	interaction	with	customer	cycle
essential	for	Continuous	Delivery!
To	learn	more
Online	tutorials	and	video	trainings:
http://www.yearofmoo.com/
http://egghead.io
All	links	and	reference	from	my	Codemotion	Workshop
https://github.com/carlobonamico/angularjs-quickstart
https://github.com/carlobonamico/angularjsquickstart/blob/master/references.md
Full	lab	from	my	Codemotion	Workshop
https://github.com/carlobonamico/angularjs-quickstart
Web	Components
http://www.w3.org/TR/components-intro/
Youtube	video	"Web	Components	in	Action"
http://css-tricks.com/modular-future-web-components/
Books
http://www.ng-book.com/
AngularJS	and	.NET	http://henriquat.re
My	current	plans
writing	about	AngularJS	and	security
attend	Marcello	Teodori	talk	on	JS	Power	Tools
integrate	AngularJS	with	my	favourite	Open	Source	server-side	dev
platform
http://www.manydesigns.com/en/portofino
preparing	the	'Advanced	AngularJS'	workshop
contact	us	if	interested
Thank	you!
Explore	these	slides
https://github.com/carlobonamico/angularjs-future-webdevelopment-slides
My	presentations
http://slideshare.net/carlo.bonamico
Follow	me	at	@carlobonamico	/	@nis_srl
will	publish	these	slides	in	a	few	days
Attend	my	Codemotion	trainings
http://training.codemotion.it/
Write	me	if	you	are	interested	in	the	upcoming	AngularJS	Italy	online
community	

and	thanks	to	Elena	Venni	for	the	many	ideas	about	Angular	in	our
last	project	together
AngularJS: How to code today with tomorrow tools - Codemotion Milan 2013
AngularJS: How to code today with tomorrow tools - Codemotion Milan 2013
AngularJS: How to code today with tomorrow tools - Codemotion Milan 2013
AngularJS: How to code today with tomorrow tools - Codemotion Milan 2013
AngularJS: How to code today with tomorrow tools - Codemotion Milan 2013

More Related Content

What's hot (20)

PDF
MEAN Vs MERN Stack | Detailed Comparison Between MEAN & MERN Stack
Mariya James
 
PPTX
Uses of java
joeyparkker
 
PDF
AngularJS in Production (CTO Forum)
Alex Ross
 
PDF
Full Stack Vs Mean Stack Vs MERN Stack Comparison & Benefits
Avya Technology Pvt. Ltd.
 
PDF
Top Web Development Frameworks Comparison: All You Need To Know
PixelCrayons
 
PPTX
Aeternity Blockchain - Ecosystem & Devtools [2019]
Przemysław Thomann
 
DOCX
Hai_Bui
Hai Bui
 
DOCX
AdamVisserResume
Adam Visser
 
PPTX
Mobile devices and SharePoint
maliksahil
 
PPTX
Developing Enterprise-Grade Mobile Applications
Simon Guest
 
PDF
MikePlatsidakisResume
Mike Platsidakis
 
DOCX
CVMaxSpoFormatIng
Massimo Sposato
 
PDF
PhoneGap: Building Mobile Applications with HTML/JS
Ryan Stewart
 
PDF
Building Cross-Platform Mobile Apps
Troy Miles
 
PDF
The Future Of Web Frameworks
Matt Raible
 
PPTX
Mobile applications for SharePoint using HTML5
Christian Heindel
 
PDF
Building Desktop RIAs with PHP, HTML & Javascript in AIR
funkatron
 
ODP
NetTantra Web Development Brochure
NetTantra Technologies
 
MEAN Vs MERN Stack | Detailed Comparison Between MEAN & MERN Stack
Mariya James
 
Uses of java
joeyparkker
 
AngularJS in Production (CTO Forum)
Alex Ross
 
Full Stack Vs Mean Stack Vs MERN Stack Comparison & Benefits
Avya Technology Pvt. Ltd.
 
Top Web Development Frameworks Comparison: All You Need To Know
PixelCrayons
 
Aeternity Blockchain - Ecosystem & Devtools [2019]
Przemysław Thomann
 
Hai_Bui
Hai Bui
 
AdamVisserResume
Adam Visser
 
Mobile devices and SharePoint
maliksahil
 
Developing Enterprise-Grade Mobile Applications
Simon Guest
 
MikePlatsidakisResume
Mike Platsidakis
 
CVMaxSpoFormatIng
Massimo Sposato
 
PhoneGap: Building Mobile Applications with HTML/JS
Ryan Stewart
 
Building Cross-Platform Mobile Apps
Troy Miles
 
The Future Of Web Frameworks
Matt Raible
 
Mobile applications for SharePoint using HTML5
Christian Heindel
 
Building Desktop RIAs with PHP, HTML & Javascript in AIR
funkatron
 
NetTantra Web Development Brochure
NetTantra Technologies
 

Viewers also liked (13)

PPTX
CommitUniversity AngularJSAdvanced Andrea Vallotti
Commit University
 
PPTX
AngularJS – Reinventare le applicazioni web
Luca Milan
 
PDF
REST con Jersey
Fabio Bonfante
 
PDF
Sviluppare applicazioni android
Paolo Montalto
 
PDF
Playing with parse.com
JUG Genova
 
PPTX
JMeter
JUG Genova
 
PDF
Java 9 by Alessio Stalla
JUG Genova
 
PDF
AngularJS Introduction
Carlos Morales
 
PPTX
EIP with Apache Camel
Andrea Torino Rodriguez
 
PPTX
Understanding angular js
Aayush Shrestha
 
PPTX
Java 8
alessiostalla
 
PPTX
Introduction to Angularjs
Manish Shekhawat
 
PDF
Angularjs
Francesco Portus
 
CommitUniversity AngularJSAdvanced Andrea Vallotti
Commit University
 
AngularJS – Reinventare le applicazioni web
Luca Milan
 
REST con Jersey
Fabio Bonfante
 
Sviluppare applicazioni android
Paolo Montalto
 
Playing with parse.com
JUG Genova
 
JMeter
JUG Genova
 
Java 9 by Alessio Stalla
JUG Genova
 
AngularJS Introduction
Carlos Morales
 
EIP with Apache Camel
Andrea Torino Rodriguez
 
Understanding angular js
Aayush Shrestha
 
Introduction to Angularjs
Manish Shekhawat
 
Angularjs
Francesco Portus
 
Ad

Similar to AngularJS: How to code today with tomorrow tools - Codemotion Milan 2013 (20)

PPTX
Front End Development | Introduction
JohnTaieb
 
PDF
Workshop HTML5+PhoneGap by Ivano Malavolta
Commit University
 
PDF
HTML5: the new frontier of the web
Ivano Malavolta
 
KEY
(For non-developers) HTML5: A richer web for everyone
Chris Mills
 
KEY
HTML5: what's new?
Chris Mills
 
PDF
Front End Development for Backend Developers - GIDS 2019
Matt Raible
 
PDF
What's next? J and beyond keynote 2015
Christian Heilmann
 
PDF
Professional web development with libraries
Christian Heilmann
 
PPTX
Introduction to Modern and Emerging Web Technologies
Suresh Patidar
 
PDF
Progressive Web Apps – the return of the web? Goto Berlin 2016
Christian Heilmann
 
PDF
three_software_development_trends_to_follow_in_2016
Interbrand
 
PDF
Speak the Web 15.02.2010
Patrick Lauke
 
PDF
Bruce Lawson, Web Development 2.0, SparkUp! Poznan Poland
brucelawson
 
PDF
Web Applications Are Technically Awesome!
MediaFront
 
PDF
A call to JS Developers - Let’s stop trying to impress each other and start b...
Christian Heilmann
 
PDF
Breaking out of the endless callback look - #jsday Italy keynote
Christian Heilmann
 
PPTX
HTML5 introduction for beginners
Vineeth N Krishnan
 
PDF
Real solutions, no tricks
Jens Grochtdreis
 
PPT
Flex vs HTML5
Ray Wong
 
Front End Development | Introduction
JohnTaieb
 
Workshop HTML5+PhoneGap by Ivano Malavolta
Commit University
 
HTML5: the new frontier of the web
Ivano Malavolta
 
(For non-developers) HTML5: A richer web for everyone
Chris Mills
 
HTML5: what's new?
Chris Mills
 
Front End Development for Backend Developers - GIDS 2019
Matt Raible
 
What's next? J and beyond keynote 2015
Christian Heilmann
 
Professional web development with libraries
Christian Heilmann
 
Introduction to Modern and Emerging Web Technologies
Suresh Patidar
 
Progressive Web Apps – the return of the web? Goto Berlin 2016
Christian Heilmann
 
three_software_development_trends_to_follow_in_2016
Interbrand
 
Speak the Web 15.02.2010
Patrick Lauke
 
Bruce Lawson, Web Development 2.0, SparkUp! Poznan Poland
brucelawson
 
Web Applications Are Technically Awesome!
MediaFront
 
A call to JS Developers - Let’s stop trying to impress each other and start b...
Christian Heilmann
 
Breaking out of the endless callback look - #jsday Italy keynote
Christian Heilmann
 
HTML5 introduction for beginners
Vineeth N Krishnan
 
Real solutions, no tricks
Jens Grochtdreis
 
Flex vs HTML5
Ray Wong
 
Ad

More from Carlo Bonamico (11)

PDF
Build Your Own Angular Component Library
Carlo Bonamico
 
PDF
Angular Rebooted: Components Everywhere
Carlo Bonamico
 
PDF
Real World AngularJS recipes: beyond TodoMVC
Carlo Bonamico
 
PDF
codemotion-docker-2014
Carlo Bonamico
 
PDF
Infrastructure as Data with Ansible for easier Continuous Delivery
Carlo Bonamico
 
PDF
Infrastructure as Data with Ansible
Carlo Bonamico
 
PDF
Is my Web Application secure? OWASP Top Ten Security Risks and Beyond...
Carlo Bonamico
 
PDF
Maven 2 in the real world
Carlo Bonamico
 
PDF
Nasa World Wind For Java (by Fabrizio Giudici)
Carlo Bonamico
 
PDF
Continuous Integration With Hudson (and Jenkins)
Carlo Bonamico
 
PPT
Build Automation Tips
Carlo Bonamico
 
Build Your Own Angular Component Library
Carlo Bonamico
 
Angular Rebooted: Components Everywhere
Carlo Bonamico
 
Real World AngularJS recipes: beyond TodoMVC
Carlo Bonamico
 
codemotion-docker-2014
Carlo Bonamico
 
Infrastructure as Data with Ansible for easier Continuous Delivery
Carlo Bonamico
 
Infrastructure as Data with Ansible
Carlo Bonamico
 
Is my Web Application secure? OWASP Top Ten Security Risks and Beyond...
Carlo Bonamico
 
Maven 2 in the real world
Carlo Bonamico
 
Nasa World Wind For Java (by Fabrizio Giudici)
Carlo Bonamico
 
Continuous Integration With Hudson (and Jenkins)
Carlo Bonamico
 
Build Automation Tips
Carlo Bonamico
 

Recently uploaded (20)

PDF
Sound the Alarm: Detection and Response
VICTOR MAESTRE RAMIREZ
 
PPTX
Securing Model Context Protocol with Keycloak: AuthN/AuthZ for MCP Servers
Hitachi, Ltd. OSS Solution Center.
 
PDF
Quantum Threats Are Closer Than You Think – Act Now to Stay Secure
WSO2
 
PDF
Deploy Faster, Run Smarter: Learn Containers with QNAP
QNAP Marketing
 
PPTX
Agentforce World Tour Toronto '25 - MCP with MuleSoft
Alexandra N. Martinez
 
PDF
Dev Dives: Accelerating agentic automation with Autopilot for Everyone
UiPathCommunity
 
PDF
5 Things to Consider When Deploying AI in Your Enterprise
Safe Software
 
PDF
Introducing and Operating FME Flow for Kubernetes in a Large Enterprise: Expe...
Safe Software
 
PPTX
Wondershare Filmora Crack Free Download 2025
josanj305
 
PDF
99 Bottles of Trust on the Wall — Operational Principles for Trust in Cyber C...
treyka
 
PDF
TrustArc Webinar - Navigating APAC Data Privacy Laws: Compliance & Challenges
TrustArc
 
PDF
Next Generation AI: Anticipatory Intelligence, Forecasting Inflection Points ...
dleka294658677
 
PPTX
MuleSoft MCP Support (Model Context Protocol) and Use Case Demo
shyamraj55
 
PDF
Modern Decentralized Application Architectures.pdf
Kalema Edgar
 
PDF
How to Comply With Saudi Arabia’s National Cybersecurity Regulations.pdf
Bluechip Advanced Technologies
 
PDF
Pipeline Industry IoT - Real Time Data Monitoring
Safe Software
 
PDF
UiPath DevConnect 2025: Agentic Automation Community User Group Meeting
DianaGray10
 
PDF
Darley - FIRST Copenhagen Lightning Talk (2025-06-26) Epochalypse 2038 - Time...
treyka
 
PPTX
CapCut Pro PC Crack Latest Version Free Free
josanj305
 
PDF
Book industry state of the nation 2025 - Tech Forum 2025
BookNet Canada
 
Sound the Alarm: Detection and Response
VICTOR MAESTRE RAMIREZ
 
Securing Model Context Protocol with Keycloak: AuthN/AuthZ for MCP Servers
Hitachi, Ltd. OSS Solution Center.
 
Quantum Threats Are Closer Than You Think – Act Now to Stay Secure
WSO2
 
Deploy Faster, Run Smarter: Learn Containers with QNAP
QNAP Marketing
 
Agentforce World Tour Toronto '25 - MCP with MuleSoft
Alexandra N. Martinez
 
Dev Dives: Accelerating agentic automation with Autopilot for Everyone
UiPathCommunity
 
5 Things to Consider When Deploying AI in Your Enterprise
Safe Software
 
Introducing and Operating FME Flow for Kubernetes in a Large Enterprise: Expe...
Safe Software
 
Wondershare Filmora Crack Free Download 2025
josanj305
 
99 Bottles of Trust on the Wall — Operational Principles for Trust in Cyber C...
treyka
 
TrustArc Webinar - Navigating APAC Data Privacy Laws: Compliance & Challenges
TrustArc
 
Next Generation AI: Anticipatory Intelligence, Forecasting Inflection Points ...
dleka294658677
 
MuleSoft MCP Support (Model Context Protocol) and Use Case Demo
shyamraj55
 
Modern Decentralized Application Architectures.pdf
Kalema Edgar
 
How to Comply With Saudi Arabia’s National Cybersecurity Regulations.pdf
Bluechip Advanced Technologies
 
Pipeline Industry IoT - Real Time Data Monitoring
Safe Software
 
UiPath DevConnect 2025: Agentic Automation Community User Group Meeting
DianaGray10
 
Darley - FIRST Copenhagen Lightning Talk (2025-06-26) Epochalypse 2038 - Time...
treyka
 
CapCut Pro PC Crack Latest Version Free Free
josanj305
 
Book industry state of the nation 2025 - Tech Forum 2025
BookNet Canada
 

AngularJS: How to code today with tomorrow tools - Codemotion Milan 2013