Cross Platform Mobile Apps with the Ionic Framework

Troy Miles
Troy MilesSenior Software Engineer at Kelley Blue Book
Cross Platform Mobile Apps
with the Ionic Framework
SoCal Code Camp - 15 November 2014
Troy Miles
Cross Platform Mobile Apps with the Ionic Framework
Troy Miles
Over 30 years of programming experience
Blog: http://therockncoder.blogspot.com/
Twitter: @therockncoder
Email: rockncoder@gmail.com
GitHub: https://github.com/Rockncoder
Questions
What is the Ionic Framework?
Are people actually using it?
What should I know?
What is the easiest way to get started?
What’s building an app like?
What is the Ionic Framework?
The Ionic Framework?
Combines Apache Cordova
with Google's AngularJS
along with lots custom
JavaScript, HTML, and CSS3
to create purpose built mobile
apps
which perform like native ones
and look beautiful
Supported Devices
iOS 6+
Android 4+
Windows Phone 8+ (coming)
FireFox OS (coming)
Drifty Co.
Founded in 2012 by Ben Sperry (CEO) and Max Lynch
(CTO)
Based in Madison, WI
Creators of Codiqa, JetStrap, and Ionic
Raised $1 million from Arthur Ventures earlier this year
Cordova
PhoneGap started at 2008
iPhoneDevCamp by Nitobi
2011 Nitobi acquired by
Adobe
Donated to Apache
Foundation in 2011
Known as Apache Cordova
But pronounced “PhoneGap”
Cordova
Uses web technologies to build mobile apps
The apps have access to device hardware from JavaScript
The web files are hosted in the app
Apps are portable to other systems with little to no changes
Apps are packaged using platform SDKs
Cordova does not include a UI framework
AngularJS
Created by Miško Hevery and
Adam Abrons in 2009
JavaScript MVC
106 kb production version
(minimized, not gzipped)
Declarative programming for
UI
Imperative programming for
business logic
AngularJS Key Features
Two Way Data-binding
Model View Controller
Dependency Injection
Deep Linking
HTML Templates
Directives
Testability
AngularJS HTML
1 <!DOCTYPE html>
2 <html ng-app="myApp">
3 <head lang="en">
4 <meta charset="utf-8">
5 <title>AngularJS Datepicker</title>
6 <link rel="stylesheet" href="../css/jquery-ui.css">
7 <link rel="stylesheet" href="../css/jquery.timepicker.css">
8 <script src="../libs/jquery-1.10.2.min.js"></script>
9 <script src="../libs/jquery-ui.js"></script>
10 <script src="../libs/angular.js"></script>
11 <script src="../libs/jquery.timepicker.min.js"></script>
12 <script src="../solutions/datePicker.js"></script>
13 <script src="../solutions/dateApp.js"></script>
14 </head>
15 <body ng-controller="MainCtrl">
16 <input id="dateField" datepicker ng-model="$parent.currentDate"
select="updateMyText(date)">
17 <br/>
18 {{myText}} - {{currentDate}}
AngularJS JavaScript
1 "use strict";
2
3 var app = angular.module('myApp', ['myApp.directives']);
4
5 app.controller('MainCtrl', ["$scope", function ($scope) {
6 $scope.myText = 'Not Selected';
7 $scope.currentDate = '';
8 $scope.updateMyText = function () {
9 $scope.myText = 'Selected';
10 };
11 $scope.start= 5;
12 $scope.stop = 95;
13 $scope.current = 5;
14 }]);
15
16 app.directive('timePicker', [function () {
17 var today = new Date(new Date().toDateString());
AngularJS vs other JS MVC
Backbone.js
Ember.js
Knockout
AngularJS
Text
Google Trends of JS MVC
BackboneJS, EmberJS, and KnockoutJS
Text
How popular is AngularJS?
Are people actually using it?
Mallzee
Replaced their hand
built PhoneGap app with
Ionic in May
Excellent UI
Songhop
The fastest way to find
new music
5 star rated
iPhone only
Keychain
Like Uber for trucks
iOS and Android version
Scrapped prior version
built with PhoneGap
Sworkit
Created by Ryan Hanna
alone
Featured in the Health and
Fitness section of the App
Store
Downloaded over 3 million
times
in the App Store, Google
Play and Amazon Store
What should I know?
Modern Web Skills
HTML 5 / CSS 3 / JavaScript
Comfortable with command line tools
AngularJS
Sass (optional)
The US Market
Android has 61.9%
iOS has 32.5%
That leaves less than 6% for everyone else
Prerequisites
Java SDK 6 or 7
Android SDK + Eclipse/Android Studio
Node / NPM
Cordova
Gulp
Ionic
Why do I need Node?
Node apps are built in JavaScript
JavaScript runs on all platforms
Node comes bundled with NPM, Node Package
Manager
It makes installing, running, and updating tools easy
Hence Node is a popular way to ship tools
Is there an easier way?
The Ionic Box
Install VirtualBox, its free and available for most
platforms
Install Vagrant, its free too
Install the Ionic Box
What’s building an app like?
Create ionic app
ionic start myApp <template>
blank
tabs
sideMenu
Workflow
ionic serve
Google Chrome mobile emulator
iOS Simulator / Android Emulator / Genymotion
iOS / Android device
Ionicons
http://ionicons.com/
Can search from
website
Can easily change size
free & open source
ngCordova
Cordova has a lot of available plugins
Plugins give access to the machine functions
ngCordova "Angularizes" plugins for ready use
You are always free to write your own wrapper code
What about tablets?
Ionic supports responsive design
Side menu supports split view
Components like Cards also work well in both formats
Demo Time
Summary
Ionic makes mobile development easier but not easy
Allows use of web skills
Installation is still a challenge
Not yet 1.0 release, but close
Resources
http://ionicframework.com/
http://ionicons.com/
http://cordova.apache.org/
https://angularjs.org/
http://ionicframework.com/blog/ionic-vagrant-android/
https://github.com/Rockncoder/
Text
http://spkr8.com/t/39731
Please rate this talk!
1 de 39

Recomendados

Ionic Framework por
Ionic FrameworkIonic Framework
Ionic FrameworkThinh VoXuan
3.9K vistas38 diapositivas
Cordova, Angularjs & Ionic @ Codeaholics por
Cordova, Angularjs & Ionic @ CodeaholicsCordova, Angularjs & Ionic @ Codeaholics
Cordova, Angularjs & Ionic @ CodeaholicsEddie Lau
15.1K vistas22 diapositivas
Ionic Framework por
Ionic FrameworkIonic Framework
Ionic FrameworkCristián Cortéz
701 vistas42 diapositivas
Ionic framework one day training por
Ionic framework one day trainingIonic framework one day training
Ionic framework one day trainingTroy Miles
8K vistas99 diapositivas
Building mobile app with Ionic Framework por
Building mobile app with Ionic FrameworkBuilding mobile app with Ionic Framework
Building mobile app with Ionic FrameworkHuy Trần
3.7K vistas21 diapositivas
Creating mobile apps - an introduction to Ionic (Engage 2016) por
Creating mobile apps - an introduction to Ionic (Engage 2016)Creating mobile apps - an introduction to Ionic (Engage 2016)
Creating mobile apps - an introduction to Ionic (Engage 2016)Mark Leusink
1.4K vistas41 diapositivas

Más contenido relacionado

La actualidad más candente

Hybrid app development with ionic por
Hybrid app development with ionicHybrid app development with ionic
Hybrid app development with ionicWan Muzaffar Wan Hashim
1.8K vistas88 diapositivas
Workshop on Hybrid App Development with Ionic Framework por
Workshop on Hybrid App Development with Ionic FrameworkWorkshop on Hybrid App Development with Ionic Framework
Workshop on Hybrid App Development with Ionic FrameworkAayush Shrestha
752 vistas39 diapositivas
Mobile Applications with Angular 4 and Ionic 3 por
Mobile Applications with Angular 4 and Ionic 3Mobile Applications with Angular 4 and Ionic 3
Mobile Applications with Angular 4 and Ionic 3Oleksandr Tryshchenko
2.9K vistas51 diapositivas
Hybrid vs. Native app - Ionic Framework with AngularJS por
Hybrid vs. Native app - Ionic Framework with AngularJSHybrid vs. Native app - Ionic Framework with AngularJS
Hybrid vs. Native app - Ionic Framework with AngularJSZvika Epstein
743 vistas29 diapositivas
Workshop Ionic Framework - CC FE & UX por
Workshop Ionic Framework - CC FE & UXWorkshop Ionic Framework - CC FE & UX
Workshop Ionic Framework - CC FE & UXJWORKS powered by Ordina
661 vistas46 diapositivas
Ionic Framework por
Ionic FrameworkIonic Framework
Ionic FrameworkDylan Swartz
4.3K vistas19 diapositivas

La actualidad más candente(20)

Workshop on Hybrid App Development with Ionic Framework por Aayush Shrestha
Workshop on Hybrid App Development with Ionic FrameworkWorkshop on Hybrid App Development with Ionic Framework
Workshop on Hybrid App Development with Ionic Framework
Aayush Shrestha752 vistas
Hybrid vs. Native app - Ionic Framework with AngularJS por Zvika Epstein
Hybrid vs. Native app - Ionic Framework with AngularJSHybrid vs. Native app - Ionic Framework with AngularJS
Hybrid vs. Native app - Ionic Framework with AngularJS
Zvika Epstein743 vistas
Hybrid Apps with Ionic Framework por Bramus Van Damme
Hybrid Apps with Ionic FrameworkHybrid Apps with Ionic Framework
Hybrid Apps with Ionic Framework
Bramus Van Damme3.8K vistas
Building Mobile Apps with Cordova , AngularJS and Ionic por Kadhem Soltani
Building Mobile Apps with Cordova , AngularJS and IonicBuilding Mobile Apps with Cordova , AngularJS and Ionic
Building Mobile Apps with Cordova , AngularJS and Ionic
Kadhem Soltani7.1K vistas
Intro to Ionic for Building Hybrid Mobile Applications por Sasha dos Santos
Intro to Ionic for Building Hybrid Mobile ApplicationsIntro to Ionic for Building Hybrid Mobile Applications
Intro to Ionic for Building Hybrid Mobile Applications
Sasha dos Santos5.9K vistas
Introduction to Ionic framework por Shyjal Raazi
Introduction to Ionic frameworkIntroduction to Ionic framework
Introduction to Ionic framework
Shyjal Raazi8.6K vistas
Hybrid Apps with Angular & Ionic Framework por Cihad Horuzoğlu
Hybrid Apps with Angular & Ionic FrameworkHybrid Apps with Angular & Ionic Framework
Hybrid Apps with Angular & Ionic Framework
Cihad Horuzoğlu23K vistas
Hybrid mobile and Ionic por Liju Pillai
Hybrid mobile and IonicHybrid mobile and Ionic
Hybrid mobile and Ionic
Liju Pillai6.7K vistas
Ionic Crash Course! Hack-a-ton SF por Lukas Ruebbelke
Ionic Crash Course! Hack-a-ton SFIonic Crash Course! Hack-a-ton SF
Ionic Crash Course! Hack-a-ton SF
Lukas Ruebbelke19.8K vistas
Hybrid Mobile Development with Apache Cordova,AngularJs and ionic por Ermias Bayu
Hybrid Mobile Development with Apache Cordova,AngularJs and ionicHybrid Mobile Development with Apache Cordova,AngularJs and ionic
Hybrid Mobile Development with Apache Cordova,AngularJs and ionic
Ermias Bayu633 vistas
Ionic Mobile Applications - Hybrid Mobile Applications Without Compromises por Jacob Friesen
Ionic Mobile Applications - Hybrid Mobile Applications Without CompromisesIonic Mobile Applications - Hybrid Mobile Applications Without Compromises
Ionic Mobile Applications - Hybrid Mobile Applications Without Compromises
Jacob Friesen2.4K vistas
Ionic Framework - Intro to Hybrid Mobile Application Development por Max Kaplan
Ionic Framework - Intro to Hybrid Mobile Application DevelopmentIonic Framework - Intro to Hybrid Mobile Application Development
Ionic Framework - Intro to Hybrid Mobile Application Development
Max Kaplan341 vistas
Getting started with the Ionic Framework por Anuradha Weeraman
Getting started with the Ionic FrameworkGetting started with the Ionic Framework
Getting started with the Ionic Framework
Anuradha Weeraman839 vistas
Use Ionic Framework to develop mobile application por Lucio Grenzi
Use Ionic Framework to develop mobile applicationUse Ionic Framework to develop mobile application
Use Ionic Framework to develop mobile application
Lucio Grenzi1.5K vistas

Destacado

Pemrograman mobile menggunakan ionic framework por
Pemrograman mobile menggunakan ionic frameworkPemrograman mobile menggunakan ionic framework
Pemrograman mobile menggunakan ionic frameworkPuguh Rismadi
684 vistas22 diapositivas
Oro open source solutions por
Oro open source solutionsOro open source solutions
Oro open source solutionsSumy PHP User Grpoup
815 vistas27 diapositivas
Transactions etc por
Transactions etcTransactions etc
Transactions etcYevhen Shyshkin
779 vistas15 diapositivas
Single Mobile Apps to tune online Radio in Spain: iRadioPlay Project por
Single Mobile Apps to tune online Radio in Spain: iRadioPlay ProjectSingle Mobile Apps to tune online Radio in Spain: iRadioPlay Project
Single Mobile Apps to tune online Radio in Spain: iRadioPlay ProjectTechnological Ecosystems for Enhancing Multiculturality
132 vistas16 diapositivas
Build the future of mobile apps with facebook mobile app europe berlin sept 14 por
Build the future of mobile apps with facebook   mobile app europe berlin sept 14Build the future of mobile apps with facebook   mobile app europe berlin sept 14
Build the future of mobile apps with facebook mobile app europe berlin sept 14Julien Lesaicherre
8K vistas72 diapositivas
Revolutionizing CRM market & B2B eCommerce - Oro MeetUp in Paris por
Revolutionizing CRM market & B2B eCommerce - Oro MeetUp in ParisRevolutionizing CRM market & B2B eCommerce - Oro MeetUp in Paris
Revolutionizing CRM market & B2B eCommerce - Oro MeetUp in ParisOro Inc.
2.5K vistas58 diapositivas

Destacado(17)

Pemrograman mobile menggunakan ionic framework por Puguh Rismadi
Pemrograman mobile menggunakan ionic frameworkPemrograman mobile menggunakan ionic framework
Pemrograman mobile menggunakan ionic framework
Puguh Rismadi684 vistas
Build the future of mobile apps with facebook mobile app europe berlin sept 14 por Julien Lesaicherre
Build the future of mobile apps with facebook   mobile app europe berlin sept 14Build the future of mobile apps with facebook   mobile app europe berlin sept 14
Build the future of mobile apps with facebook mobile app europe berlin sept 14
Julien Lesaicherre8K vistas
Revolutionizing CRM market & B2B eCommerce - Oro MeetUp in Paris por Oro Inc.
Revolutionizing CRM market & B2B eCommerce - Oro MeetUp in ParisRevolutionizing CRM market & B2B eCommerce - Oro MeetUp in Paris
Revolutionizing CRM market & B2B eCommerce - Oro MeetUp in Paris
Oro Inc.2.5K vistas
Effective Communication Of Data Inspired by Stephen Few por Cory Grenier
Effective Communication Of Data Inspired by Stephen FewEffective Communication Of Data Inspired by Stephen Few
Effective Communication Of Data Inspired by Stephen Few
Cory Grenier2.9K vistas
Ionic Framework - get up and running to build hybrid mobile apps por Andreas Sahle
Ionic Framework - get up and running to build hybrid mobile appsIonic Framework - get up and running to build hybrid mobile apps
Ionic Framework - get up and running to build hybrid mobile apps
Andreas Sahle1.2K vistas
Ionic 2 - Hybridapps auf Steroiden por Hendrik Lösch
Ionic 2 - Hybridapps auf SteroidenIonic 2 - Hybridapps auf Steroiden
Ionic 2 - Hybridapps auf Steroiden
Hendrik Lösch506 vistas
Art and Science of Dashboard Design por SavvyData
Art and Science of Dashboard DesignArt and Science of Dashboard Design
Art and Science of Dashboard Design
SavvyData4.5K vistas
Hybrid app in ionic framework overview por Sanket Devlekar
Hybrid app in ionic framework overviewHybrid app in ionic framework overview
Hybrid app in ionic framework overview
Sanket Devlekar2K vistas
Desenvolvendo uma aplicação híbrida para Android e IOs utilizando Ionic, aces... por Juliano Martins
Desenvolvendo uma aplicação híbrida para Android e IOs utilizando Ionic, aces...Desenvolvendo uma aplicação híbrida para Android e IOs utilizando Ionic, aces...
Desenvolvendo uma aplicação híbrida para Android e IOs utilizando Ionic, aces...
Juliano Martins13.7K vistas
Ionic - Revolutionizing Hybrid Mobile Application Development por Justin James
Ionic - Revolutionizing Hybrid Mobile Application DevelopmentIonic - Revolutionizing Hybrid Mobile Application Development
Ionic - Revolutionizing Hybrid Mobile Application Development
Justin James5K vistas
Cordova + Ionic + MobileFirst por Raymond Camden
Cordova + Ionic + MobileFirstCordova + Ionic + MobileFirst
Cordova + Ionic + MobileFirst
Raymond Camden3.4K vistas
Building Mobile Applications with Ionic por Morris Singer
Building Mobile Applications with IonicBuilding Mobile Applications with Ionic
Building Mobile Applications with Ionic
Morris Singer15.1K vistas

Similar a Cross Platform Mobile Apps with the Ionic Framework

Developing ionic apps for android and ios por
Developing ionic apps for android and iosDeveloping ionic apps for android and ios
Developing ionic apps for android and iosgautham_m79
43 vistas2 diapositivas
Cross Platform Mobile Apps with the Ionic Framework por
Cross Platform Mobile Apps with the Ionic FrameworkCross Platform Mobile Apps with the Ionic Framework
Cross Platform Mobile Apps with the Ionic FrameworkTroy Miles
1.5K vistas55 diapositivas
Ionic framework por
Ionic frameworkIonic framework
Ionic frameworkSoftware Infrastructure
655 vistas21 diapositivas
Hybrid Mobile Apps - Meetup por
Hybrid Mobile Apps - MeetupHybrid Mobile Apps - Meetup
Hybrid Mobile Apps - MeetupSanjay Patel
221 vistas12 diapositivas
Building Cross-Platform Mobile Apps por
Building Cross-Platform Mobile AppsBuilding Cross-Platform Mobile Apps
Building Cross-Platform Mobile AppsTroy Miles
1K vistas57 diapositivas
Angular Js por
Angular JsAngular Js
Angular JsKnoldus Inc.
2.1K vistas55 diapositivas

Similar a Cross Platform Mobile Apps with the Ionic Framework(20)

Developing ionic apps for android and ios por gautham_m79
Developing ionic apps for android and iosDeveloping ionic apps for android and ios
Developing ionic apps for android and ios
gautham_m7943 vistas
Cross Platform Mobile Apps with the Ionic Framework por Troy Miles
Cross Platform Mobile Apps with the Ionic FrameworkCross Platform Mobile Apps with the Ionic Framework
Cross Platform Mobile Apps with the Ionic Framework
Troy Miles1.5K vistas
Hybrid Mobile Apps - Meetup por Sanjay Patel
Hybrid Mobile Apps - MeetupHybrid Mobile Apps - Meetup
Hybrid Mobile Apps - Meetup
Sanjay Patel221 vistas
Building Cross-Platform Mobile Apps por Troy Miles
Building Cross-Platform Mobile AppsBuilding Cross-Platform Mobile Apps
Building Cross-Platform Mobile Apps
Troy Miles1K vistas
Mobile UI Testing using Appium and Docker por Moataz Nabil
Mobile UI Testing using Appium and DockerMobile UI Testing using Appium and Docker
Mobile UI Testing using Appium and Docker
Moataz Nabil5.7K vistas
Google Developer Group(GDG) DevFest Event 2012 Android talk por Imam Raza
Google Developer Group(GDG) DevFest Event 2012 Android talkGoogle Developer Group(GDG) DevFest Event 2012 Android talk
Google Developer Group(GDG) DevFest Event 2012 Android talk
Imam Raza1.4K vistas
Cross-Platform Development using Angulr JS in Visual Studio por Mizanur Sarker
Cross-Platform Development using Angulr JS in Visual StudioCross-Platform Development using Angulr JS in Visual Studio
Cross-Platform Development using Angulr JS in Visual Studio
Mizanur Sarker414 vistas
Android App Development using HTML5 Technology por Oon Arfiandwi
Android App Development using HTML5 TechnologyAndroid App Development using HTML5 Technology
Android App Development using HTML5 Technology
Oon Arfiandwi1.9K vistas
Shifting landscape of mobile automation, and the future of Appium - Jonathan ... por Applitools
Shifting landscape of mobile automation, and the future of Appium - Jonathan ...Shifting landscape of mobile automation, and the future of Appium - Jonathan ...
Shifting landscape of mobile automation, and the future of Appium - Jonathan ...
Applitools2.1K vistas
Native - Hybrid - Web Mobile Architectures por Phong Le Duy
Native - Hybrid - Web Mobile ArchitecturesNative - Hybrid - Web Mobile Architectures
Native - Hybrid - Web Mobile Architectures
Phong Le Duy475 vistas
quantum_leap_angularjs_tools_redefining_development_in_2023.pdf por sarah david
quantum_leap_angularjs_tools_redefining_development_in_2023.pdfquantum_leap_angularjs_tools_redefining_development_in_2023.pdf
quantum_leap_angularjs_tools_redefining_development_in_2023.pdf
sarah david2 vistas
Telerik Kendo UI vs. AngularJS por Rainer Stropek
Telerik Kendo UI vs. AngularJSTelerik Kendo UI vs. AngularJS
Telerik Kendo UI vs. AngularJS
Rainer Stropek23K vistas
Mobile application development platform por i4consulting.org
Mobile application development platformMobile application development platform
Mobile application development platform
i4consulting.org456 vistas
Phonegap android por umesh patil
Phonegap androidPhonegap android
Phonegap android
umesh patil254 vistas
Anyone Can Code: JavaScript - 6/24/2014 por Joseph Mainwaring
Anyone Can Code: JavaScript - 6/24/2014Anyone Can Code: JavaScript - 6/24/2014
Anyone Can Code: JavaScript - 6/24/2014
Joseph Mainwaring828 vistas
SenchaCon 2016: Cross-Platform Mobile App Development with Cordova and Visual... por Sencha
SenchaCon 2016: Cross-Platform Mobile App Development with Cordova and Visual...SenchaCon 2016: Cross-Platform Mobile App Development with Cordova and Visual...
SenchaCon 2016: Cross-Platform Mobile App Development with Cordova and Visual...
Sencha510 vistas

Más de Troy Miles

Fast C++ Web Servers por
Fast C++ Web ServersFast C++ Web Servers
Fast C++ Web ServersTroy Miles
2.3K vistas37 diapositivas
Node Boot Camp por
Node Boot CampNode Boot Camp
Node Boot CampTroy Miles
871 vistas102 diapositivas
AWS Lambda Function with Kotlin por
AWS Lambda Function with KotlinAWS Lambda Function with Kotlin
AWS Lambda Function with KotlinTroy Miles
1.3K vistas37 diapositivas
React Native One Day por
React Native One DayReact Native One Day
React Native One DayTroy Miles
910 vistas110 diapositivas
React Native Evening por
React Native EveningReact Native Evening
React Native EveningTroy Miles
542 vistas76 diapositivas
Intro to React por
Intro to ReactIntro to React
Intro to ReactTroy Miles
922 vistas115 diapositivas

Más de Troy Miles(20)

Fast C++ Web Servers por Troy Miles
Fast C++ Web ServersFast C++ Web Servers
Fast C++ Web Servers
Troy Miles2.3K vistas
Node Boot Camp por Troy Miles
Node Boot CampNode Boot Camp
Node Boot Camp
Troy Miles871 vistas
AWS Lambda Function with Kotlin por Troy Miles
AWS Lambda Function with KotlinAWS Lambda Function with Kotlin
AWS Lambda Function with Kotlin
Troy Miles1.3K vistas
React Native One Day por Troy Miles
React Native One DayReact Native One Day
React Native One Day
Troy Miles910 vistas
React Native Evening por Troy Miles
React Native EveningReact Native Evening
React Native Evening
Troy Miles542 vistas
Intro to React por Troy Miles
Intro to ReactIntro to React
Intro to React
Troy Miles922 vistas
React Development with the MERN Stack por Troy Miles
React Development with the MERN StackReact Development with the MERN Stack
React Development with the MERN Stack
Troy Miles2.2K vistas
Angular Application Testing por Troy Miles
Angular Application TestingAngular Application Testing
Angular Application Testing
Troy Miles475 vistas
ReactJS.NET por Troy Miles
ReactJS.NETReactJS.NET
ReactJS.NET
Troy Miles189 vistas
What is Angular version 4? por Troy Miles
What is Angular version 4?What is Angular version 4?
What is Angular version 4?
Troy Miles530 vistas
Angular Weekend por Troy Miles
Angular WeekendAngular Weekend
Angular Weekend
Troy Miles1.2K vistas
From MEAN to the MERN Stack por Troy Miles
From MEAN to the MERN StackFrom MEAN to the MERN Stack
From MEAN to the MERN Stack
Troy Miles2.2K vistas
Functional Programming in JavaScript por Troy Miles
Functional Programming in JavaScriptFunctional Programming in JavaScript
Functional Programming in JavaScript
Troy Miles922 vistas
Functional Programming in Clojure por Troy Miles
Functional Programming in ClojureFunctional Programming in Clojure
Functional Programming in Clojure
Troy Miles623 vistas
MEAN Stack Warm-up por Troy Miles
MEAN Stack Warm-upMEAN Stack Warm-up
MEAN Stack Warm-up
Troy Miles377 vistas
The JavaScript You Wished You Knew por Troy Miles
The JavaScript You Wished You KnewThe JavaScript You Wished You Knew
The JavaScript You Wished You Knew
Troy Miles277 vistas
Game Design and Development Workshop Day 1 por Troy Miles
Game Design and Development Workshop Day 1Game Design and Development Workshop Day 1
Game Design and Development Workshop Day 1
Troy Miles494 vistas
Build a Game in 60 minutes por Troy Miles
Build a Game in 60 minutesBuild a Game in 60 minutes
Build a Game in 60 minutes
Troy Miles635 vistas
Quick & Dirty & MEAN por Troy Miles
Quick & Dirty & MEANQuick & Dirty & MEAN
Quick & Dirty & MEAN
Troy Miles232 vistas
A Quick Intro to ReactiveX por Troy Miles
A Quick Intro to ReactiveXA Quick Intro to ReactiveX
A Quick Intro to ReactiveX
Troy Miles870 vistas

Último

Unleash The Monkeys por
Unleash The MonkeysUnleash The Monkeys
Unleash The MonkeysJacob Duijzer
7 vistas28 diapositivas
Advanced API Mocking Techniques por
Advanced API Mocking TechniquesAdvanced API Mocking Techniques
Advanced API Mocking TechniquesDimpy Adhikary
19 vistas11 diapositivas
Dapr Unleashed: Accelerating Microservice Development por
Dapr Unleashed: Accelerating Microservice DevelopmentDapr Unleashed: Accelerating Microservice Development
Dapr Unleashed: Accelerating Microservice DevelopmentMiroslav Janeski
10 vistas29 diapositivas
DSD-INT 2023 Delft3D FM Suite 2024.01 1D2D - Beta testing programme - Geertsema por
DSD-INT 2023 Delft3D FM Suite 2024.01 1D2D - Beta testing programme - GeertsemaDSD-INT 2023 Delft3D FM Suite 2024.01 1D2D - Beta testing programme - Geertsema
DSD-INT 2023 Delft3D FM Suite 2024.01 1D2D - Beta testing programme - GeertsemaDeltares
17 vistas13 diapositivas
DSD-INT 2023 Simulating a falling apron in Delft3D 4 - Engineering Practice -... por
DSD-INT 2023 Simulating a falling apron in Delft3D 4 - Engineering Practice -...DSD-INT 2023 Simulating a falling apron in Delft3D 4 - Engineering Practice -...
DSD-INT 2023 Simulating a falling apron in Delft3D 4 - Engineering Practice -...Deltares
6 vistas15 diapositivas
Software evolution understanding: Automatic extraction of software identifier... por
Software evolution understanding: Automatic extraction of software identifier...Software evolution understanding: Automatic extraction of software identifier...
Software evolution understanding: Automatic extraction of software identifier...Ra'Fat Al-Msie'deen
7 vistas33 diapositivas

Último(20)

Advanced API Mocking Techniques por Dimpy Adhikary
Advanced API Mocking TechniquesAdvanced API Mocking Techniques
Advanced API Mocking Techniques
Dimpy Adhikary19 vistas
Dapr Unleashed: Accelerating Microservice Development por Miroslav Janeski
Dapr Unleashed: Accelerating Microservice DevelopmentDapr Unleashed: Accelerating Microservice Development
Dapr Unleashed: Accelerating Microservice Development
Miroslav Janeski10 vistas
DSD-INT 2023 Delft3D FM Suite 2024.01 1D2D - Beta testing programme - Geertsema por Deltares
DSD-INT 2023 Delft3D FM Suite 2024.01 1D2D - Beta testing programme - GeertsemaDSD-INT 2023 Delft3D FM Suite 2024.01 1D2D - Beta testing programme - Geertsema
DSD-INT 2023 Delft3D FM Suite 2024.01 1D2D - Beta testing programme - Geertsema
Deltares17 vistas
DSD-INT 2023 Simulating a falling apron in Delft3D 4 - Engineering Practice -... por Deltares
DSD-INT 2023 Simulating a falling apron in Delft3D 4 - Engineering Practice -...DSD-INT 2023 Simulating a falling apron in Delft3D 4 - Engineering Practice -...
DSD-INT 2023 Simulating a falling apron in Delft3D 4 - Engineering Practice -...
Deltares6 vistas
Software evolution understanding: Automatic extraction of software identifier... por Ra'Fat Al-Msie'deen
Software evolution understanding: Automatic extraction of software identifier...Software evolution understanding: Automatic extraction of software identifier...
Software evolution understanding: Automatic extraction of software identifier...
Dev-Cloud Conference 2023 - Continuous Deployment Showdown: Traditionelles CI... por Marc Müller
Dev-Cloud Conference 2023 - Continuous Deployment Showdown: Traditionelles CI...Dev-Cloud Conference 2023 - Continuous Deployment Showdown: Traditionelles CI...
Dev-Cloud Conference 2023 - Continuous Deployment Showdown: Traditionelles CI...
Marc Müller37 vistas
DSD-INT 2023 The Danube Hazardous Substances Model - Kovacs por Deltares
DSD-INT 2023 The Danube Hazardous Substances Model - KovacsDSD-INT 2023 The Danube Hazardous Substances Model - Kovacs
DSD-INT 2023 The Danube Hazardous Substances Model - Kovacs
Deltares8 vistas
Tridens DevOps por Tridens
Tridens DevOpsTridens DevOps
Tridens DevOps
Tridens9 vistas
DSD-INT 2023 Exploring flash flood hazard reduction in arid regions using a h... por Deltares
DSD-INT 2023 Exploring flash flood hazard reduction in arid regions using a h...DSD-INT 2023 Exploring flash flood hazard reduction in arid regions using a h...
DSD-INT 2023 Exploring flash flood hazard reduction in arid regions using a h...
Deltares5 vistas
FIMA 2023 Neo4j & FS - Entity Resolution.pptx por Neo4j
FIMA 2023 Neo4j & FS - Entity Resolution.pptxFIMA 2023 Neo4j & FS - Entity Resolution.pptx
FIMA 2023 Neo4j & FS - Entity Resolution.pptx
Neo4j6 vistas
AI and Ml presentation .pptx por FayazAli87
AI and Ml presentation .pptxAI and Ml presentation .pptx
AI and Ml presentation .pptx
FayazAli8711 vistas
.NET Developer Conference 2023 - .NET Microservices mit Dapr – zu viel Abstra... por Marc Müller
.NET Developer Conference 2023 - .NET Microservices mit Dapr – zu viel Abstra....NET Developer Conference 2023 - .NET Microservices mit Dapr – zu viel Abstra...
.NET Developer Conference 2023 - .NET Microservices mit Dapr – zu viel Abstra...
Marc Müller38 vistas
360 graden fabriek por info33492
360 graden fabriek360 graden fabriek
360 graden fabriek
info3349237 vistas
DSD-INT 2023 3D hydrodynamic modelling of microplastic transport in lakes - J... por Deltares
DSD-INT 2023 3D hydrodynamic modelling of microplastic transport in lakes - J...DSD-INT 2023 3D hydrodynamic modelling of microplastic transport in lakes - J...
DSD-INT 2023 3D hydrodynamic modelling of microplastic transport in lakes - J...
Deltares9 vistas
Airline Booking Software por SharmiMehta
Airline Booking SoftwareAirline Booking Software
Airline Booking Software
SharmiMehta5 vistas
DSD-INT 2023 Machine learning in hydraulic engineering - Exploring unseen fut... por Deltares
DSD-INT 2023 Machine learning in hydraulic engineering - Exploring unseen fut...DSD-INT 2023 Machine learning in hydraulic engineering - Exploring unseen fut...
DSD-INT 2023 Machine learning in hydraulic engineering - Exploring unseen fut...
Deltares7 vistas

Cross Platform Mobile Apps with the Ionic Framework