Building End to-End Web Apps Using TypeScript

Gil Fink
Gil FinkFounder and Owner at sparXys
Gil Fink
Senior Architect
SELA
Building End-to-End
Web Apps
Using TypeScript
www.devconnections.com
BUILDING END-TO-END WEB APPS USING TYPESCRIPT
AGENDA
 The Why
 Introduction to TypeScript
 Building a Simple App with TypeScript
 Q&A
 Summary
www.devconnections.com
BUILDING END-TO-END WEB APPS USING TYPESCRIPT
GETTING STARTED
 JavaScript can feel messy
 We want a maintainable code
 We want to use familiar JavaScript
patterns
www.devconnections.com
BUILDING END-TO-END WEB APPS USING TYPESCRIPT
THE ALTERNATIVES
 We have several alternatives:
 Hard core JavaScript development
 CoffeeScript – http://coffeescript.org
 Dart – http://dartlang.org
 Script# - http://scriptsharp.com/
www.devconnections.com
BUILDING END-TO-END WEB APPS USING TYPESCRIPT
WHAT IS TYPESCRIPT?
 “TypeScript is a typed superset of
JavaScript that compiles to plain
JavaScript” ~typescriptlang.org
5
www.devconnections.com
BUILDING END-TO-END WEB APPS USING TYPESCRIPT
DEMO
Hello TypeScript
www.devconnections.com
BUILDING END-TO-END WEB APPS USING TYPESCRIPT
TYPESCRIPT IS FLEXIBLE
7
Any Browser Any Host
Any OS Tool Support
www.devconnections.com
BUILDING END-TO-END WEB APPS USING TYPESCRIPT
TYPESCRIPT KEY FEATURES
8
Support
standard
JavaScript
code with
static typing
Encapsulation
through
classes and
modules
Support for
constructors,
properties and
functions
Interfaces
and enums
support
Lambda
support =>
and generics
Intellisense
and syntax
checking
www.devconnections.com
BUILDING END-TO-END WEB APPS USING TYPESCRIPT
FROM TYPESCRIPT TO JAVASCRIPT
9
class Greeter {
greeting: string;
constructor(message: string) {
this.greeting = message;
}
greet() {
return “Hi," + this.greeting;
}
}
TypeScript Code JavaScript Code
TypeScript
Compiler
var Greeter = (function () {
function Greeter(message) {
this.greeting = message;
}
Greeter.prototype.greet =
function () {
return “Hi," + this.greeting;
};
return Greeter;
})();
tsc
www.devconnections.com
BUILDING END-TO-END WEB APPS USING TYPESCRIPT
DEMO
Building a Simple App with TypeScript
www.devconnections.com
BUILDING END-TO-END WEB APPS USING TYPESCRIPT
QUESTIONS
www.devconnections.com
BUILDING END-TO-END WEB APPS USING TYPESCRIPT
SUMMARY
• Open source language that compiles into
JavaScript
• Key features:
• Code encapsulation
• Maintainable code
• Tooling support
• Learn TypeScript today!
www.devconnections.com
BUILDING END-TO-END WEB APPS USING TYPESCRIPT
RESOURCES
 Session slide deck and demos –
http://sdrv.ms/1eGoSUM
 TypeScript –
http://www.typescriptlang.org
 My Website – http://www.gilfink.net
 Follow me on Twitter – @gilfink
www.devconnections.com
BUILDING END-TO-END WEB APPS USING TYPESCRIPT
THANK YOU
Gil Fink
Senior Architect
gilf@sela.co.il
@gilfink
http://www.gilfink.net
1 of 14

Recommended

Django Deployer by
Django DeployerDjango Deployer
Django DeployerColin Su
1.2K views18 slides
Building plugins like a pro by
Building plugins like a proBuilding plugins like a pro
Building plugins like a proMarko Heijnen
2.1K views43 slides
Unscrambling An Omelette - How Companies Can Use WordPress Better - Jeremy Ke... by
Unscrambling An Omelette - How Companies Can Use WordPress Better - Jeremy Ke...Unscrambling An Omelette - How Companies Can Use WordPress Better - Jeremy Ke...
Unscrambling An Omelette - How Companies Can Use WordPress Better - Jeremy Ke...WordCamp Sydney
474 views15 slides
Frameworks for Web Development by
Frameworks for Web DevelopmentFrameworks for Web Development
Frameworks for Web Developmentdtmodern
55 views13 slides
Tales of Two Brothers by
Tales of Two BrothersTales of Two Brothers
Tales of Two BrothersFiyaz Hasan
604 views20 slides
When You Cant Code You Can Blend by
When You Cant Code You Can BlendWhen You Cant Code You Can Blend
When You Cant Code You Can BlendFiyaz Hasan
476 views11 slides

More Related Content

What's hot

VersionPress - WordPress + Git by
VersionPress - WordPress + GitVersionPress - WordPress + Git
VersionPress - WordPress + Gitfrankstaude
1K views45 slides
Walk in the shoe of angular by
Walk in the shoe of angularWalk in the shoe of angular
Walk in the shoe of angularFiyaz Hasan
458 views26 slides
Making sense of the front-end, for PHP developers by
Making sense of the front-end, for PHP developersMaking sense of the front-end, for PHP developers
Making sense of the front-end, for PHP developersLewiz
85 views46 slides
Georges Chitiga - Introduction to Phonegap - HTML5 & JS to native mobile app by
Georges Chitiga - Introduction to Phonegap - HTML5 & JS to native mobile appGeorges Chitiga - Introduction to Phonegap - HTML5 & JS to native mobile app
Georges Chitiga - Introduction to Phonegap - HTML5 & JS to native mobile appCodecamp Romania
610 views18 slides
How I built web services in CakePHP by
How I built web services in CakePHPHow I built web services in CakePHP
How I built web services in CakePHPDavid Yell
3.2K views24 slides
GlotPress aka translate.wordpress.org by
GlotPress aka translate.wordpress.orgGlotPress aka translate.wordpress.org
GlotPress aka translate.wordpress.orgMarko Heijnen
1.8K views37 slides

What's hot(20)

VersionPress - WordPress + Git by frankstaude
VersionPress - WordPress + GitVersionPress - WordPress + Git
VersionPress - WordPress + Git
frankstaude1K views
Walk in the shoe of angular by Fiyaz Hasan
Walk in the shoe of angularWalk in the shoe of angular
Walk in the shoe of angular
Fiyaz Hasan458 views
Making sense of the front-end, for PHP developers by Lewiz
Making sense of the front-end, for PHP developersMaking sense of the front-end, for PHP developers
Making sense of the front-end, for PHP developers
Lewiz 85 views
Georges Chitiga - Introduction to Phonegap - HTML5 & JS to native mobile app by Codecamp Romania
Georges Chitiga - Introduction to Phonegap - HTML5 & JS to native mobile appGeorges Chitiga - Introduction to Phonegap - HTML5 & JS to native mobile app
Georges Chitiga - Introduction to Phonegap - HTML5 & JS to native mobile app
Codecamp Romania610 views
How I built web services in CakePHP by David Yell
How I built web services in CakePHPHow I built web services in CakePHP
How I built web services in CakePHP
David Yell3.2K views
GlotPress aka translate.wordpress.org by Marko Heijnen
GlotPress aka translate.wordpress.orgGlotPress aka translate.wordpress.org
GlotPress aka translate.wordpress.org
Marko Heijnen1.8K views
Developing a native mobile apps using Ionic&Cordova by Damir Beylkhanov
Developing a native mobile apps using Ionic&CordovaDeveloping a native mobile apps using Ionic&Cordova
Developing a native mobile apps using Ionic&Cordova
Damir Beylkhanov260 views
PHP Berkshire October 2015 by David Yell
PHP Berkshire October 2015PHP Berkshire October 2015
PHP Berkshire October 2015
David Yell287 views
The JAMStack (Javascript, APIs, Markup). by Michael Brooks
The JAMStack (Javascript, APIs, Markup).The JAMStack (Javascript, APIs, Markup).
The JAMStack (Javascript, APIs, Markup).
Michael Brooks164 views
Nitrodroid 2013 | Building your first Android App on PhoneGap by Gaurav Singh
Nitrodroid 2013 | Building your first Android App on PhoneGapNitrodroid 2013 | Building your first Android App on PhoneGap
Nitrodroid 2013 | Building your first Android App on PhoneGap
Gaurav Singh823 views
Integrando o Typescript em suas aplicações ASP.NET by Luis Rudge
Integrando o Typescript em suas aplicações ASP.NETIntegrando o Typescript em suas aplicações ASP.NET
Integrando o Typescript em suas aplicações ASP.NET
Luis Rudge343 views
tiCONF Amsterdam 2014 building mobile teams by Martin de Keijzer
tiCONF Amsterdam 2014   building mobile teamstiCONF Amsterdam 2014   building mobile teams
tiCONF Amsterdam 2014 building mobile teams
Martin de Keijzer2.4K views
GWAB Lyon - Legacy code atelier by florentpellet
GWAB Lyon - Legacy code atelierGWAB Lyon - Legacy code atelier
GWAB Lyon - Legacy code atelier
florentpellet276 views
Creating real time applications with Angular and Firebase by Loiane Groner
Creating real time applications with Angular and FirebaseCreating real time applications with Angular and Firebase
Creating real time applications with Angular and Firebase
Loiane Groner402 views
VueJS Best Practices by Fatih Acet
VueJS Best PracticesVueJS Best Practices
VueJS Best Practices
Fatih Acet3.5K views
Fronted development trends - past, present and the future by Harijs Deksnis
Fronted development trends - past, present and the futureFronted development trends - past, present and the future
Fronted development trends - past, present and the future
Harijs Deksnis211 views
Build and Deploy a Python Web App to Amazon in 30 Mins by Jeff Hull
Build and Deploy a Python Web App to Amazon in 30 MinsBuild and Deploy a Python Web App to Amazon in 30 Mins
Build and Deploy a Python Web App to Amazon in 30 Mins
Jeff Hull9.6K views

Similar to Building End to-End Web Apps Using TypeScript

TypeScript VS JavaScript.pptx by
TypeScript VS JavaScript.pptxTypeScript VS JavaScript.pptx
TypeScript VS JavaScript.pptxAlbiorix Technology
256 views15 slides
Organisation of professional JavaScript Projects by
Organisation of professional JavaScript ProjectsOrganisation of professional JavaScript Projects
Organisation of professional JavaScript ProjectsInvolved IT
772 views126 slides
Developing ASP.NET MVC Applications Quicker With Kendo UI by
Developing ASP.NET MVC Applications Quicker With Kendo UIDeveloping ASP.NET MVC Applications Quicker With Kendo UI
Developing ASP.NET MVC Applications Quicker With Kendo UILohith Goudagere Nagaraj
11.4K views24 slides
JavaScript Revolution - 5/Nov/13 - PrDC Saskatoon, SK by
JavaScript Revolution - 5/Nov/13 - PrDC Saskatoon, SKJavaScript Revolution - 5/Nov/13 - PrDC Saskatoon, SK
JavaScript Revolution - 5/Nov/13 - PrDC Saskatoon, SKDavid Wesst
1.7K views63 slides
Building a REST API Microservice for the DevNet API Scavenger Hunt by
Building a REST API Microservice for the DevNet API Scavenger HuntBuilding a REST API Microservice for the DevNet API Scavenger Hunt
Building a REST API Microservice for the DevNet API Scavenger HuntAshley Roach
427 views30 slides
Web summit.pptx by
Web summit.pptxWeb summit.pptx
Web summit.pptx171SagnikRoy
355 views28 slides

Similar to Building End to-End Web Apps Using TypeScript(20)

Organisation of professional JavaScript Projects by Involved IT
Organisation of professional JavaScript ProjectsOrganisation of professional JavaScript Projects
Organisation of professional JavaScript Projects
Involved IT 772 views
JavaScript Revolution - 5/Nov/13 - PrDC Saskatoon, SK by David Wesst
JavaScript Revolution - 5/Nov/13 - PrDC Saskatoon, SKJavaScript Revolution - 5/Nov/13 - PrDC Saskatoon, SK
JavaScript Revolution - 5/Nov/13 - PrDC Saskatoon, SK
David Wesst1.7K views
Building a REST API Microservice for the DevNet API Scavenger Hunt by Ashley Roach
Building a REST API Microservice for the DevNet API Scavenger HuntBuilding a REST API Microservice for the DevNet API Scavenger Hunt
Building a REST API Microservice for the DevNet API Scavenger Hunt
Ashley Roach427 views
How to Become a Front-End Developer? Step-by-Step Guide by Careervira by Careervira
How to Become a Front-End Developer? Step-by-Step Guide by CareerviraHow to Become a Front-End Developer? Step-by-Step Guide by Careervira
How to Become a Front-End Developer? Step-by-Step Guide by Careervira
Careervira 22 views
Angular, the New Angular JS by Kenzan
Angular, the New Angular JSAngular, the New Angular JS
Angular, the New Angular JS
Kenzan190 views
Using Angular-CLI to Deploy an Angular 2 App Using Firebase in 30 Minutes by Tracy Lee
Using Angular-CLI to Deploy an Angular 2 App Using Firebase in 30 MinutesUsing Angular-CLI to Deploy an Angular 2 App Using Firebase in 30 Minutes
Using Angular-CLI to Deploy an Angular 2 App Using Firebase in 30 Minutes
Tracy Lee857 views
Using React Native to Create a Reusable Mobile App Architecture by Richard McMenamin
Using React Native to Create a Reusable Mobile App ArchitectureUsing React Native to Create a Reusable Mobile App Architecture
Using React Native to Create a Reusable Mobile App Architecture
Richard McMenamin742 views
Isomorphic javascript - Uppsala.js #8 by Alexander Aivars
Isomorphic javascript - Uppsala.js #8Isomorphic javascript - Uppsala.js #8
Isomorphic javascript - Uppsala.js #8
Alexander Aivars448 views
Angular coding: from project management to web and mobile deploy by Corley S.r.l.
Angular coding: from project management to web and mobile deployAngular coding: from project management to web and mobile deploy
Angular coding: from project management to web and mobile deploy
Corley S.r.l.893 views
SharePoint Conference North America - Converting your JavaScript to SPFX by Mark Rackley
SharePoint Conference North America - Converting your JavaScript to SPFXSharePoint Conference North America - Converting your JavaScript to SPFX
SharePoint Conference North America - Converting your JavaScript to SPFX
Mark Rackley310 views
Typescript kata The TDD style 2 edition by Ronnie Hegelund
Typescript kata The TDD style 2 editionTypescript kata The TDD style 2 edition
Typescript kata The TDD style 2 edition
Ronnie Hegelund3.9K views
Evolving Mobile Architectures by sgleadow
Evolving Mobile ArchitecturesEvolving Mobile Architectures
Evolving Mobile Architectures
sgleadow1.9K views

More from Gil Fink

Becoming a Tech Speaker by
Becoming a Tech SpeakerBecoming a Tech Speaker
Becoming a Tech SpeakerGil Fink
203 views18 slides
Web animation on steroids web animation api by
Web animation on steroids web animation api Web animation on steroids web animation api
Web animation on steroids web animation api Gil Fink
312 views5 slides
The Time for Vanilla Web Components has Arrived by
The Time for Vanilla Web Components has ArrivedThe Time for Vanilla Web Components has Arrived
The Time for Vanilla Web Components has ArrivedGil Fink
726 views51 slides
Stencil the time for vanilla web components has arrived by
Stencil the time for vanilla web components has arrivedStencil the time for vanilla web components has arrived
Stencil the time for vanilla web components has arrivedGil Fink
278 views46 slides
Stencil the time for vanilla web components has arrived by
Stencil the time for vanilla web components has arrivedStencil the time for vanilla web components has arrived
Stencil the time for vanilla web components has arrivedGil Fink
284 views51 slides
Stencil: The Time for Vanilla Web Components has Arrived by
Stencil: The Time for Vanilla Web Components has ArrivedStencil: The Time for Vanilla Web Components has Arrived
Stencil: The Time for Vanilla Web Components has ArrivedGil Fink
310 views50 slides

More from Gil Fink(20)

Becoming a Tech Speaker by Gil Fink
Becoming a Tech SpeakerBecoming a Tech Speaker
Becoming a Tech Speaker
Gil Fink203 views
Web animation on steroids web animation api by Gil Fink
Web animation on steroids web animation api Web animation on steroids web animation api
Web animation on steroids web animation api
Gil Fink312 views
The Time for Vanilla Web Components has Arrived by Gil Fink
The Time for Vanilla Web Components has ArrivedThe Time for Vanilla Web Components has Arrived
The Time for Vanilla Web Components has Arrived
Gil Fink726 views
Stencil the time for vanilla web components has arrived by Gil Fink
Stencil the time for vanilla web components has arrivedStencil the time for vanilla web components has arrived
Stencil the time for vanilla web components has arrived
Gil Fink278 views
Stencil the time for vanilla web components has arrived by Gil Fink
Stencil the time for vanilla web components has arrivedStencil the time for vanilla web components has arrived
Stencil the time for vanilla web components has arrived
Gil Fink284 views
Stencil: The Time for Vanilla Web Components has Arrived by Gil Fink
Stencil: The Time for Vanilla Web Components has ArrivedStencil: The Time for Vanilla Web Components has Arrived
Stencil: The Time for Vanilla Web Components has Arrived
Gil Fink310 views
Stencil the time for vanilla web components has arrived by Gil Fink
Stencil the time for vanilla web components has arrivedStencil the time for vanilla web components has arrived
Stencil the time for vanilla web components has arrived
Gil Fink290 views
Being a tech speaker by Gil Fink
Being a tech speakerBeing a tech speaker
Being a tech speaker
Gil Fink355 views
Working with Data in Service Workers by Gil Fink
Working with Data in Service WorkersWorking with Data in Service Workers
Working with Data in Service Workers
Gil Fink2.2K views
Demystifying Angular Animations by Gil Fink
Demystifying Angular AnimationsDemystifying Angular Animations
Demystifying Angular Animations
Gil Fink1.2K views
Redux data flow with angular by Gil Fink
Redux data flow with angularRedux data flow with angular
Redux data flow with angular
Gil Fink787 views
Redux data flow with angular by Gil Fink
Redux data flow with angularRedux data flow with angular
Redux data flow with angular
Gil Fink352 views
Who's afraid of front end databases? by Gil Fink
Who's afraid of front end databases?Who's afraid of front end databases?
Who's afraid of front end databases?
Gil Fink345 views
One language to rule them all type script by Gil Fink
One language to rule them all type scriptOne language to rule them all type script
One language to rule them all type script
Gil Fink286 views
End to-end apps with type script by Gil Fink
End to-end apps with type scriptEnd to-end apps with type script
End to-end apps with type script
Gil Fink317 views
Web component driven development by Gil Fink
Web component driven developmentWeb component driven development
Web component driven development
Gil Fink1.2K views
Web components by Gil Fink
Web componentsWeb components
Web components
Gil Fink517 views
Redux data flow with angular 2 by Gil Fink
Redux data flow with angular 2Redux data flow with angular 2
Redux data flow with angular 2
Gil Fink1.8K views
Biological Modeling, Powered by AngularJS by Gil Fink
Biological Modeling, Powered by AngularJSBiological Modeling, Powered by AngularJS
Biological Modeling, Powered by AngularJS
Gil Fink301 views
Who's afraid of front end databases by Gil Fink
Who's afraid of front end databasesWho's afraid of front end databases
Who's afraid of front end databases
Gil Fink330 views

Recently uploaded

20231123_Camunda Meetup Vienna.pdf by
20231123_Camunda Meetup Vienna.pdf20231123_Camunda Meetup Vienna.pdf
20231123_Camunda Meetup Vienna.pdfPhactum Softwareentwicklung GmbH
46 views73 slides
Kyo - Functional Scala 2023.pdf by
Kyo - Functional Scala 2023.pdfKyo - Functional Scala 2023.pdf
Kyo - Functional Scala 2023.pdfFlavio W. Brasil
434 views92 slides
ESPC 2023 - Protect and Govern your Sensitive Data with Microsoft Purview in ... by
ESPC 2023 - Protect and Govern your Sensitive Data with Microsoft Purview in ...ESPC 2023 - Protect and Govern your Sensitive Data with Microsoft Purview in ...
ESPC 2023 - Protect and Govern your Sensitive Data with Microsoft Purview in ...Jasper Oosterveld
28 views49 slides
【USB韌體設計課程】精選講義節錄-USB的列舉過程_艾鍗學院 by
【USB韌體設計課程】精選講義節錄-USB的列舉過程_艾鍗學院【USB韌體設計課程】精選講義節錄-USB的列舉過程_艾鍗學院
【USB韌體設計課程】精選講義節錄-USB的列舉過程_艾鍗學院IttrainingIttraining
80 views8 slides
2FA and OAuth2 in CloudStack - Andrija Panić - ShapeBlue by
2FA and OAuth2 in CloudStack - Andrija Panić - ShapeBlue2FA and OAuth2 in CloudStack - Andrija Panić - ShapeBlue
2FA and OAuth2 in CloudStack - Andrija Panić - ShapeBlueShapeBlue
50 views23 slides
Backup and Disaster Recovery with CloudStack and StorPool - Workshop - Venko ... by
Backup and Disaster Recovery with CloudStack and StorPool - Workshop - Venko ...Backup and Disaster Recovery with CloudStack and StorPool - Workshop - Venko ...
Backup and Disaster Recovery with CloudStack and StorPool - Workshop - Venko ...ShapeBlue
77 views12 slides

Recently uploaded(20)

ESPC 2023 - Protect and Govern your Sensitive Data with Microsoft Purview in ... by Jasper Oosterveld
ESPC 2023 - Protect and Govern your Sensitive Data with Microsoft Purview in ...ESPC 2023 - Protect and Govern your Sensitive Data with Microsoft Purview in ...
ESPC 2023 - Protect and Govern your Sensitive Data with Microsoft Purview in ...
【USB韌體設計課程】精選講義節錄-USB的列舉過程_艾鍗學院 by IttrainingIttraining
【USB韌體設計課程】精選講義節錄-USB的列舉過程_艾鍗學院【USB韌體設計課程】精選講義節錄-USB的列舉過程_艾鍗學院
【USB韌體設計課程】精選講義節錄-USB的列舉過程_艾鍗學院
2FA and OAuth2 in CloudStack - Andrija Panić - ShapeBlue by ShapeBlue
2FA and OAuth2 in CloudStack - Andrija Panić - ShapeBlue2FA and OAuth2 in CloudStack - Andrija Panić - ShapeBlue
2FA and OAuth2 in CloudStack - Andrija Panić - ShapeBlue
ShapeBlue50 views
Backup and Disaster Recovery with CloudStack and StorPool - Workshop - Venko ... by ShapeBlue
Backup and Disaster Recovery with CloudStack and StorPool - Workshop - Venko ...Backup and Disaster Recovery with CloudStack and StorPool - Workshop - Venko ...
Backup and Disaster Recovery with CloudStack and StorPool - Workshop - Venko ...
ShapeBlue77 views
Business Analyst Series 2023 - Week 4 Session 7 by DianaGray10
Business Analyst Series 2023 -  Week 4 Session 7Business Analyst Series 2023 -  Week 4 Session 7
Business Analyst Series 2023 - Week 4 Session 7
DianaGray1080 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
ShapeBlue96 views
Business Analyst Series 2023 - Week 3 Session 5 by DianaGray10
Business Analyst Series 2023 -  Week 3 Session 5Business Analyst Series 2023 -  Week 3 Session 5
Business Analyst Series 2023 - Week 3 Session 5
DianaGray10369 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
Updates on the LINSTOR Driver for CloudStack - Rene Peinthor - LINBIT by ShapeBlue
Updates on the LINSTOR Driver for CloudStack - Rene Peinthor - LINBITUpdates on the LINSTOR Driver for CloudStack - Rene Peinthor - LINBIT
Updates on the LINSTOR Driver for CloudStack - Rene Peinthor - LINBIT
ShapeBlue91 views
Don’t Make A Human Do A Robot’s Job! : 6 Reasons Why AI Will Save Us & Not De... by Moses Kemibaro
Don’t Make A Human Do A Robot’s Job! : 6 Reasons Why AI Will Save Us & Not De...Don’t Make A Human Do A Robot’s Job! : 6 Reasons Why AI Will Save Us & Not De...
Don’t Make A Human Do A Robot’s Job! : 6 Reasons Why AI Will Save Us & Not De...
Moses Kemibaro29 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
ShapeBlue96 views
How to Re-use Old Hardware with CloudStack. Saving Money and the Environment ... by ShapeBlue
How to Re-use Old Hardware with CloudStack. Saving Money and the Environment ...How to Re-use Old Hardware with CloudStack. Saving Money and the Environment ...
How to Re-use Old Hardware with CloudStack. Saving Money and the Environment ...
ShapeBlue65 views
Zero to Cloud Hero: Crafting a Private Cloud from Scratch with XCP-ng, Xen Or... by ShapeBlue
Zero to Cloud Hero: Crafting a Private Cloud from Scratch with XCP-ng, Xen Or...Zero to Cloud Hero: Crafting a Private Cloud from Scratch with XCP-ng, Xen Or...
Zero to Cloud Hero: Crafting a Private Cloud from Scratch with XCP-ng, Xen Or...
ShapeBlue88 views
Keynote Talk: Open Source is Not Dead - Charles Schulz - Vates by ShapeBlue
Keynote Talk: Open Source is Not Dead - Charles Schulz - VatesKeynote Talk: Open Source is Not Dead - Charles Schulz - Vates
Keynote Talk: Open Source is Not Dead - Charles Schulz - Vates
ShapeBlue119 views
KVM Security Groups Under the Hood - Wido den Hollander - Your.Online by ShapeBlue
KVM Security Groups Under the Hood - Wido den Hollander - Your.OnlineKVM Security Groups Under the Hood - Wido den Hollander - Your.Online
KVM Security Groups Under the Hood - Wido den Hollander - Your.Online
ShapeBlue102 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
Precisely56 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
ShapeBlue46 views

Building End to-End Web Apps Using TypeScript