SlideShare a Scribd company logo
1 of 64
Download to read offline
Roma 2016
Google DevFest
Code Once
Run Everywhere
Antonino Orlando
Luciano Murruni
e il Team del GDG Roma L-Ab
Roma
DevFest 2016
Antonino Orlando
Luciano Murruni
it.linkedin.com/in/lucianomurruni
luciano.murruni@gmail.com
twitter.com/jimilucio
orlando.antonino@gmail.com
it.linkedin.com/in/orlandoantonino
plus.google.com/+AntoninoOrlando
Roma
DevFest 2014
http://angular.io
2.1.0
Final release! FINALLY!!
Roma
DevFest 2014What's next?
Roma
DevFest 2016
Why Angular2?
Roma
DevFest 2016Performance
Roma
DevFest 2016Multi Device
Roma
DevFest 2016Community
Roma
DevFest 2016
https://octoverse.github.com/
Contributors
Roma
DevFest 2016Components
Roma
DevFest 2016Languages
Roma
DevFest 2016AngularJS Architecture
Module
Config
Routes
View
Directives
Factories
Services
Providers
Controller
Roma
DevFest 2016Angular2 Architecture
Roma
DevFest 2016Component Lifecycle
Component content has been Initialized
The component was Created
Component content has been Destroyed
TypeScript
Roma
DevFest 2016TypeScript
● Superset of JavaScript
● Annotations
● Types
● Interfaces
● Productivity booster
● Compiles ES3/ES5
Roma
DevFest 2016How I can use it
$ npm install -g typescript
$ tsc --init --target es5 --sourceMap
--experimentalDecorators --emitDecoratorMetadata
Roma
DevFest 2016Interface
interface Person {
firstName: string;
lastName: string;
}
function greeter(person: Person) {
return "Ciao, " + person.firstName + " " + person.lastName;
}
var user = { firstName: "Luciano", lastName: "Murruni" };
document.body.innerHTML = greeter(user);
Roma
DevFest 2016Class
class StrangeFruit{
type: string;
constructor(type: string){
this.type = type;
}
}
Roma
DevFest 2016Extending Classes
class ApplePen extends StrangeFruit{
name: string;
quantity: number;
constructor(type: string, quantity: number){
super(type);
this.quantity = quantity;
}
}
Roma
DevFest 2016TypeScript - Template
let template: '<h1>My First Angular App</h1>';
let template: `
<h1>My First title</h1>
<h2>My Second Title</h2>
`;
Roma
DevFest 2016Angular2 Component
import { Component, OnInit } from '@angular/core';
export class PersonComponent implements OnInit {
constructor() {}
ngOnInit() {}
}
// Annotation section
@Component({
selector: 'my-app',
template: '<h1>Hello {{ name }}</h1>'
})
https://cli.angular.io/
Roma
DevFest 2016Get Started
$ npm install -g angular-cli
$ ng serve
$ ng new MY_PROJECT_NAME
$ cd MY_PROJECT_NAME
Roma
DevFest 2016Get Started
http://localhost:4200/
Roma
DevFest 2016File Structure
Test file
Dependencies
App source
Configuration
Roma
DevFest 2016File Structure in depth
App Components
Assets stuff
Build params
Project Index
Main
Compiler configuration
Project Index
Roma
DevFest 2016Available command
Component $ ng g component my-new-component
Directive $ ng g directive my-new-directive
Pipe $ ng g pipe my-new-pipe
Service $ ng g service my-new-service
Class $ ng g class my-new-class
Interface $ ng g interface my-new-interface
Enum $ ng g enum my-new-enum
Module $ ng g module my-module
Roma
DevFest 2016Build and test
$ ng build //development release
$ ng test
$ ng e2e
$ ng build --prod //production release
Roma
DevFest 2016More about performance
Development
4.0K index.html
8.0K inline.js
8.0K inline.map
2.7M main.bundle.js
2.8M main.map
12K styles.bundle.js
16K styles.map
Production
4.0K index.html
4.0K inline.js
896K main.xxxx.bundle.js
204K main.xxxx.bundle.js.gz
8.0K styles.xxxx.bundle.js
{Let’s Code!}
https://goo.gl/YMlNSp
Roma
DevFest 2016
{Resources}
Roma
DevFest 2016ANGULAR DOCS
https://angular.io/docs/
Roma
DevFest 2016ANGULAR CLI
https://cli.angular.io/
Roma
DevFest 2016TypeScript
https://www.typescriptlang.org/docs/
Roma
DevFest 2016NG Migrate
http://ngmigrate.telerik.com/
Roma
DevFest 2016Angular Material Design
https://material.angularjs.org/latest/
Roma
DevFest 2016UI Bootstrap
http://valor-software.com/ng2-bootstrap
http://meetup.com/ng-rome
Roma
DevFest 2016
Angular Developer Italiani
Roma
DevFest 2016
YAHF
“you need to know at least two different programming languages
for an independent or hobbyist developer, this could be time-consuming
for an enterprise, hiring for the multi-platform skill sets could get expensive
supporting only one mobile platform is no longer a good idea.
This is where hybrid mobile applications come into play”
Roma
DevFest 2016
Hybrid matter
“Different platforms have different ways they expect you
to use them that alter the entire experience design”
[Martin Fowler]
The problem with most of these hybrid frameworks is that they rely
heavily on the web view of the device.
Not all web views are equal, application performing unpredictably
on the thousands of devices that exist
Roma
DevFest 2016
What is NativeScript?
An open source framework for building and
running native iOS, Android, and Windows
Phone apps with a single, JavaScript, XML,
CSS code base
Roma
DevFest 2016
Cross platform
Roma
DevFest 2016
Other players
Roma
DevFest 2016
Javascript framework free choice
Write your application
using plain Javascript
Use TypeScript to get
Object Oriented
features and compile
time error checking
Use Angular to
architect application
Roma
DevFest 2016
How it works?
Everything starts with JavaScript virtual machines, as they’re what
NativeScript uses to execute JavaScript commands.
NativeScript uses V8 on Android and JavaScriptCore on iOS
Because NativeScript uses JavaScript VMs, all native-API-accessing code
you write, still needs to use JavaScript constructs and syntaxes that V8
and JavaScript Core understand.
Roma
DevFest 2016
Architecture
Android
iOS
var time = new android.text.format.Time();
time.set( 1, 0, 2015 );
console.log( time.format( "%D" ) );
var alert = new UIAlertView();
alert.message = "Hello world!";
alert.addButtonWithTitle( "OK" );
alert.show();
Roma
DevFest 2016
Architecture
NativeScript uses reflection to build the list of the
APIs that are available on the platform they run on
generating this data is non-trivial from a performance perspective,
NativeScript does it ahead of time, and embeds the pre-generated metadata
during the Android/iOS build step
Roma
DevFest 2016
Architecture
The NativeScript runtime’s C++ code cannot directly access Java APIs -> JNI
On iOS this extra bridge is unnecessary as C++ code can directly invoke
Objective-C APIs
1) The V8 function callback runs.
2) The NativeScript runtime uses its metadata to know that Time()
means it needs to instantiate an android.text.format.Time object.
3) The NativeScript runtime uses the JNI to instantiate a
android.text.format.Time object and keeps a reference to it.
4) The NativeScript runtime returns a JavaScript object that proxies
the Java Time object.
5) Control returns to JavaScript where the proxy object gets stored
as a local time variable.
Roma
DevFest 2016
Architecture
NativeScript run JavaScript on the UI thread
provide high performance access to 100% of native
platform APIs through JavaScript. Period. No
trade-offs. No limits
Roma
DevFest 2016
Get started
• Android 4.2 or a later stable official release
• iOS 7.0 or later stable official release
• git, java 8
• android SDK, XCode
• nodejs 4.5 + npm
• optional: VirtualBox + Genymotion
sudo npm install -g nativescript
Roma
DevFest 2016
Get started
tns create my-app-name --ng
tns platform add ios
tns platform add android
tns run android --emulator
tns livesync android --emulator --watch
Roma
DevFest 2016
Get started
Roma
DevFest 2016
UI = XML + CSS
Roma
DevFest 2016
JS
Roma
DevFest 2016
resources
http://nsimage.brosteins.com/Home/UploadIcon
http -> allow insecure request on iOS 9!
docs.nativescript.org
developer.telerik.com
Roma
DevFest 2016
{Let’s Code!}
Roma
DevFest 2016
https://goo.gl/FGSZhu
Roma
DevFest 2016
Thank You
Antonino Orlando
Luciano Murruni
it.linkedin.com/in/lucianomurruni
luciano.murruni@gmail.com
twitter.com/jimilucio
orlando.antonino@gmail.com
it.linkedin.com/in/orlandoantonino
plus.google.com/+AntoninoOrlando
Roma
DevFest 2016

More Related Content

What's hot

What's hot (20)

Introduction to React Native
Introduction to React NativeIntroduction to React Native
Introduction to React Native
 
Flutter overview - advantages & disadvantages for business
Flutter overview - advantages & disadvantages for businessFlutter overview - advantages & disadvantages for business
Flutter overview - advantages & disadvantages for business
 
What is Kotlin Multiplaform? Why & How?
What is Kotlin Multiplaform? Why & How? What is Kotlin Multiplaform? Why & How?
What is Kotlin Multiplaform? Why & How?
 
Flutter Beta but Better and Better
Flutter Beta but Better and BetterFlutter Beta but Better and Better
Flutter Beta but Better and Better
 
React native
React nativeReact native
React native
 
Intro to Flutter
Intro to FlutterIntro to Flutter
Intro to Flutter
 
Flutter for web
Flutter for web Flutter for web
Flutter for web
 
Kotlin for android 2019
Kotlin for android 2019Kotlin for android 2019
Kotlin for android 2019
 
React Native Intro
React Native IntroReact Native Intro
React Native Intro
 
Introduction to React Native
Introduction to React NativeIntroduction to React Native
Introduction to React Native
 
PHP And Silverlight - DevDays session
PHP And Silverlight - DevDays sessionPHP And Silverlight - DevDays session
PHP And Silverlight - DevDays session
 
Kotlin Multiplatform
Kotlin MultiplatformKotlin Multiplatform
Kotlin Multiplatform
 
I/O 2019 android updates
I/O 2019 android updatesI/O 2019 android updates
I/O 2019 android updates
 
Flutter: Future of App Development
Flutter: Future of App DevelopmentFlutter: Future of App Development
Flutter: Future of App Development
 
Game development using Flutter
Game development using FlutterGame development using Flutter
Game development using Flutter
 
Kotlin native for iOS and Android
Kotlin native for iOS and AndroidKotlin native for iOS and Android
Kotlin native for iOS and Android
 
Intro to Flutter SDK
Intro to Flutter SDKIntro to Flutter SDK
Intro to Flutter SDK
 
Google I/O 2018 Extended, Baghdad - Flutter
Google I/O 2018 Extended, Baghdad  - FlutterGoogle I/O 2018 Extended, Baghdad  - Flutter
Google I/O 2018 Extended, Baghdad - Flutter
 
The building blocks of the next web, from Customer Journey to UI Components. ...
The building blocks of the next web, from Customer Journey to UI Components. ...The building blocks of the next web, from Customer Journey to UI Components. ...
The building blocks of the next web, from Customer Journey to UI Components. ...
 
All a flutter about Flutter.io
All a flutter about Flutter.ioAll a flutter about Flutter.io
All a flutter about Flutter.io
 

Viewers also liked

Thai Oral: Tourism
Thai Oral: TourismThai Oral: Tourism
Thai Oral: Tourism
tsiri2
 

Viewers also liked (16)

TypeScript - Angular 2 - ionic 2
TypeScript - Angular 2 - ionic 2TypeScript - Angular 2 - ionic 2
TypeScript - Angular 2 - ionic 2
 
Seminario 2
Seminario 2Seminario 2
Seminario 2
 
Launch Yourself into The AngularJS 2 And TypeScript Space
Launch Yourself into The AngularJS 2 And TypeScript SpaceLaunch Yourself into The AngularJS 2 And TypeScript Space
Launch Yourself into The AngularJS 2 And TypeScript Space
 
Angular 2 &amp; nativescript… chau híbrido
Angular 2 &amp; nativescript… chau híbridoAngular 2 &amp; nativescript… chau híbrido
Angular 2 &amp; nativescript… chau híbrido
 
Porting Hybrid Apps to Native Apps
Porting Hybrid Apps to Native AppsPorting Hybrid Apps to Native Apps
Porting Hybrid Apps to Native Apps
 
Thai Oral: Tourism
Thai Oral: TourismThai Oral: Tourism
Thai Oral: Tourism
 
Angular 2: core concepts
Angular 2: core conceptsAngular 2: core concepts
Angular 2: core concepts
 
Native Script by Sebastian Witalec
Native Script by Sebastian WitalecNative Script by Sebastian Witalec
Native Script by Sebastian Witalec
 
Angular2 with type script
Angular2 with type scriptAngular2 with type script
Angular2 with type script
 
Angular2 Development for Java developers
Angular2 Development for Java developersAngular2 Development for Java developers
Angular2 Development for Java developers
 
Introduction to NativeScript - BuildTruly Native Apps using JavaScript
Introduction to NativeScript - BuildTruly Native Apps using JavaScriptIntroduction to NativeScript - BuildTruly Native Apps using JavaScript
Introduction to NativeScript - BuildTruly Native Apps using JavaScript
 
Angular 2 Architecture
Angular 2 ArchitectureAngular 2 Architecture
Angular 2 Architecture
 
NativeScript with angular2
NativeScript with angular2NativeScript with angular2
NativeScript with angular2
 
Getting Started with Angular 2
Getting Started with Angular 2Getting Started with Angular 2
Getting Started with Angular 2
 
UX Design at the Speed of Thought
UX Design at the Speed of ThoughtUX Design at the Speed of Thought
UX Design at the Speed of Thought
 
Introduction à Angular 2
Introduction à Angular 2Introduction à Angular 2
Introduction à Angular 2
 

Similar to Angular2 & Native Script GDG DevFest 2016

Cross Platform Mobile Apps with the Ionic Framework
Cross Platform Mobile Apps with the Ionic FrameworkCross Platform Mobile Apps with the Ionic Framework
Cross Platform Mobile Apps with the Ionic Framework
Troy Miles
 
DIY- computer vision with GWT
DIY- computer vision with GWTDIY- computer vision with GWT
DIY- computer vision with GWT
Francesca Tosi
 

Similar to Angular2 & Native Script GDG DevFest 2016 (20)

Introduction to Angular 2
Introduction to Angular 2Introduction to Angular 2
Introduction to Angular 2
 
ChromeとAndroidの過去・現在・未来
ChromeとAndroidの過去・現在・未来ChromeとAndroidの過去・現在・未来
ChromeとAndroidの過去・現在・未来
 
Cross Platform Mobile Apps with the Ionic Framework
Cross Platform Mobile Apps with the Ionic FrameworkCross Platform Mobile Apps with the Ionic Framework
Cross Platform Mobile Apps with the Ionic Framework
 
Cross Platform Mobile Apps with the Ionic Framework
Cross Platform Mobile Apps with the Ionic FrameworkCross Platform Mobile Apps with the Ionic Framework
Cross Platform Mobile Apps with the Ionic Framework
 
Angular for rookies MS TechDays 2017
Angular for rookies MS TechDays 2017Angular for rookies MS TechDays 2017
Angular for rookies MS TechDays 2017
 
State ofappdevelopment
State ofappdevelopmentState ofappdevelopment
State ofappdevelopment
 
Spring Cloud Function & Project riff #jsug
Spring Cloud Function & Project riff #jsugSpring Cloud Function & Project riff #jsug
Spring Cloud Function & Project riff #jsug
 
El viaje de Angular1 a Angular2
El viaje de Angular1 a Angular2El viaje de Angular1 a Angular2
El viaje de Angular1 a Angular2
 
Kunal bhatia resume mass
Kunal bhatia   resume massKunal bhatia   resume mass
Kunal bhatia resume mass
 
[apidays LIVE HONK KONG] - OAS to Managed API in Seconds
[apidays LIVE HONK KONG] - OAS to Managed API in Seconds[apidays LIVE HONK KONG] - OAS to Managed API in Seconds
[apidays LIVE HONK KONG] - OAS to Managed API in Seconds
 
Ionic - Revolutionizing Hybrid Mobile Application Development
Ionic - Revolutionizing Hybrid Mobile Application DevelopmentIonic - Revolutionizing Hybrid Mobile Application Development
Ionic - Revolutionizing Hybrid Mobile Application Development
 
Phonegap android angualr material design
Phonegap android angualr material designPhonegap android angualr material design
Phonegap android angualr material design
 
Angular
AngularAngular
Angular
 
OpenAPI development with Python
OpenAPI development with PythonOpenAPI development with Python
OpenAPI development with Python
 
DIY: Computer Vision with GWT.
DIY: Computer Vision with GWT.DIY: Computer Vision with GWT.
DIY: Computer Vision with GWT.
 
DIY- computer vision with GWT
DIY- computer vision with GWTDIY- computer vision with GWT
DIY- computer vision with GWT
 
Code Quality Lightning Talk
Code Quality Lightning TalkCode Quality Lightning Talk
Code Quality Lightning Talk
 
The next step from Microsoft - Vnext (Srdjan Poznic)
The next step from Microsoft - Vnext (Srdjan Poznic)The next step from Microsoft - Vnext (Srdjan Poznic)
The next step from Microsoft - Vnext (Srdjan Poznic)
 
Integrate any Angular Project into WebSphere Portal
Integrate any Angular Project into WebSphere PortalIntegrate any Angular Project into WebSphere Portal
Integrate any Angular Project into WebSphere Portal
 
Angular JS 2_0 BCS CTO_in_Res V3
Angular JS 2_0 BCS CTO_in_Res V3Angular JS 2_0 BCS CTO_in_Res V3
Angular JS 2_0 BCS CTO_in_Res V3
 

Recently uploaded

AI Mastery 201: Elevating Your Workflow with Advanced LLM Techniques
AI Mastery 201: Elevating Your Workflow with Advanced LLM TechniquesAI Mastery 201: Elevating Your Workflow with Advanced LLM Techniques
AI Mastery 201: Elevating Your Workflow with Advanced LLM Techniques
VictorSzoltysek
 
+971565801893>>SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHAB...
+971565801893>>SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHAB...+971565801893>>SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHAB...
+971565801893>>SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHAB...
Health
 
introduction-to-automotive Andoid os-csimmonds-ndctechtown-2021.pdf
introduction-to-automotive Andoid os-csimmonds-ndctechtown-2021.pdfintroduction-to-automotive Andoid os-csimmonds-ndctechtown-2021.pdf
introduction-to-automotive Andoid os-csimmonds-ndctechtown-2021.pdf
VishalKumarJha10
 

Recently uploaded (20)

AI Mastery 201: Elevating Your Workflow with Advanced LLM Techniques
AI Mastery 201: Elevating Your Workflow with Advanced LLM TechniquesAI Mastery 201: Elevating Your Workflow with Advanced LLM Techniques
AI Mastery 201: Elevating Your Workflow with Advanced LLM Techniques
 
+971565801893>>SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHAB...
+971565801893>>SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHAB...+971565801893>>SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHAB...
+971565801893>>SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHAB...
 
Tech Tuesday-Harness the Power of Effective Resource Planning with OnePlan’s ...
Tech Tuesday-Harness the Power of Effective Resource Planning with OnePlan’s ...Tech Tuesday-Harness the Power of Effective Resource Planning with OnePlan’s ...
Tech Tuesday-Harness the Power of Effective Resource Planning with OnePlan’s ...
 
How To Troubleshoot Collaboration Apps for the Modern Connected Worker
How To Troubleshoot Collaboration Apps for the Modern Connected WorkerHow To Troubleshoot Collaboration Apps for the Modern Connected Worker
How To Troubleshoot Collaboration Apps for the Modern Connected Worker
 
call girls in Vaishali (Ghaziabad) 🔝 >༒8448380779 🔝 genuine Escort Service 🔝✔️✔️
call girls in Vaishali (Ghaziabad) 🔝 >༒8448380779 🔝 genuine Escort Service 🔝✔️✔️call girls in Vaishali (Ghaziabad) 🔝 >༒8448380779 🔝 genuine Escort Service 🔝✔️✔️
call girls in Vaishali (Ghaziabad) 🔝 >༒8448380779 🔝 genuine Escort Service 🔝✔️✔️
 
How to Choose the Right Laravel Development Partner in New York City_compress...
How to Choose the Right Laravel Development Partner in New York City_compress...How to Choose the Right Laravel Development Partner in New York City_compress...
How to Choose the Right Laravel Development Partner in New York City_compress...
 
Software Quality Assurance Interview Questions
Software Quality Assurance Interview QuestionsSoftware Quality Assurance Interview Questions
Software Quality Assurance Interview Questions
 
call girls in Vaishali (Ghaziabad) 🔝 >༒8448380779 🔝 genuine Escort Service 🔝✔️✔️
call girls in Vaishali (Ghaziabad) 🔝 >༒8448380779 🔝 genuine Escort Service 🔝✔️✔️call girls in Vaishali (Ghaziabad) 🔝 >༒8448380779 🔝 genuine Escort Service 🔝✔️✔️
call girls in Vaishali (Ghaziabad) 🔝 >༒8448380779 🔝 genuine Escort Service 🔝✔️✔️
 
Unlocking the Future of AI Agents with Large Language Models
Unlocking the Future of AI Agents with Large Language ModelsUnlocking the Future of AI Agents with Large Language Models
Unlocking the Future of AI Agents with Large Language Models
 
Define the academic and professional writing..pdf
Define the academic and professional writing..pdfDefine the academic and professional writing..pdf
Define the academic and professional writing..pdf
 
introduction-to-automotive Andoid os-csimmonds-ndctechtown-2021.pdf
introduction-to-automotive Andoid os-csimmonds-ndctechtown-2021.pdfintroduction-to-automotive Andoid os-csimmonds-ndctechtown-2021.pdf
introduction-to-automotive Andoid os-csimmonds-ndctechtown-2021.pdf
 
8257 interfacing 2 in microprocessor for btech students
8257 interfacing 2 in microprocessor for btech students8257 interfacing 2 in microprocessor for btech students
8257 interfacing 2 in microprocessor for btech students
 
Shapes for Sharing between Graph Data Spaces - and Epistemic Querying of RDF-...
Shapes for Sharing between Graph Data Spaces - and Epistemic Querying of RDF-...Shapes for Sharing between Graph Data Spaces - and Epistemic Querying of RDF-...
Shapes for Sharing between Graph Data Spaces - and Epistemic Querying of RDF-...
 
W01_panagenda_Navigating-the-Future-with-The-Hitchhikers-Guide-to-Notes-and-D...
W01_panagenda_Navigating-the-Future-with-The-Hitchhikers-Guide-to-Notes-and-D...W01_panagenda_Navigating-the-Future-with-The-Hitchhikers-Guide-to-Notes-and-D...
W01_panagenda_Navigating-the-Future-with-The-Hitchhikers-Guide-to-Notes-and-D...
 
How To Use Server-Side Rendering with Nuxt.js
How To Use Server-Side Rendering with Nuxt.jsHow To Use Server-Side Rendering with Nuxt.js
How To Use Server-Side Rendering with Nuxt.js
 
Introducing Microsoft’s new Enterprise Work Management (EWM) Solution
Introducing Microsoft’s new Enterprise Work Management (EWM) SolutionIntroducing Microsoft’s new Enterprise Work Management (EWM) Solution
Introducing Microsoft’s new Enterprise Work Management (EWM) Solution
 
The Real-World Challenges of Medical Device Cybersecurity- Mitigating Vulnera...
The Real-World Challenges of Medical Device Cybersecurity- Mitigating Vulnera...The Real-World Challenges of Medical Device Cybersecurity- Mitigating Vulnera...
The Real-World Challenges of Medical Device Cybersecurity- Mitigating Vulnera...
 
Right Money Management App For Your Financial Goals
Right Money Management App For Your Financial GoalsRight Money Management App For Your Financial Goals
Right Money Management App For Your Financial Goals
 
Reassessing the Bedrock of Clinical Function Models: An Examination of Large ...
Reassessing the Bedrock of Clinical Function Models: An Examination of Large ...Reassessing the Bedrock of Clinical Function Models: An Examination of Large ...
Reassessing the Bedrock of Clinical Function Models: An Examination of Large ...
 
A Secure and Reliable Document Management System is Essential.docx
A Secure and Reliable Document Management System is Essential.docxA Secure and Reliable Document Management System is Essential.docx
A Secure and Reliable Document Management System is Essential.docx
 

Angular2 & Native Script GDG DevFest 2016