SlideShare una empresa de Scribd logo
1 de 21
Descargar para leer sin conexión
THE	IMPROBABLE	STORY
OF:
FP	AND
ENTREPRENEURSHIP
WHO	ARE	WE?
XAVIER	TORDOIR
ANDY	PETRELLA
Find	your	ways
Pick	some	and	dig
Mémoire:	polishing
phase
STUDYING	=:=	FUTURE[OPTION[JOB]]
Grab	the	basis
JOB	=:=	(WORK	=>	OPTION[EXPERIENCE])
=>	OPTION[MONEY]
Working	will	probably	raise	your	experience
Based	on	this	experience,	you	might	get	some	money
Experience	might	not	be	enough
It	will	depend	on	the	kind	of	experience
IT'S	NOT	THAT	EASY
Proposal:
Job	=:=		(	(Work,	Explore,	Learn)	=>	Option[	Expertize	])	=>
																									Option[(Money,	()	=>	Future[Option[Job]]	)]
Still	some	work
*sight* But	never	stop	learning,	nor	exploring
Expertize	is	like	experience,	yet
rarer
Money,	the	unfortunate
obligation
Create	your	secret	sauce,	a	lazy	call	to	Job
WORKING	IN	IT
Everything	is
distributed
Clues	for	answers	are	in
data
Answer
questions
MORE	AND	MORE	DATA
Industrial
data	
energy	grid
production	lines
finance
transport
...
MORE	AND	MORE	DATA
People	data	
web	1.0	:	few	control	content
web	2.0	:	lots	of	end-users	manual
feed
web	x.y	:	lots	of	captors	per	user
MORE	AND	MORE	DATA
Why	do	we	collect	data?	
We	always	miss	some	at	some	point
something	of	value	is	encoded
collaborative	consiousness
MOBILE?	REALLY?
Providing	content	=	aggregate	distributed
sources
BUT	in	small	quantity	(network	is	the
bottleneck)
Yes	data	is	available	from
anywhere
IT	IS	A	COMMODITY
...even
development
Everything	done	is
distributed
Software
(SaaS):	user	management,	social
login
product	support
online	billing/payment
access	to	data	sources
Infrastructure	(IaaS):	storage,	servers...
A	TECH	STARTUP
Managing	distributed	resources	is
key!
Gathers	distributed	datasources
Calls	distributed	services
collects	raw	data
does	some	aggregation
Must	be	able	to	scale	resources	and
costs
FP?
Failure
management
Asynchronous
calls
FP	describe	the	result	you	want,	not	how	you
get	it
Threads,	cores,	servers,
datacenters
If	FP	gets	a	global	adoption	it	will	be	because	it	solves	issues
related	to	the	distributed	environment.
Complexity	of
distribution
FP	IN	THE	INDUSTRY?
Examples	of	popular	languages	with	OO	and
FP
javascript
ruby
Java	8
scala
AWAIT[_]
EVAL[EXPRESSION]
SCALA
val	getQueryParameter[T]	=	
		(request:Request)	=>
				(name:String)	=>
						request.query.parameters.get(name).as[T]
abstract	class	Request[T](val	body:Body[T])	
		extends	Query	with	Header	{
		def	parser:BodyParser[T]
		val	content:Option[T]	=	parser(body)
		def	send(to:Service)	=	???
}
case	class	HttpRequest[T](
				method:Method,	
				body:Body)(implicit	parser:BodyParser[T])	
		extends	Request(body)	{
		//	...		
}
PLAY!	FRAMEWORK	2
Async	HTTP
Event	driven/Concurrency	using	Actor
Non-blocking	IO	(reactive:	Iteratee/
CPS)
Stateless
object	Dummy	extends	Controller	{
		//	return	async'ly	the	#	of	users	w/	name	start'g	w/	q"char"
		def	countAs	=	Action.async	{	request	=>
				val	char	=	request.queryString("char")
				val	all:Future[Seq[User]]	=	users.all	//	or	WS.url
				Ok(all.map(_.count(_.name	startsWith	"a")))
		}
}
AKKA
Message	passing
style
Messages	are
immutable
Actors		are	mutable
(stateful) Thread	safety	by
confinement
Location
transparency
class	UserRepo	extends	Actor	{
		var	users	=	Set.empty
		def	receive	=	{
				case	Add(user:User)	=>	
						users	=	users	+	user
				case	All	=>	
						sender	!	users
				case	Get(id:String)	=>	
						user	=	users.find(_.id	==	id)
						sender	!	user
		}
}
object	AkkaApp	extends	App	{
		//...
		val	repo	=	system.actorOf(Props[UserRepo])
		//	add
		repo	!	Add(User(1L,	"")
		//get
		val	user	=	repo	?	Get(1L)
}
SPARK
Tends	to	resolve	Big	Data	solution
flawsProvides	an	abstraction	on	distributed	data
Using	an	extended	functional	style	(not	only
MR)Represents	a	distributed	computation	as	a
GraphIn-Memory!
val	sc	=	new	SparkContext(/*...*/)
lines	=	sc.textFile("hdfs://...")
errors	=	lines.filter(_.startsWith("ERROR"))
errors.filter(_.contains("HDFS"))
						.map(_.split('t')(3))
						.collect()

Más contenido relacionado

Similar a Fp and entrepreneurship

Data Science - Reality Check
Data Science - Reality CheckData Science - Reality Check
Data Science - Reality CheckSyahrul Hamdani
 
How 2 Pitch a VC (New Delhi, Dec 2011)
How 2 Pitch a VC (New Delhi, Dec 2011)How 2 Pitch a VC (New Delhi, Dec 2011)
How 2 Pitch a VC (New Delhi, Dec 2011)Dave McClure
 
10 Tips on How to Pitch a VC (FOWA, London)
10 Tips on How to Pitch a VC (FOWA, London)10 Tips on How to Pitch a VC (FOWA, London)
10 Tips on How to Pitch a VC (FOWA, London)Dave McClure
 
Odesk Webinar - Building Your Workteam
Odesk Webinar - Building Your WorkteamOdesk Webinar - Building Your Workteam
Odesk Webinar - Building Your WorkteamAmit Bakshi
 
1 dewsoft
1 dewsoft1 dewsoft
1 dewsoftdewsoft
 
Csuf startup incubator talk on the future of business with andrew carroll
Csuf startup incubator talk on the future of business with andrew carrollCsuf startup incubator talk on the future of business with andrew carroll
Csuf startup incubator talk on the future of business with andrew carrollTravis Lindsay
 
Entrepreneur and corporate job (2)
Entrepreneur and corporate job (2)Entrepreneur and corporate job (2)
Entrepreneur and corporate job (2)Sid Swami
 
Creating Business Processes Like A Boss
Creating Business Processes Like A BossCreating Business Processes Like A Boss
Creating Business Processes Like A BossWes Melton
 
Sourcing Tools & Hacks For Finding Top Talent
Sourcing Tools & Hacks For Finding Top TalentSourcing Tools & Hacks For Finding Top Talent
Sourcing Tools & Hacks For Finding Top TalentRecruitingDaily.com LLC
 
How to Pitch a VC, aka Startup Viagra (Oct 2009)
How to Pitch a VC, aka Startup Viagra (Oct 2009)How to Pitch a VC, aka Startup Viagra (Oct 2009)
How to Pitch a VC, aka Startup Viagra (Oct 2009)Dave McClure
 
Protecting the Tech Career You've Built
Protecting the Tech Career You've BuiltProtecting the Tech Career You've Built
Protecting the Tech Career You've BuiltStephen Van Vreede
 
Lightning talk on the future of analytics - CloudCamp London, 2016
Lightning talk on the future of analytics - CloudCamp London, 2016 Lightning talk on the future of analytics - CloudCamp London, 2016
Lightning talk on the future of analytics - CloudCamp London, 2016 Jon Hawes
 
Going Independent - making it as a freelance web professional
Going Independent - making it as a freelance web professionalGoing Independent - making it as a freelance web professional
Going Independent - making it as a freelance web professionalMichael Kimsal
 
Test driven, why not?
Test driven, why not?Test driven, why not?
Test driven, why not?irenella89
 
Web Apps A To Z Rehash
Web Apps A To Z RehashWeb Apps A To Z Rehash
Web Apps A To Z RehashDavid Bisset
 
Warriors Presentation
Warriors PresentationWarriors Presentation
Warriors PresentationNassim Diab
 
How To Become A Master Of Time, 
Skill & Money In Running A WordPress Busines...
How To Become A Master Of Time, 
Skill & Money In Running A WordPress Busines...How To Become A Master Of Time, 
Skill & Money In Running A WordPress Busines...
How To Become A Master Of Time, 
Skill & Money In Running A WordPress Busines...Jamesbanks.co
 

Similar a Fp and entrepreneurship (20)

Data Science - Reality Check
Data Science - Reality CheckData Science - Reality Check
Data Science - Reality Check
 
How 2 Pitch a VC (New Delhi, Dec 2011)
How 2 Pitch a VC (New Delhi, Dec 2011)How 2 Pitch a VC (New Delhi, Dec 2011)
How 2 Pitch a VC (New Delhi, Dec 2011)
 
Pitch Perfect
Pitch PerfectPitch Perfect
Pitch Perfect
 
10 Tips on How to Pitch a VC (FOWA, London)
10 Tips on How to Pitch a VC (FOWA, London)10 Tips on How to Pitch a VC (FOWA, London)
10 Tips on How to Pitch a VC (FOWA, London)
 
SVC
SVCSVC
SVC
 
Odesk Webinar - Building Your Workteam
Odesk Webinar - Building Your WorkteamOdesk Webinar - Building Your Workteam
Odesk Webinar - Building Your Workteam
 
Exigent 2010 NJ MGMA Presentation
Exigent 2010 NJ MGMA PresentationExigent 2010 NJ MGMA Presentation
Exigent 2010 NJ MGMA Presentation
 
1 dewsoft
1 dewsoft1 dewsoft
1 dewsoft
 
Csuf startup incubator talk on the future of business with andrew carroll
Csuf startup incubator talk on the future of business with andrew carrollCsuf startup incubator talk on the future of business with andrew carroll
Csuf startup incubator talk on the future of business with andrew carroll
 
Entrepreneur and corporate job (2)
Entrepreneur and corporate job (2)Entrepreneur and corporate job (2)
Entrepreneur and corporate job (2)
 
Creating Business Processes Like A Boss
Creating Business Processes Like A BossCreating Business Processes Like A Boss
Creating Business Processes Like A Boss
 
Sourcing Tools & Hacks For Finding Top Talent
Sourcing Tools & Hacks For Finding Top TalentSourcing Tools & Hacks For Finding Top Talent
Sourcing Tools & Hacks For Finding Top Talent
 
How to Pitch a VC, aka Startup Viagra (Oct 2009)
How to Pitch a VC, aka Startup Viagra (Oct 2009)How to Pitch a VC, aka Startup Viagra (Oct 2009)
How to Pitch a VC, aka Startup Viagra (Oct 2009)
 
Protecting the Tech Career You've Built
Protecting the Tech Career You've BuiltProtecting the Tech Career You've Built
Protecting the Tech Career You've Built
 
Lightning talk on the future of analytics - CloudCamp London, 2016
Lightning talk on the future of analytics - CloudCamp London, 2016 Lightning talk on the future of analytics - CloudCamp London, 2016
Lightning talk on the future of analytics - CloudCamp London, 2016
 
Going Independent - making it as a freelance web professional
Going Independent - making it as a freelance web professionalGoing Independent - making it as a freelance web professional
Going Independent - making it as a freelance web professional
 
Test driven, why not?
Test driven, why not?Test driven, why not?
Test driven, why not?
 
Web Apps A To Z Rehash
Web Apps A To Z RehashWeb Apps A To Z Rehash
Web Apps A To Z Rehash
 
Warriors Presentation
Warriors PresentationWarriors Presentation
Warriors Presentation
 
How To Become A Master Of Time, 
Skill & Money In Running A WordPress Busines...
How To Become A Master Of Time, 
Skill & Money In Running A WordPress Busines...How To Become A Master Of Time, 
Skill & Money In Running A WordPress Busines...
How To Become A Master Of Time, 
Skill & Money In Running A WordPress Busines...
 

Más de Andy Petrella

Data Observability Best Pracices
Data Observability Best PracicesData Observability Best Pracices
Data Observability Best PracicesAndy Petrella
 
How to Build a Global Data Mapping
How to Build a Global Data MappingHow to Build a Global Data Mapping
How to Build a Global Data MappingAndy Petrella
 
Interactive notebooks
Interactive notebooksInteractive notebooks
Interactive notebooksAndy Petrella
 
Governance compliance
Governance   complianceGovernance   compliance
Governance complianceAndy Petrella
 
Data science governance and GDPR
Data science governance and GDPRData science governance and GDPR
Data science governance and GDPRAndy Petrella
 
Data science governance : what and how
Data science governance : what and howData science governance : what and how
Data science governance : what and howAndy Petrella
 
Scala: the unpredicted lingua franca for data science
Scala: the unpredicted lingua franca  for data scienceScala: the unpredicted lingua franca  for data science
Scala: the unpredicted lingua franca for data scienceAndy Petrella
 
Agile data science with scala
Agile data science with scalaAgile data science with scala
Agile data science with scalaAndy Petrella
 
Agile data science: Distributed, Interactive, Integrated, Semantic, Micro Ser...
Agile data science: Distributed, Interactive, Integrated, Semantic, Micro Ser...Agile data science: Distributed, Interactive, Integrated, Semantic, Micro Ser...
Agile data science: Distributed, Interactive, Integrated, Semantic, Micro Ser...Andy Petrella
 
What is a distributed data science pipeline. how with apache spark and friends.
What is a distributed data science pipeline. how with apache spark and friends.What is a distributed data science pipeline. how with apache spark and friends.
What is a distributed data science pipeline. how with apache spark and friends.Andy Petrella
 
Towards a rebirth of data science (by Data Fellas)
Towards a rebirth of data science (by Data Fellas)Towards a rebirth of data science (by Data Fellas)
Towards a rebirth of data science (by Data Fellas)Andy Petrella
 
Distributed machine learning 101 using apache spark from a browser devoxx.b...
Distributed machine learning 101 using apache spark from a browser   devoxx.b...Distributed machine learning 101 using apache spark from a browser   devoxx.b...
Distributed machine learning 101 using apache spark from a browser devoxx.b...Andy Petrella
 
Spark Summit Europe: Share and analyse genomic data at scale
Spark Summit Europe: Share and analyse genomic data at scaleSpark Summit Europe: Share and analyse genomic data at scale
Spark Summit Europe: Share and analyse genomic data at scaleAndy Petrella
 
Leveraging mesos as the ultimate distributed data science platform
Leveraging mesos as the ultimate distributed data science platformLeveraging mesos as the ultimate distributed data science platform
Leveraging mesos as the ultimate distributed data science platformAndy Petrella
 
Data Enthusiasts London: Scalable and Interoperable data services. Applied to...
Data Enthusiasts London: Scalable and Interoperable data services. Applied to...Data Enthusiasts London: Scalable and Interoperable data services. Applied to...
Data Enthusiasts London: Scalable and Interoperable data services. Applied to...Andy Petrella
 
Spark meetup london share and analyse genomic data at scale with spark, adam...
Spark meetup london  share and analyse genomic data at scale with spark, adam...Spark meetup london  share and analyse genomic data at scale with spark, adam...
Spark meetup london share and analyse genomic data at scale with spark, adam...Andy Petrella
 
Distributed machine learning 101 using apache spark from the browser
Distributed machine learning 101 using apache spark from the browserDistributed machine learning 101 using apache spark from the browser
Distributed machine learning 101 using apache spark from the browserAndy Petrella
 
Liège créative: Open Science
Liège créative: Open ScienceLiège créative: Open Science
Liège créative: Open ScienceAndy Petrella
 
BioBankCloud: Machine Learning on Genomics + GA4GH @ Med at Scale
BioBankCloud: Machine Learning on Genomics + GA4GH  @ Med at ScaleBioBankCloud: Machine Learning on Genomics + GA4GH  @ Med at Scale
BioBankCloud: Machine Learning on Genomics + GA4GH @ Med at ScaleAndy Petrella
 
What is Distributed Computing, Why we use Apache Spark
What is Distributed Computing, Why we use Apache SparkWhat is Distributed Computing, Why we use Apache Spark
What is Distributed Computing, Why we use Apache SparkAndy Petrella
 

Más de Andy Petrella (20)

Data Observability Best Pracices
Data Observability Best PracicesData Observability Best Pracices
Data Observability Best Pracices
 
How to Build a Global Data Mapping
How to Build a Global Data MappingHow to Build a Global Data Mapping
How to Build a Global Data Mapping
 
Interactive notebooks
Interactive notebooksInteractive notebooks
Interactive notebooks
 
Governance compliance
Governance   complianceGovernance   compliance
Governance compliance
 
Data science governance and GDPR
Data science governance and GDPRData science governance and GDPR
Data science governance and GDPR
 
Data science governance : what and how
Data science governance : what and howData science governance : what and how
Data science governance : what and how
 
Scala: the unpredicted lingua franca for data science
Scala: the unpredicted lingua franca  for data scienceScala: the unpredicted lingua franca  for data science
Scala: the unpredicted lingua franca for data science
 
Agile data science with scala
Agile data science with scalaAgile data science with scala
Agile data science with scala
 
Agile data science: Distributed, Interactive, Integrated, Semantic, Micro Ser...
Agile data science: Distributed, Interactive, Integrated, Semantic, Micro Ser...Agile data science: Distributed, Interactive, Integrated, Semantic, Micro Ser...
Agile data science: Distributed, Interactive, Integrated, Semantic, Micro Ser...
 
What is a distributed data science pipeline. how with apache spark and friends.
What is a distributed data science pipeline. how with apache spark and friends.What is a distributed data science pipeline. how with apache spark and friends.
What is a distributed data science pipeline. how with apache spark and friends.
 
Towards a rebirth of data science (by Data Fellas)
Towards a rebirth of data science (by Data Fellas)Towards a rebirth of data science (by Data Fellas)
Towards a rebirth of data science (by Data Fellas)
 
Distributed machine learning 101 using apache spark from a browser devoxx.b...
Distributed machine learning 101 using apache spark from a browser   devoxx.b...Distributed machine learning 101 using apache spark from a browser   devoxx.b...
Distributed machine learning 101 using apache spark from a browser devoxx.b...
 
Spark Summit Europe: Share and analyse genomic data at scale
Spark Summit Europe: Share and analyse genomic data at scaleSpark Summit Europe: Share and analyse genomic data at scale
Spark Summit Europe: Share and analyse genomic data at scale
 
Leveraging mesos as the ultimate distributed data science platform
Leveraging mesos as the ultimate distributed data science platformLeveraging mesos as the ultimate distributed data science platform
Leveraging mesos as the ultimate distributed data science platform
 
Data Enthusiasts London: Scalable and Interoperable data services. Applied to...
Data Enthusiasts London: Scalable and Interoperable data services. Applied to...Data Enthusiasts London: Scalable and Interoperable data services. Applied to...
Data Enthusiasts London: Scalable and Interoperable data services. Applied to...
 
Spark meetup london share and analyse genomic data at scale with spark, adam...
Spark meetup london  share and analyse genomic data at scale with spark, adam...Spark meetup london  share and analyse genomic data at scale with spark, adam...
Spark meetup london share and analyse genomic data at scale with spark, adam...
 
Distributed machine learning 101 using apache spark from the browser
Distributed machine learning 101 using apache spark from the browserDistributed machine learning 101 using apache spark from the browser
Distributed machine learning 101 using apache spark from the browser
 
Liège créative: Open Science
Liège créative: Open ScienceLiège créative: Open Science
Liège créative: Open Science
 
BioBankCloud: Machine Learning on Genomics + GA4GH @ Med at Scale
BioBankCloud: Machine Learning on Genomics + GA4GH  @ Med at ScaleBioBankCloud: Machine Learning on Genomics + GA4GH  @ Med at Scale
BioBankCloud: Machine Learning on Genomics + GA4GH @ Med at Scale
 
What is Distributed Computing, Why we use Apache Spark
What is Distributed Computing, Why we use Apache SparkWhat is Distributed Computing, Why we use Apache Spark
What is Distributed Computing, Why we use Apache Spark
 

Último

Apidays New York 2024 - The value of a flexible API Management solution for O...
Apidays New York 2024 - The value of a flexible API Management solution for O...Apidays New York 2024 - The value of a flexible API Management solution for O...
Apidays New York 2024 - The value of a flexible API Management solution for O...apidays
 
Polkadot JAM Slides - Token2049 - By Dr. Gavin Wood
Polkadot JAM Slides - Token2049 - By Dr. Gavin WoodPolkadot JAM Slides - Token2049 - By Dr. Gavin Wood
Polkadot JAM Slides - Token2049 - By Dr. Gavin WoodJuan lago vázquez
 
MS Copilot expands with MS Graph connectors
MS Copilot expands with MS Graph connectorsMS Copilot expands with MS Graph connectors
MS Copilot expands with MS Graph connectorsNanddeep Nachan
 
"I see eyes in my soup": How Delivery Hero implemented the safety system for ...
"I see eyes in my soup": How Delivery Hero implemented the safety system for ..."I see eyes in my soup": How Delivery Hero implemented the safety system for ...
"I see eyes in my soup": How Delivery Hero implemented the safety system for ...Zilliz
 
Repurposing LNG terminals for Hydrogen Ammonia: Feasibility and Cost Saving
Repurposing LNG terminals for Hydrogen Ammonia: Feasibility and Cost SavingRepurposing LNG terminals for Hydrogen Ammonia: Feasibility and Cost Saving
Repurposing LNG terminals for Hydrogen Ammonia: Feasibility and Cost SavingEdi Saputra
 
Apidays New York 2024 - Passkeys: Developing APIs to enable passwordless auth...
Apidays New York 2024 - Passkeys: Developing APIs to enable passwordless auth...Apidays New York 2024 - Passkeys: Developing APIs to enable passwordless auth...
Apidays New York 2024 - Passkeys: Developing APIs to enable passwordless auth...apidays
 
FWD Group - Insurer Innovation Award 2024
FWD Group - Insurer Innovation Award 2024FWD Group - Insurer Innovation Award 2024
FWD Group - Insurer Innovation Award 2024The Digital Insurer
 
Introduction to Multilingual Retrieval Augmented Generation (RAG)
Introduction to Multilingual Retrieval Augmented Generation (RAG)Introduction to Multilingual Retrieval Augmented Generation (RAG)
Introduction to Multilingual Retrieval Augmented Generation (RAG)Zilliz
 
Elevate Developer Efficiency & build GenAI Application with Amazon Q​
Elevate Developer Efficiency & build GenAI Application with Amazon Q​Elevate Developer Efficiency & build GenAI Application with Amazon Q​
Elevate Developer Efficiency & build GenAI Application with Amazon Q​Bhuvaneswari Subramani
 
Cloud Frontiers: A Deep Dive into Serverless Spatial Data and FME
Cloud Frontiers:  A Deep Dive into Serverless Spatial Data and FMECloud Frontiers:  A Deep Dive into Serverless Spatial Data and FME
Cloud Frontiers: A Deep Dive into Serverless Spatial Data and FMESafe Software
 
Cloud Frontiers: A Deep Dive into Serverless Spatial Data and FME
Cloud Frontiers:  A Deep Dive into Serverless Spatial Data and FMECloud Frontiers:  A Deep Dive into Serverless Spatial Data and FME
Cloud Frontiers: A Deep Dive into Serverless Spatial Data and FMESafe Software
 
[BuildWithAI] Introduction to Gemini.pdf
[BuildWithAI] Introduction to Gemini.pdf[BuildWithAI] Introduction to Gemini.pdf
[BuildWithAI] Introduction to Gemini.pdfSandro Moreira
 
Connector Corner: Accelerate revenue generation using UiPath API-centric busi...
Connector Corner: Accelerate revenue generation using UiPath API-centric busi...Connector Corner: Accelerate revenue generation using UiPath API-centric busi...
Connector Corner: Accelerate revenue generation using UiPath API-centric busi...DianaGray10
 
MINDCTI Revenue Release Quarter One 2024
MINDCTI Revenue Release Quarter One 2024MINDCTI Revenue Release Quarter One 2024
MINDCTI Revenue Release Quarter One 2024MIND CTI
 
Architecting Cloud Native Applications
Architecting Cloud Native ApplicationsArchitecting Cloud Native Applications
Architecting Cloud Native ApplicationsWSO2
 
How to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected WorkerHow to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected WorkerThousandEyes
 
Apidays New York 2024 - APIs in 2030: The Risk of Technological Sleepwalk by ...
Apidays New York 2024 - APIs in 2030: The Risk of Technological Sleepwalk by ...Apidays New York 2024 - APIs in 2030: The Risk of Technological Sleepwalk by ...
Apidays New York 2024 - APIs in 2030: The Risk of Technological Sleepwalk by ...apidays
 
WSO2's API Vision: Unifying Control, Empowering Developers
WSO2's API Vision: Unifying Control, Empowering DevelopersWSO2's API Vision: Unifying Control, Empowering Developers
WSO2's API Vision: Unifying Control, Empowering DevelopersWSO2
 
Biography Of Angeliki Cooney | Senior Vice President Life Sciences | Albany, ...
Biography Of Angeliki Cooney | Senior Vice President Life Sciences | Albany, ...Biography Of Angeliki Cooney | Senior Vice President Life Sciences | Albany, ...
Biography Of Angeliki Cooney | Senior Vice President Life Sciences | Albany, ...Angeliki Cooney
 

Último (20)

Apidays New York 2024 - The value of a flexible API Management solution for O...
Apidays New York 2024 - The value of a flexible API Management solution for O...Apidays New York 2024 - The value of a flexible API Management solution for O...
Apidays New York 2024 - The value of a flexible API Management solution for O...
 
Polkadot JAM Slides - Token2049 - By Dr. Gavin Wood
Polkadot JAM Slides - Token2049 - By Dr. Gavin WoodPolkadot JAM Slides - Token2049 - By Dr. Gavin Wood
Polkadot JAM Slides - Token2049 - By Dr. Gavin Wood
 
MS Copilot expands with MS Graph connectors
MS Copilot expands with MS Graph connectorsMS Copilot expands with MS Graph connectors
MS Copilot expands with MS Graph connectors
 
"I see eyes in my soup": How Delivery Hero implemented the safety system for ...
"I see eyes in my soup": How Delivery Hero implemented the safety system for ..."I see eyes in my soup": How Delivery Hero implemented the safety system for ...
"I see eyes in my soup": How Delivery Hero implemented the safety system for ...
 
Repurposing LNG terminals for Hydrogen Ammonia: Feasibility and Cost Saving
Repurposing LNG terminals for Hydrogen Ammonia: Feasibility and Cost SavingRepurposing LNG terminals for Hydrogen Ammonia: Feasibility and Cost Saving
Repurposing LNG terminals for Hydrogen Ammonia: Feasibility and Cost Saving
 
Apidays New York 2024 - Passkeys: Developing APIs to enable passwordless auth...
Apidays New York 2024 - Passkeys: Developing APIs to enable passwordless auth...Apidays New York 2024 - Passkeys: Developing APIs to enable passwordless auth...
Apidays New York 2024 - Passkeys: Developing APIs to enable passwordless auth...
 
FWD Group - Insurer Innovation Award 2024
FWD Group - Insurer Innovation Award 2024FWD Group - Insurer Innovation Award 2024
FWD Group - Insurer Innovation Award 2024
 
Introduction to Multilingual Retrieval Augmented Generation (RAG)
Introduction to Multilingual Retrieval Augmented Generation (RAG)Introduction to Multilingual Retrieval Augmented Generation (RAG)
Introduction to Multilingual Retrieval Augmented Generation (RAG)
 
Elevate Developer Efficiency & build GenAI Application with Amazon Q​
Elevate Developer Efficiency & build GenAI Application with Amazon Q​Elevate Developer Efficiency & build GenAI Application with Amazon Q​
Elevate Developer Efficiency & build GenAI Application with Amazon Q​
 
Cloud Frontiers: A Deep Dive into Serverless Spatial Data and FME
Cloud Frontiers:  A Deep Dive into Serverless Spatial Data and FMECloud Frontiers:  A Deep Dive into Serverless Spatial Data and FME
Cloud Frontiers: A Deep Dive into Serverless Spatial Data and FME
 
Cloud Frontiers: A Deep Dive into Serverless Spatial Data and FME
Cloud Frontiers:  A Deep Dive into Serverless Spatial Data and FMECloud Frontiers:  A Deep Dive into Serverless Spatial Data and FME
Cloud Frontiers: A Deep Dive into Serverless Spatial Data and FME
 
[BuildWithAI] Introduction to Gemini.pdf
[BuildWithAI] Introduction to Gemini.pdf[BuildWithAI] Introduction to Gemini.pdf
[BuildWithAI] Introduction to Gemini.pdf
 
Connector Corner: Accelerate revenue generation using UiPath API-centric busi...
Connector Corner: Accelerate revenue generation using UiPath API-centric busi...Connector Corner: Accelerate revenue generation using UiPath API-centric busi...
Connector Corner: Accelerate revenue generation using UiPath API-centric busi...
 
MINDCTI Revenue Release Quarter One 2024
MINDCTI Revenue Release Quarter One 2024MINDCTI Revenue Release Quarter One 2024
MINDCTI Revenue Release Quarter One 2024
 
Architecting Cloud Native Applications
Architecting Cloud Native ApplicationsArchitecting Cloud Native Applications
Architecting Cloud Native Applications
 
How to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected WorkerHow to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected Worker
 
Apidays New York 2024 - APIs in 2030: The Risk of Technological Sleepwalk by ...
Apidays New York 2024 - APIs in 2030: The Risk of Technological Sleepwalk by ...Apidays New York 2024 - APIs in 2030: The Risk of Technological Sleepwalk by ...
Apidays New York 2024 - APIs in 2030: The Risk of Technological Sleepwalk by ...
 
WSO2's API Vision: Unifying Control, Empowering Developers
WSO2's API Vision: Unifying Control, Empowering DevelopersWSO2's API Vision: Unifying Control, Empowering Developers
WSO2's API Vision: Unifying Control, Empowering Developers
 
Biography Of Angeliki Cooney | Senior Vice President Life Sciences | Albany, ...
Biography Of Angeliki Cooney | Senior Vice President Life Sciences | Albany, ...Biography Of Angeliki Cooney | Senior Vice President Life Sciences | Albany, ...
Biography Of Angeliki Cooney | Senior Vice President Life Sciences | Albany, ...
 
+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...
+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...
+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...
 

Fp and entrepreneurship