Ionic 4 + capacitor + angular 7

Marino Di Clemente
Marino Di Clementesenior web developer at freelance
IONIC 4
+
ANGULAR 7
+
CAPACITOR
21 Marzo 2019
Marino Di Clemente
@kernelfolla
Web Developer
Ionic 4 +  capacitor + angular 7
#1 PERCHÈ JS?
Ionic 4 +  capacitor + angular 7
–David Wheeler
“All problems in computer science can be solved by
another level of indirection”.
INDIRECTION
“Compatibility means deliberately repeating other
people's mistakes.”.
COMPATIBILITY
https://xkcd.com/1266/
add
ABSTRACT SYNTAXTREE
INTERMEDIATE 

REPRESENTATION
STACK BASED VIRTUAL MACHINE
push u
add
ABSTRACT SYNTAXTREE
INTERMEDIATE 

REPRESENTATION
STACK BASED VIRTUAL MACHINE
add
push u
add
ABSTRACT SYNTAXTREE
INTERMEDIATE 

REPRESENTATION
STACK BASED VIRTUAL MACHINE
multiply
add
push u
add
ABSTRACT SYNTAXTREE
INTERMEDIATE 

REPRESENTATION
STACK BASED VIRTUAL MACHINE
push z
multiply
add
push u
add
ABSTRACT SYNTAXTREE
INTERMEDIATE 

REPRESENTATION
STACK BASED VIRTUAL MACHINE
push y
push z
multiply
add
push u
add
ABSTRACT SYNTAXTREE
INTERMEDIATE 

REPRESENTATION
STACK BASED VIRTUAL MACHINE
push x
push y
push z
multiply
add
push u
add
ABSTRACT SYNTAXTREE
INTERMEDIATE 

REPRESENTATION
STACK BASED VIRTUAL MACHINE
push x
push y
push z
multiply
add
push u
add
INTERMEDIATE 

REPRESENTATION
STACK BASED VIRTUAL MACHINE
EXECUTION 

STACK
push x
push y
push z
multiply
add
push u
add
INTERMEDIATE 

REPRESENTATION
STACK BASED VIRTUAL MACHINE
X
EXECUTION 

STACK
push x
push y
push z
multiply
add
push u
add
INTERMEDIATE 

REPRESENTATION
STACK BASED VIRTUAL MACHINE
Y
X
EXECUTION 

STACK
push x
push y
push z
multiply
add
push u
add
INTERMEDIATE 

REPRESENTATION
STACK BASED VIRTUAL MACHINE
Z
Y
X
EXECUTION 

STACK
push x
push y
push z
multiply
add
push u
add
INTERMEDIATE 

REPRESENTATION
STACK BASED VIRTUAL MACHINE
Y*Z
X
EXECUTION 

STACK
push x
push y
push z
multiply
add
push u
add
INTERMEDIATE 

REPRESENTATION
STACK BASED VIRTUAL MACHINE
(Y*Z)+X
EXECUTION 

STACK
push x
push y
push z
multiply
add
push u
add
INTERMEDIATE 

REPRESENTATION
STACK BASED VIRTUAL MACHINE
U
(Y*Z)+X
EXECUTION 

STACK
push x
push y
push z
multiply
add
push u
add
INTERMEDIATE 

REPRESENTATION
STACK BASED VIRTUAL MACHINE
((Y*Z)+X)+U
EXECUTION 

STACK
1975 NIKLAUS WIRTH PASCAL

P-CODE MACHINE
6 AGOSTO 1991

TIM BERNERS LEE
PUBBLICA IL PRIMO SITO WEB
23 GENNAIO 1993

MARC ANDREESSEN E ERIC BINA

PUBBLICANO MOSAIC
23 MAGGIO 1994

JIM(JAMES) CLARK E MARC ANDREESSEN

PUBBLICANO 

NETSCAPE NAVIGATOR
23 MAGGIO 1995

SUN PUBBLICA JAVA
Ionic 4 +  capacitor + angular 7
https://en.wikipedia.org/wiki/Lars_Bak_(computer_programmer)
~1999 - Java Hotspot (JIT)
MAGGIO 1995

A 34 ANNI BRENDAN EICH

SCRIVE JAVASCRIPT IN 10 GIORNI
https://www.youtube.com/watch?v=GxouWy-ZE80
ispirato da SCHEME(dialetto del LISP) per il FRONTEND

ispirato da JVM per il BACKEND
So in 10 days in May 1995, I wrote
A lexical scanner and parser for early JS
The parser emitted stack-machine bytecode
Which ran in a bytecode interpreter
Function.prototype.toString bytecode decompiler
The standard library was poor
Array was Object with .length property
Date hand-ported (h/t ksmith@netscape.com) from java.util.Date
https://brendaneich.com/2015/06/from-asm-js-to-webassembly/
16 AGOSTO 1995

MICROSOFT PUBBLICA

INTERNET EXPLORER
Ionic 4 +  capacitor + angular 7
Ionic 4 +  capacitor + angular 7
2007 - IPHONE
https://www.youtube.com/watch?v=y1B2c3ZD9fk&feature=youtu.be&t=4414
10 LUGLIO 2008 - APP STORE

2 SETTEMBRE 2008 - CHROME

23 SETTEMBRE 2008 -ANDROID
DALVIK ART
ANDROID != JAVA
Ionic 4 +  capacitor + angular 7
Ionic 4 +  capacitor + angular 7
Ionic 4 +  capacitor + angular 7
–Steve Jobs
“New open standards created in the mobile era, such
as HTML5, will win on mobile devices (and PCs too).
Perhaps Adobe should focus more on creating great
HTML5 tools for the future, and less on criticizing
Apple for leaving the past behind.”.
APRILE 2010 -THOUGHTS ON FLASH
Ionic 4 +  capacitor + angular 7
ORA ABBIAMO 

GLI STANDARD!
PERFORMANCE?
https://medium.com/@valeriocomo/web-assembly-710de9981c9
WEBASSEMBLY
EVENT LOOP
https://www.youtube.com/watch?v=8aGhZQkoFbQ
INTERPRETED + COMPILED JIT 

+ CODE CACHING 

+ SPECULATIVE OPTIMIZATIONS
https://developer.mozilla.org/it/docs/Web/JavaScript/EventLoop
https://github.com/felixrieseberg/windows95
JAVASCRIPT? O RLY?
ELM?TYPESCRIPT? FLOW? DART?
#2 IONIC
😢
HYBRID APP?
FLUTTER? (💖)
IONIC È UN WEB UI FRAMEWORK

CHE EMULA I WIDGET NATIVI
UTILIZZANDO WEB COMPONENTS
https://ionicframework.com/docs/components
Ionic 4 +  capacitor + angular 7
Ionic 4 +  capacitor + angular 7
Ionic 4 +  capacitor + angular 7
Ionic 4 +  capacitor + angular 7
WEB COMPONENTS
CUSTOM ELEMENTS
progetta e utilizza nuovi tipi di elementi DOM.
SHADOW DOM
utilizza gli stili incapsulati e il markup all'interno di un componente web.

HTML IMPORT
include e riutilizza il documento HTML in un altro documento HTML.
HTML TEMPLATE

dichiara i frammenti di codice che non verranno utilizzati durante il
caricamento della pagina, ma che potranno essere successivamente
istanziati in fase di runtime.

https://www.webcomponents.org/introduction
CUSTOM PROPERTIES
sono variabili definite nei CSS che contengono valori specifici da
riutilizzare e ridefinire in tutto il documento.

Le variabili CSS consentono di archiviare un valore in un unico posto,
quindi di fare riferimento in più altri posti.



Consentono inoltre di modificare il CSS in modo dinamico a runtime
(che in precedenza richiedeva un preprocessore CSS).



Le variabili CSS rendono più semplice che mai l'override dei
componenti.
https://ionicframework.com/docs/theming/css-variables
CSS VARIABLES
https://developer.mozilla.org/en-US/docs/Web/CSS/::slotted
https://developer.mozilla.org/en-US/docs/Web/CSS/:host()
https://developer.mozilla.org/en-US/docs/Web/CSS/:host-context()
STENCILJS
• TypeScript support
• Asynchronous rendering pipeline
• A tiny virtual DOM layer
• One-way data binding
• JSX support
• Simple component lazy-loading
Ionic 4 +  capacitor + angular 7
DECORATORS
• @Component() declares a new web component
• @Prop() declares an exposed property/attribute
• @State() declares an internal state of the component
• @Watch() declares a hook that runs when a property or state changes
• @Element() declares a reference to the host element
• @Method() declares an exposed public method
• @Event() declares a DOM event the component might emit
• @Listen() listens for DOM events
LIFECYCLE HOOKS
• componentWillLoad()
• componentDidLoad()
• componentWillUpdate()
• componentDidUpdate()
• componentDidUnload()
https://github.com/ionic-team/ionic/tree/master/core/src/components
https://developer.mozilla.org/en-US/docs/Web/API/Intersection_Observer_API
https://ionicframework.com/docs/api/button#slots
STENCILJS È FRAMEWORK AGNOSTIC
↓

IONIC USA STENCILJS
↓

IONIC È FRAMEWORK AGNOSTIC
IONIC REACT BETA
21 FEBBRAIO 2019
https://blog.ionicframework.com/announcing-the-ionic-react-beta/
COMPATIBILITÀ?
+
=
Capacitor is a cross-platform app runtime
that makes it easy to build web apps that
run natively on iOS,Android,
Electron, and the web.


We call these apps "Native Progressive
Web Apps" and they represent the next
evolution beyond Hybrid apps.
CAPACITOR?
Ionic 4 +  capacitor + angular 7
Ionic 4 +  capacitor + angular 7
Ionic 4 +  capacitor + angular 7
BUILD?
https://capacitor.ionicframework.com/docs/basics/building-your-app/
CAPACITOR SUPPORTA I
PLUGIN DI CORDOVA
https://ionicframework.com/docs/native/
(OLTRE AD AVERE UN SUO SISTEMA DI PLUGIN)
https://capacitor.ionicframework.com/docs/plugins/
WEBVIEW
IOS
WKWEBVIEW
SAFARI
WEBKIT
ANDROID
WEBVIEW
CHROME
V8
ELECTRON

CHROMIUM
CHROME
V8
Ionic 4 +  capacitor + angular 7
Nel Mondo
In Italia
ANGULAR 7REACT
-JSX
-components
-internal state
-props for configuration
-react router
-state management with redux
-typescript
-directives
-modules
-decorators
-components
-services
-dependency injection
-pipes
-templates
-change detection
-zones
-AoT compilation
-Rxjs
-Templates
-XSS protection
-Angular HttpClient
-Angular Routing
-CSS encapsulation
-Jasmine(testing)
-Angular Forms

-Angular Material
-Angular Animations
-React router
-Redux
-Jest(testing)

-Material UI
Ionic 4 +  capacitor + angular 7
“COMPONENT DIRECTIVE”
ATTRIBUTE DIRECTIVE
STRUCTURAL DIRECTIVE
*NgIf *NgSwitch *NgFor
<p [directive]=“‘test’”>test</p>
https://netbasal.com/understanding-angular-structural-directives-659acd0f67e
https://netbasal.com/attribute-directives-angular-forms-b40503643089
MODULES
I moduli di angular sono contenitori. Possono contenere componenti,
provider di servizi e altri file di codice il cui ambito è definito dal
modulo che lo contiene. Possono importare funzionalità esportate da
altri moduli ed esportare funzionalità selezionate per l'uso da parte di
altri moduli.
APP MODULE
Ionic 4 +  capacitor + angular 7
Ionic 4 +  capacitor + angular 7
Ionic 4 +  capacitor + angular 7
Ionic 4 +  capacitor + angular 7
RXJS
composing asynchronous and event-based programs by using
observable sequences
imperative programming => declarative programming
RxJS is a library for reactive programming using Observables
promise on steroids
https://rxjs-dev.firebaseapp.com/
Ionic 4 +  capacitor + angular 7
Ionic 4 +  capacitor + angular 7
PIPE
HTTP INTERCEPTOR
MONDI DIVERSI
STESSI PROBLEMI
WANNA GO DEEPER?
DOMANDE?
GRAZIE!
kernelfolla@gmail.com
https://www.facebook.com/kernelfolla

https://www.twitter.com/kernelfolla
1 of 91

Recommended

L’enjeu du mobile pour le développeur Web, et comment Mozilla va vous aider by
L’enjeu du mobile pour le développeur Web,  et comment Mozilla va vous aiderL’enjeu du mobile pour le développeur Web,  et comment Mozilla va vous aider
L’enjeu du mobile pour le développeur Web, et comment Mozilla va vous aiderTristan Nitot
2K views56 slides
Chaos engineering applied by
Chaos engineering appliedChaos engineering applied
Chaos engineering appliedRamon Anger
30 views19 slides
IoT–The Death of (G)UI by
IoT–The Death of (G)UIIoT–The Death of (G)UI
IoT–The Death of (G)UIAndrea Krajewski
986 views53 slides
IoT: Utopia or Dystopia by
IoT: Utopia or Dystopia IoT: Utopia or Dystopia
IoT: Utopia or Dystopia helenk408
2.3K views25 slides
"Will Git Be Around Forever? A List of Possible Successors" at UtrechtJUG by
"Will Git Be Around Forever? A List of Possible Successors" at UtrechtJUG"Will Git Be Around Forever? A List of Possible Successors" at UtrechtJUG
"Will Git Be Around Forever? A List of Possible Successors" at UtrechtJUG🎤 Hanno Embregts 🎸
255 views68 slides
Automating Your Way out of the Dark Ages: Our Experience with (And Without) P... by
Automating Your Way out of the Dark Ages: Our Experience with (And Without) P...Automating Your Way out of the Dark Ages: Our Experience with (And Without) P...
Automating Your Way out of the Dark Ages: Our Experience with (And Without) P...Burin Asavesna
3.3K views71 slides

More Related Content

What's hot

Mobile Development with Ionic, React Native, and JHipster - AllTheTalks 2020 by
Mobile Development with Ionic, React Native, and JHipster - AllTheTalks 2020Mobile Development with Ionic, React Native, and JHipster - AllTheTalks 2020
Mobile Development with Ionic, React Native, and JHipster - AllTheTalks 2020Matt Raible
342 views45 slides
WoT Tutorial @ Cisco by
WoT Tutorial @ CiscoWoT Tutorial @ Cisco
WoT Tutorial @ CiscoDominique Guinard
3.6K views49 slides
WoT @ Oracle-Labs by
WoT @ Oracle-LabsWoT @ Oracle-Labs
WoT @ Oracle-LabsDominique Guinard
1.9K views46 slides
When Things will Speak "Web" (Lecture) by
When Things will Speak "Web" (Lecture)When Things will Speak "Web" (Lecture)
When Things will Speak "Web" (Lecture)Dominique Guinard
3.2K views36 slides
Java REST API Framework Comparison - PWX 2021 by
Java REST API Framework Comparison - PWX 2021Java REST API Framework Comparison - PWX 2021
Java REST API Framework Comparison - PWX 2021Matt Raible
148 views73 slides
How to Win at UI Development in the World of Microservices - THAT Conference ... by
How to Win at UI Development in the World of Microservices - THAT Conference ...How to Win at UI Development in the World of Microservices - THAT Conference ...
How to Win at UI Development in the World of Microservices - THAT Conference ...Matt Raible
260 views28 slides

What's hot(6)

Mobile Development with Ionic, React Native, and JHipster - AllTheTalks 2020 by Matt Raible
Mobile Development with Ionic, React Native, and JHipster - AllTheTalks 2020Mobile Development with Ionic, React Native, and JHipster - AllTheTalks 2020
Mobile Development with Ionic, React Native, and JHipster - AllTheTalks 2020
Matt Raible342 views
When Things will Speak "Web" (Lecture) by Dominique Guinard
When Things will Speak "Web" (Lecture)When Things will Speak "Web" (Lecture)
When Things will Speak "Web" (Lecture)
Dominique Guinard3.2K views
Java REST API Framework Comparison - PWX 2021 by Matt Raible
Java REST API Framework Comparison - PWX 2021Java REST API Framework Comparison - PWX 2021
Java REST API Framework Comparison - PWX 2021
Matt Raible148 views
How to Win at UI Development in the World of Microservices - THAT Conference ... by Matt Raible
How to Win at UI Development in the World of Microservices - THAT Conference ...How to Win at UI Development in the World of Microservices - THAT Conference ...
How to Win at UI Development in the World of Microservices - THAT Conference ...
Matt Raible260 views

Similar to Ionic 4 + capacitor + angular 7

Microservices for the Masses with Spring Boot, JHipster, and OAuth - South We... by
Microservices for the Masses with Spring Boot, JHipster, and OAuth - South We...Microservices for the Masses with Spring Boot, JHipster, and OAuth - South We...
Microservices for the Masses with Spring Boot, JHipster, and OAuth - South We...Matt Raible
355 views73 slides
Plone FSR by
Plone FSRPlone FSR
Plone FSRfulv
476 views51 slides
Play framework by
Play frameworkPlay framework
Play frameworkAndrew Skiba
6K views37 slides
Firefox OS - HTML5 for a truly world-wide-web by
Firefox OS - HTML5 for a truly world-wide-webFirefox OS - HTML5 for a truly world-wide-web
Firefox OS - HTML5 for a truly world-wide-webChristian Heilmann
5.2K views79 slides
Microservices for the Masses with Spring Boot, JHipster, and OAuth - Switzerl... by
Microservices for the Masses with Spring Boot, JHipster, and OAuth - Switzerl...Microservices for the Masses with Spring Boot, JHipster, and OAuth - Switzerl...
Microservices for the Masses with Spring Boot, JHipster, and OAuth - Switzerl...Matt Raible
237 views74 slides
JavaScript Libraries: The Big Picture by
JavaScript Libraries: The Big PictureJavaScript Libraries: The Big Picture
JavaScript Libraries: The Big PictureSimon Willison
4K views52 slides

Similar to Ionic 4 + capacitor + angular 7 (20)

Microservices for the Masses with Spring Boot, JHipster, and OAuth - South We... by Matt Raible
Microservices for the Masses with Spring Boot, JHipster, and OAuth - South We...Microservices for the Masses with Spring Boot, JHipster, and OAuth - South We...
Microservices for the Masses with Spring Boot, JHipster, and OAuth - South We...
Matt Raible355 views
Plone FSR by fulv
Plone FSRPlone FSR
Plone FSR
fulv476 views
Firefox OS - HTML5 for a truly world-wide-web by Christian Heilmann
Firefox OS - HTML5 for a truly world-wide-webFirefox OS - HTML5 for a truly world-wide-web
Firefox OS - HTML5 for a truly world-wide-web
Christian Heilmann5.2K views
Microservices for the Masses with Spring Boot, JHipster, and OAuth - Switzerl... by Matt Raible
Microservices for the Masses with Spring Boot, JHipster, and OAuth - Switzerl...Microservices for the Masses with Spring Boot, JHipster, and OAuth - Switzerl...
Microservices for the Masses with Spring Boot, JHipster, and OAuth - Switzerl...
Matt Raible237 views
JavaScript Libraries: The Big Picture by Simon Willison
JavaScript Libraries: The Big PictureJavaScript Libraries: The Big Picture
JavaScript Libraries: The Big Picture
Simon Willison4K views
JEE on DC/OS - MesosCon Europe by QAware GmbH
JEE on DC/OS - MesosCon EuropeJEE on DC/OS - MesosCon Europe
JEE on DC/OS - MesosCon Europe
QAware GmbH690 views
Economies of Scaling Software by Joshua Long
Economies of Scaling SoftwareEconomies of Scaling Software
Economies of Scaling Software
Joshua Long3K views
Bending the IoT to your will with JavaScript by All Things Open
Bending the IoT to your will with JavaScriptBending the IoT to your will with JavaScript
Bending the IoT to your will with JavaScript
All Things Open111 views
Cloud Computing Bootcamp On The Google App Engine v1.2.1 by Matthew McCullough
Cloud Computing Bootcamp On The Google App Engine v1.2.1Cloud Computing Bootcamp On The Google App Engine v1.2.1
Cloud Computing Bootcamp On The Google App Engine v1.2.1
Matthew McCullough18.4K views
Building a full-stack app with Golang and Google Cloud Platform in one week by Dr. Felix Raab
Building a full-stack app with Golang and Google Cloud Platform in one weekBuilding a full-stack app with Golang and Google Cloud Platform in one week
Building a full-stack app with Golang and Google Cloud Platform in one week
Dr. Felix Raab185 views
Electron Firenze 2020: Linux, Windows o MacOS? by Denny Biasiolli
Electron Firenze 2020: Linux, Windows o MacOS?Electron Firenze 2020: Linux, Windows o MacOS?
Electron Firenze 2020: Linux, Windows o MacOS?
Denny Biasiolli89 views
Cloud native java are we there yet go tech world 2019 by Peter Pilgrim
Cloud native java   are we there yet  go tech world 2019Cloud native java   are we there yet  go tech world 2019
Cloud native java are we there yet go tech world 2019
Peter Pilgrim227 views
Don't predict the future by Erik Arvedson
Don't predict the futureDon't predict the future
Don't predict the future
Erik Arvedson272 views

Recently uploaded

TrustArc Webinar - Managing Online Tracking Technology Vendors_ A Checklist f... by
TrustArc Webinar - Managing Online Tracking Technology Vendors_ A Checklist f...TrustArc Webinar - Managing Online Tracking Technology Vendors_ A Checklist f...
TrustArc Webinar - Managing Online Tracking Technology Vendors_ A Checklist f...TrustArc
160 views29 slides
Setting Up Your First CloudStack Environment with Beginners Challenges - MD R... by
Setting Up Your First CloudStack Environment with Beginners Challenges - MD R...Setting Up Your First CloudStack Environment with Beginners Challenges - MD R...
Setting Up Your First CloudStack Environment with Beginners Challenges - MD R...ShapeBlue
132 views15 slides
Data Integrity for Banking and Financial Services by
Data Integrity for Banking and Financial ServicesData Integrity for Banking and Financial Services
Data Integrity for Banking and Financial ServicesPrecisely
78 views26 slides
Centralized Logging Feature in CloudStack using ELK and Grafana - Kiran Chava... by
Centralized Logging Feature in CloudStack using ELK and Grafana - Kiran Chava...Centralized Logging Feature in CloudStack using ELK and Grafana - Kiran Chava...
Centralized Logging Feature in CloudStack using ELK and Grafana - Kiran Chava...ShapeBlue
101 views17 slides
Ransomware is Knocking your Door_Final.pdf by
Ransomware is Knocking your Door_Final.pdfRansomware is Knocking your Door_Final.pdf
Ransomware is Knocking your Door_Final.pdfSecurity Bootcamp
90 views46 slides
The Power of Heat Decarbonisation Plans in the Built Environment by
The Power of Heat Decarbonisation Plans in the Built EnvironmentThe Power of Heat Decarbonisation Plans in the Built Environment
The Power of Heat Decarbonisation Plans in the Built EnvironmentIES VE
69 views20 slides

Recently uploaded(20)

TrustArc Webinar - Managing Online Tracking Technology Vendors_ A Checklist f... by TrustArc
TrustArc Webinar - Managing Online Tracking Technology Vendors_ A Checklist f...TrustArc Webinar - Managing Online Tracking Technology Vendors_ A Checklist f...
TrustArc Webinar - Managing Online Tracking Technology Vendors_ A Checklist f...
TrustArc160 views
Setting Up Your First CloudStack Environment with Beginners Challenges - MD R... by ShapeBlue
Setting Up Your First CloudStack Environment with Beginners Challenges - MD R...Setting Up Your First CloudStack Environment with Beginners Challenges - MD R...
Setting Up Your First CloudStack Environment with Beginners Challenges - MD R...
ShapeBlue132 views
Data Integrity for Banking and Financial Services by Precisely
Data Integrity for Banking and Financial ServicesData Integrity for Banking and Financial Services
Data Integrity for Banking and Financial Services
Precisely78 views
Centralized Logging Feature in CloudStack using ELK and Grafana - Kiran Chava... by ShapeBlue
Centralized Logging Feature in CloudStack using ELK and Grafana - Kiran Chava...Centralized Logging Feature in CloudStack using ELK and Grafana - Kiran Chava...
Centralized Logging Feature in CloudStack using ELK and Grafana - Kiran Chava...
ShapeBlue101 views
The Power of Heat Decarbonisation Plans in the Built Environment by IES VE
The Power of Heat Decarbonisation Plans in the Built EnvironmentThe Power of Heat Decarbonisation Plans in the Built Environment
The Power of Heat Decarbonisation Plans in the Built Environment
IES VE69 views
CloudStack Object Storage - An Introduction - Vladimir Petrov - ShapeBlue by ShapeBlue
CloudStack Object Storage - An Introduction - Vladimir Petrov - ShapeBlueCloudStack Object Storage - An Introduction - Vladimir Petrov - ShapeBlue
CloudStack Object Storage - An Introduction - Vladimir Petrov - ShapeBlue
ShapeBlue93 views
Backroll, News and Demo - Pierre Charton, Matthias Dhellin, Ousmane Diarra - ... by ShapeBlue
Backroll, News and Demo - Pierre Charton, Matthias Dhellin, Ousmane Diarra - ...Backroll, News and Demo - Pierre Charton, Matthias Dhellin, Ousmane Diarra - ...
Backroll, News and Demo - Pierre Charton, Matthias Dhellin, Ousmane Diarra - ...
ShapeBlue146 views
The Role of Patterns in the Era of Large Language Models by Yunyao Li
The Role of Patterns in the Era of Large Language ModelsThe Role of Patterns in the Era of Large Language Models
The Role of Patterns in the Era of Large Language Models
Yunyao Li80 views
CloudStack Managed User Data and Demo - Harikrishna Patnala - ShapeBlue by ShapeBlue
CloudStack Managed User Data and Demo - Harikrishna Patnala - ShapeBlueCloudStack Managed User Data and Demo - Harikrishna Patnala - ShapeBlue
CloudStack Managed User Data and Demo - Harikrishna Patnala - ShapeBlue
ShapeBlue94 views
Elevating Privacy and Security in CloudStack - Boris Stoyanov - ShapeBlue by ShapeBlue
Elevating Privacy and Security in CloudStack - Boris Stoyanov - ShapeBlueElevating Privacy and Security in CloudStack - Boris Stoyanov - ShapeBlue
Elevating Privacy and Security in CloudStack - Boris Stoyanov - ShapeBlue
ShapeBlue179 views
Igniting Next Level Productivity with AI-Infused Data Integration Workflows by Safe Software
Igniting Next Level Productivity with AI-Infused Data Integration Workflows Igniting Next Level Productivity with AI-Infused Data Integration Workflows
Igniting Next Level Productivity with AI-Infused Data Integration Workflows
Safe Software385 views
Automating a World-Class Technology Conference; Behind the Scenes of CiscoLive by Network Automation Forum
Automating a World-Class Technology Conference; Behind the Scenes of CiscoLiveAutomating a World-Class Technology Conference; Behind the Scenes of CiscoLive
Automating a World-Class Technology Conference; Behind the Scenes of CiscoLive
iSAQB Software Architecture Gathering 2023: How Process Orchestration Increas... by Bernd Ruecker
iSAQB Software Architecture Gathering 2023: How Process Orchestration Increas...iSAQB Software Architecture Gathering 2023: How Process Orchestration Increas...
iSAQB Software Architecture Gathering 2023: How Process Orchestration Increas...
Bernd Ruecker50 views
Declarative Kubernetes Cluster Deployment with Cloudstack and Cluster API - O... by ShapeBlue
Declarative Kubernetes Cluster Deployment with Cloudstack and Cluster API - O...Declarative Kubernetes Cluster Deployment with Cloudstack and Cluster API - O...
Declarative Kubernetes Cluster Deployment with Cloudstack and Cluster API - O...
ShapeBlue88 views
CloudStack and GitOps at Enterprise Scale - Alex Dometrius, Rene Glover - AT&T by ShapeBlue
CloudStack and GitOps at Enterprise Scale - Alex Dometrius, Rene Glover - AT&TCloudStack and GitOps at Enterprise Scale - Alex Dometrius, Rene Glover - AT&T
CloudStack and GitOps at Enterprise Scale - Alex Dometrius, Rene Glover - AT&T
ShapeBlue112 views
Migrating VMware Infra to KVM Using CloudStack - Nicolas Vazquez - ShapeBlue by ShapeBlue
Migrating VMware Infra to KVM Using CloudStack - Nicolas Vazquez - ShapeBlueMigrating VMware Infra to KVM Using CloudStack - Nicolas Vazquez - ShapeBlue
Migrating VMware Infra to KVM Using CloudStack - Nicolas Vazquez - ShapeBlue
ShapeBlue176 views

Ionic 4 + capacitor + angular 7