SlideShare ist ein Scribd-Unternehmen logo
1 von 61
Downloaden Sie, um offline zu lesen
EvoSpace-i: A framework for
Interactive Evolutionary
Algorithms
Mario García-Valdez,
Leonardo Trujillo
José C. Romero,
Alejandra Mancilla
Inst. Tec. de Tijuana, México
Juan-J. Merelo
University of Granada, Spain
EvoSoft @ GECCO’13, Amsterdam, The Netherlands.
Francisco Fernández-de-Vega
Universidad de Extremadura, Spain
1
Saturday, July 6, 13
How artists use EAs?
What can technology offer us?
2
Why EvoSpace
Interactive?
Saturday, July 6, 13
3
Gaudí. Casa Batlló.
Diego Rivera. El hombre controlador del universo
Saturday, July 6, 13
4
Endless	
  Forms:	
  Clune	
  and	
  Lipson,	
  2011
Langdon,	
  2004
Picbreeder:
2011
EvoEco:
Kowaliw	
  et	
  al.	
  2011
Distributed IEAs & the Cloud
Saturday, July 6, 13
5
Few cloud based EAs
SOFEA (Merelo et al.)
FlexGP (Sherry et al.)
EAs using Map/Reduce (Fazenda et al.)
EvoSpace (Garcia et al)
No specific Collaborative-IEA (C-IEA)
Big Companies offering Cloud services
Amazon EC2, Google Apps …
SaaS, PaaS, IaaS
Currently...
Saturday, July 6, 13
Local Goals
Developing computational framework
EvoSpace-Interactive: A cloud based C-
IEA tool.
Distributed
Collaborative
Interactive
Flexible
EA tool for Artists
6
Saturday, July 6, 13
EvoSpace
1.	
  The	
  EvoSpace	
  container	
  that	
  stores	
  the	
  
evolving	
  population.
2.	
  Remote	
  clients	
  called	
  EvoWorkers,	
  which	
  
execute	
  the	
  actual	
  evolutionary	
  process.
	
  EvoSpace	
  consists	
  of	
  two	
  main	
  components	
  :
7
Saturday, July 6, 13
evospace
evospace
read(n)	
  
get_sample(n)
re_insert(i)	
  
insert(A)
put_back(A,i)
remove(A)	
  
8
Saturday, July 6, 13
evospace.get_sample(n)
9
Saturday, July 6, 13
evoWorker 2
evospace
evoWorker 1
10
Saturday, July 6, 13
evoWorker 2
evospace
get_Sample(5)
evoWorker 1
10
Saturday, July 6, 13
evoWorker 2
evospace
evoWorker 1
10
Saturday, July 6, 13
evoWorker 2
evospace
evoWorker 1
phantom
10
Saturday, July 6, 13
evoWorker 2
evospace
evoWorker 1
10
Saturday, July 6, 13
evoWorker 2
evospace
evoWorker 1
get_Sample(3)
10
Saturday, July 6, 13
evoWorker 2
evospace
evoWorker 1
get_Sample(3)
10
Saturday, July 6, 13
evoWorker 2
evospace
evoWorker 1
10
Saturday, July 6, 13
worker1.evolve(n)
11
Saturday, July 6, 13
evospace
evoWorker 2
evoWorker 1
12
Saturday, July 6, 13
evospace
evolve(50)
evoWorker 2
evoWorker 1
12
Saturday, July 6, 13
evospace
evoWorker 2
evoWorker 1
12
Saturday, July 6, 13
evospace.put_back(samplei)
13
Saturday, July 6, 13
evospace
evoWorker 2
evoWorker 1
14
Saturday, July 6, 13
evospace
put_back(s1)
evoWorker 2
evoWorker 1
14
Saturday, July 6, 13
evospace
evoWorker 2
evoWorker 1
14
Saturday, July 6, 13
evospace
evoWorker 2
evoWorker 1
14
Saturday, July 6, 13
evospace
phantoms
from s1
are deleted
evoWorker 2
evoWorker 1
14
Saturday, July 6, 13
evospace
phantoms
from s1
are deleted
evoWorker 2
evoWorker 1
14
Saturday, July 6, 13
evospace
evoWorker 2
evoWorker 1
14
Saturday, July 6, 13
evospace.re_insert(samplei)
15
Saturday, July 6, 13
evospace
evoWorker 2
evoWorker 1
16
Saturday, July 6, 13
evospace
evoWorker 2
evoWorker 1
16
Saturday, July 6, 13
evospace
re_insert( )
evoWorker 2
evoWorker 1
16
Saturday, July 6, 13
evospace
re_insert( )
evoWorker 2
evoWorker 1
16
Saturday, July 6, 13
evospace
evoWorker 2
evoWorker 1
16
Saturday, July 6, 13
evospace.read_sample(n)
17
Saturday, July 6, 13
evospace
evoWorker 2
evoWorker 1
18
Saturday, July 6, 13
evospace
read_Sample(5)
evoWorker 2
evoWorker 1
18
Saturday, July 6, 13
evospace
evoWorker 2
evoWorker 1
18
Saturday, July 6, 13
evospace
read_Sample(3)
evoWorker 2
evoWorker 1
18
Saturday, July 6, 13
evospace
read_Sample(3)
evoWorker 2
evoWorker 1
18
Saturday, July 6, 13
EvoSpace
19
Saturday, July 6, 13
Implementation
Redis
evospace.py
cherrypy
javascript Python c# Objective-C Others
json-rpc
application-server
redis-server
process
python
20
Saturday, July 6, 13
Implementation
Redis
evospace.py
cherrypy
javascript Python c# Objective-C Others
json-rpc
application-server
redis-server
process
python
core
20
Saturday, July 6, 13
Implementation
Redis
evospace.py
cherrypy
javascript Python c# Objective-C Others
json-rpc
application-server
redis-server
process
python
20
Saturday, July 6, 13
Advanced	
  key-­‐value	
  store	
  
Keys	
  can	
  contain	
  strings,	
  hashes,lists,	
  sets,	
  
sorted	
  sets.
In-­‐memory	
  but	
  persistent	
  on	
  disk	
  
database.
Single	
  threaded.
Master-­‐slave	
  replication.
21
Saturday, July 6, 13
Efficient	
  implementation	
  of	
  Set	
  operations	
  
needed	
  for	
  evospace:
Add,	
  remove,	
  and	
  test	
  for	
  existence	
  of	
  
members	
  in	
  O(1).
Returning	
  and	
  removing	
  a	
  random	
  member	
  
from	
  a	
  set	
  is	
  also	
  O(1).	
  
22
Saturday, July 6, 13
Each	
  individual	
  is	
  a	
  unique	
  key	
  and	
  a	
  JSON	
  
object	
  string.
ind:123	
  -­‐>	
  {	
  chromosome:[0,1,0,1],	
  fitness:0.2}
A	
  Population	
  is	
  a	
  set	
  of	
  keys.
pop:1-­‐>	
  {ind:123,	
  ind:124,	
  ind:13,	
  ind:132}
Samples	
  are	
  also	
  sets.
Re-­‐Insertion	
  is	
  a	
  union	
  of	
  sets.
23
Saturday, July 6, 13
EvoSpace Interactive Evolution
Remote
Clients
EvoWorker
EvoSpace Re-Insertion
Manager
Server
Get Sample1
Feed to
Processing Script
2User evaluates
Representations
3
Put Sample
Back
4
After n evaluations
Evolve a sample
5
24
Saturday, July 6, 13
EvoSpace Interactive
25
Saturday, July 6, 13
Client Side
26
ind:21	
  -­‐>	
  {	
  chromosome:[0,1,0,1],	
  fitness:3.0,	
  ...	
  }
ind:42	
  -­‐>	
  {	
  chromosome:[1,1,0,0],	
  fitness:3.0,	
  ...	
  }
parameters
JQuery
EvoSpace
getSample(2)
JQuery
rendersprocessingjs
individual:110
individual:3889individual:4006
individual:948individual:1882individual:3743
individual:110
individual:4042
individual:3889individual:4006
individual:4123individual:1383
individual:948individual:1882
ind:21 ind:42
html	
  canvas html	
  canvas
Saturday, July 6, 13
Client Side II
27
JQuery
User	
  Likes	
  
idual:3743
vidual:110
individual:4017individual:4123individual:1383
individual:948 individual:1204individual:1882dual:3743
dual:110
individual:4017individual:4123individual:1383
individual:948 individual:1204individual:1882
ind:21 ind:42
html	
  canvas html	
  canvas
EvoSpace
putback(sample)
Saturday, July 6, 13
28
Why Processing?
http://processingjs.nihongoresources.com/test/PjsGameEngine/docs/tutorial/mario.html
Saturday, July 6, 13
EvoSpace Interactive
29
Saturday, July 6, 13
Why Django?
30
Python Web Development Framework
In House experience
Provides:
OR-Mapper
Authentication
Elegant URL design
Template System
MVC Patterns
http://www.djangoproject.com/
Saturday, July 6, 13
Django
31
Framework is a Django Application
Authentication with Facebook credentials
Collections
Also implements the EvoSpace population
store
Interactive data stored in PostgreSQL
Saturday, July 6, 13
32
Saturday, July 6, 13
33
Saturday, July 6, 13
Fireworks IEA
34
Saturday, July 6, 13
Conclusions
35
EvoSpace-Interactive:
A new cloud based C-IEA tool
Linked to Social Networks
Offering Processing to Artists
Can evolve artistic animations
Free Software
Saturday, July 6, 13
Thank You
Please	
  visit	
  www.evospace.org	
  	
  for	
  more	
  
information.	
  
All	
  code,	
  data,	
  matplotlib	
  scripts,	
  latex	
  files	
  with	
  
authors	
  original	
  comments	
  and	
  edits	
  (in	
  
spanish)	
  available	
  in:	
  
https://github.com/mariosky/EvoSoft2013
https://github.com/mariosky/evospacei
36
Saturday, July 6, 13

Weitere ähnliche Inhalte

Andere mochten auch

Presentacion de mapa conceptual de web quest elabora por luisana gonzález
Presentacion de mapa conceptual de web quest elabora por luisana gonzálezPresentacion de mapa conceptual de web quest elabora por luisana gonzález
Presentacion de mapa conceptual de web quest elabora por luisana gonzálezluismarlmg
 
Computador (informatica) 2 2
Computador (informatica) 2 2Computador (informatica) 2 2
Computador (informatica) 2 2luismarlmg
 
Is there a free lunch for cloud-based evolutionary algorithms?
Is there a free lunch for cloud-based evolutionary algorithms?Is there a free lunch for cloud-based evolutionary algorithms?
Is there a free lunch for cloud-based evolutionary algorithms?Mario Garcia Valdez
 
Bucles en python
Bucles en pythonBucles en python
Bucles en pythonElim Aqp
 
Componente Docente Trabajo I -UNIVERSIDADES NACIONALES
Componente Docente Trabajo I -UNIVERSIDADES NACIONALESComponente Docente Trabajo I -UNIVERSIDADES NACIONALES
Componente Docente Trabajo I -UNIVERSIDADES NACIONALESluismarlmg
 
Manual de el lenguaje de programacion c# (español spanish) x richy(1)
Manual de el lenguaje de programacion c# (español spanish) x richy(1)Manual de el lenguaje de programacion c# (español spanish) x richy(1)
Manual de el lenguaje de programacion c# (español spanish) x richy(1)dulcecitom3
 
Manejo de Equipos Ágiles en Startups - El "Yo" por el "Nosotros"
Manejo de Equipos Ágiles en Startups - El "Yo" por el "Nosotros"Manejo de Equipos Ágiles en Startups - El "Yo" por el "Nosotros"
Manejo de Equipos Ágiles en Startups - El "Yo" por el "Nosotros"Rosa María Orellana Maldonado
 
Ejericicio Diapositivas Exposición "Lineas de Espera"
Ejericicio Diapositivas Exposición "Lineas de Espera"Ejericicio Diapositivas Exposición "Lineas de Espera"
Ejericicio Diapositivas Exposición "Lineas de Espera"AliniuZiz Rguez T
 
Unidad III SISTEMAS I
Unidad III SISTEMAS IUnidad III SISTEMAS I
Unidad III SISTEMAS Iluismarlmg
 

Andere mochten auch (18)

Presentacion de mapa conceptual de web quest elabora por luisana gonzález
Presentacion de mapa conceptual de web quest elabora por luisana gonzálezPresentacion de mapa conceptual de web quest elabora por luisana gonzález
Presentacion de mapa conceptual de web quest elabora por luisana gonzález
 
Computador (informatica) 2 2
Computador (informatica) 2 2Computador (informatica) 2 2
Computador (informatica) 2 2
 
Is there a free lunch for cloud-based evolutionary algorithms?
Is there a free lunch for cloud-based evolutionary algorithms?Is there a free lunch for cloud-based evolutionary algorithms?
Is there a free lunch for cloud-based evolutionary algorithms?
 
Bucles en python
Bucles en pythonBucles en python
Bucles en python
 
Transformación Agile
Transformación AgileTransformación Agile
Transformación Agile
 
Componente Docente Trabajo I -UNIVERSIDADES NACIONALES
Componente Docente Trabajo I -UNIVERSIDADES NACIONALESComponente Docente Trabajo I -UNIVERSIDADES NACIONALES
Componente Docente Trabajo I -UNIVERSIDADES NACIONALES
 
Introducción a Python
Introducción a PythonIntroducción a Python
Introducción a Python
 
Bucles con Scratch
Bucles con ScratchBucles con Scratch
Bucles con Scratch
 
Taac II
Taac IITaac II
Taac II
 
Programación Java
Programación JavaProgramación Java
Programación Java
 
Manual de el lenguaje de programacion c# (español spanish) x richy(1)
Manual de el lenguaje de programacion c# (español spanish) x richy(1)Manual de el lenguaje de programacion c# (español spanish) x richy(1)
Manual de el lenguaje de programacion c# (español spanish) x richy(1)
 
UX Mobile
UX MobileUX Mobile
UX Mobile
 
Manejo de Equipos Ágiles en Startups - El "Yo" por el "Nosotros"
Manejo de Equipos Ágiles en Startups - El "Yo" por el "Nosotros"Manejo de Equipos Ágiles en Startups - El "Yo" por el "Nosotros"
Manejo de Equipos Ágiles en Startups - El "Yo" por el "Nosotros"
 
Liderazgo y Dirección de las Mujeres en las TICs
Liderazgo y Dirección de las Mujeres en las TICsLiderazgo y Dirección de las Mujeres en las TICs
Liderazgo y Dirección de las Mujeres en las TICs
 
Primer Rails Girls Cali - Abril 2016
Primer Rails Girls Cali - Abril 2016Primer Rails Girls Cali - Abril 2016
Primer Rails Girls Cali - Abril 2016
 
GDG Summit Latam Bogotá - Mayo 2016
GDG Summit Latam Bogotá - Mayo 2016GDG Summit Latam Bogotá - Mayo 2016
GDG Summit Latam Bogotá - Mayo 2016
 
Ejericicio Diapositivas Exposición "Lineas de Espera"
Ejericicio Diapositivas Exposición "Lineas de Espera"Ejericicio Diapositivas Exposición "Lineas de Espera"
Ejericicio Diapositivas Exposición "Lineas de Espera"
 
Unidad III SISTEMAS I
Unidad III SISTEMAS IUnidad III SISTEMAS I
Unidad III SISTEMAS I
 

Ähnlich wie EvoSoft 2013 Presentation

Research @ RELEASeD (presented at SATTOSE2013)
Research @ RELEASeD (presented at SATTOSE2013)Research @ RELEASeD (presented at SATTOSE2013)
Research @ RELEASeD (presented at SATTOSE2013)kim.mens
 
JavaScript Editions ES7, ES8 and ES9 vs V8
JavaScript Editions ES7, ES8 and ES9 vs V8JavaScript Editions ES7, ES8 and ES9 vs V8
JavaScript Editions ES7, ES8 and ES9 vs V8Rafael Casuso Romate
 
Purely Functional I/O
Purely Functional I/OPurely Functional I/O
Purely Functional I/OC4Media
 
Apache Groovy: the language and the ecosystem
Apache Groovy: the language and the ecosystemApache Groovy: the language and the ecosystem
Apache Groovy: the language and the ecosystemKostas Saidis
 
Scalable JavaScript
Scalable JavaScriptScalable JavaScript
Scalable JavaScriptYnon Perek
 
A Holistic Approach to Evolving Software Systems
A Holistic Approach to Evolving Software SystemsA Holistic Approach to Evolving Software Systems
A Holistic Approach to Evolving Software SystemsMichele Lanza
 
Practical pairing of generative programming with functional programming.
Practical pairing of generative programming with functional programming.Practical pairing of generative programming with functional programming.
Practical pairing of generative programming with functional programming.Eugene Lazutkin
 
xlab #7 - ReactJS & NodeJS
xlab #7 - ReactJS & NodeJSxlab #7 - ReactJS & NodeJS
xlab #7 - ReactJS & NodeJSXSolve
 
Knowledge of Javascript
Knowledge of JavascriptKnowledge of Javascript
Knowledge of JavascriptSamuel Abraham
 
Bringing Characters to Life for Immersive Storytelling - Dioselin Gonzalez
Bringing Characters to Life for Immersive Storytelling - Dioselin GonzalezBringing Characters to Life for Immersive Storytelling - Dioselin Gonzalez
Bringing Characters to Life for Immersive Storytelling - Dioselin GonzalezWithTheBest
 
function* - ES6, generators, and all that (JSRomandie meetup, February 2014)
function* - ES6, generators, and all that (JSRomandie meetup, February 2014)function* - ES6, generators, and all that (JSRomandie meetup, February 2014)
function* - ES6, generators, and all that (JSRomandie meetup, February 2014)Igalia
 
Bringing characters to life for immersive storytelling
Bringing characters to life for immersive storytellingBringing characters to life for immersive storytelling
Bringing characters to life for immersive storytellingDioselin Gonzalez
 
From Java To Clojure (English version)
From Java To Clojure (English version)From Java To Clojure (English version)
From Java To Clojure (English version)Kent Ohashi
 
Everything is Permitted: Extending Built-ins
Everything is Permitted: Extending Built-insEverything is Permitted: Extending Built-ins
Everything is Permitted: Extending Built-insAndrew Dupont
 
Art & music vs Google App Engine
Art & music vs Google App EngineArt & music vs Google App Engine
Art & music vs Google App Enginethomas alisi
 
What can be done with Java, but should better be done with Erlang (@pavlobaron)
What can be done with Java, but should better be done with Erlang (@pavlobaron)What can be done with Java, but should better be done with Erlang (@pavlobaron)
What can be done with Java, but should better be done with Erlang (@pavlobaron)Pavlo Baron
 
JavaProgrammingForBeginners-Presentation.pdf
JavaProgrammingForBeginners-Presentation.pdfJavaProgrammingForBeginners-Presentation.pdf
JavaProgrammingForBeginners-Presentation.pdfSathwika7
 
MCE^3 - Jorge D. Ortiz - Fuentes - Escape From Mars
MCE^3 - Jorge D. Ortiz - Fuentes - Escape From Mars MCE^3 - Jorge D. Ortiz - Fuentes - Escape From Mars
MCE^3 - Jorge D. Ortiz - Fuentes - Escape From Mars PROIDEA
 

Ähnlich wie EvoSoft 2013 Presentation (20)

Research @ RELEASeD (presented at SATTOSE2013)
Research @ RELEASeD (presented at SATTOSE2013)Research @ RELEASeD (presented at SATTOSE2013)
Research @ RELEASeD (presented at SATTOSE2013)
 
JavaScript Editions ES7, ES8 and ES9 vs V8
JavaScript Editions ES7, ES8 and ES9 vs V8JavaScript Editions ES7, ES8 and ES9 vs V8
JavaScript Editions ES7, ES8 and ES9 vs V8
 
Purely Functional I/O
Purely Functional I/OPurely Functional I/O
Purely Functional I/O
 
Apache Groovy: the language and the ecosystem
Apache Groovy: the language and the ecosystemApache Groovy: the language and the ecosystem
Apache Groovy: the language and the ecosystem
 
Scalable JavaScript
Scalable JavaScriptScalable JavaScript
Scalable JavaScript
 
A Holistic Approach to Evolving Software Systems
A Holistic Approach to Evolving Software SystemsA Holistic Approach to Evolving Software Systems
A Holistic Approach to Evolving Software Systems
 
Practical pairing of generative programming with functional programming.
Practical pairing of generative programming with functional programming.Practical pairing of generative programming with functional programming.
Practical pairing of generative programming with functional programming.
 
Clojure And Swing
Clojure And SwingClojure And Swing
Clojure And Swing
 
xlab #7 - ReactJS & NodeJS
xlab #7 - ReactJS & NodeJSxlab #7 - ReactJS & NodeJS
xlab #7 - ReactJS & NodeJS
 
Invitation to Scala
Invitation to ScalaInvitation to Scala
Invitation to Scala
 
Knowledge of Javascript
Knowledge of JavascriptKnowledge of Javascript
Knowledge of Javascript
 
Bringing Characters to Life for Immersive Storytelling - Dioselin Gonzalez
Bringing Characters to Life for Immersive Storytelling - Dioselin GonzalezBringing Characters to Life for Immersive Storytelling - Dioselin Gonzalez
Bringing Characters to Life for Immersive Storytelling - Dioselin Gonzalez
 
function* - ES6, generators, and all that (JSRomandie meetup, February 2014)
function* - ES6, generators, and all that (JSRomandie meetup, February 2014)function* - ES6, generators, and all that (JSRomandie meetup, February 2014)
function* - ES6, generators, and all that (JSRomandie meetup, February 2014)
 
Bringing characters to life for immersive storytelling
Bringing characters to life for immersive storytellingBringing characters to life for immersive storytelling
Bringing characters to life for immersive storytelling
 
From Java To Clojure (English version)
From Java To Clojure (English version)From Java To Clojure (English version)
From Java To Clojure (English version)
 
Everything is Permitted: Extending Built-ins
Everything is Permitted: Extending Built-insEverything is Permitted: Extending Built-ins
Everything is Permitted: Extending Built-ins
 
Art & music vs Google App Engine
Art & music vs Google App EngineArt & music vs Google App Engine
Art & music vs Google App Engine
 
What can be done with Java, but should better be done with Erlang (@pavlobaron)
What can be done with Java, but should better be done with Erlang (@pavlobaron)What can be done with Java, but should better be done with Erlang (@pavlobaron)
What can be done with Java, but should better be done with Erlang (@pavlobaron)
 
JavaProgrammingForBeginners-Presentation.pdf
JavaProgrammingForBeginners-Presentation.pdfJavaProgrammingForBeginners-Presentation.pdf
JavaProgrammingForBeginners-Presentation.pdf
 
MCE^3 - Jorge D. Ortiz - Fuentes - Escape From Mars
MCE^3 - Jorge D. Ortiz - Fuentes - Escape From Mars MCE^3 - Jorge D. Ortiz - Fuentes - Escape From Mars
MCE^3 - Jorge D. Ortiz - Fuentes - Escape From Mars
 

Kürzlich hochgeladen

Are Multi-Cloud and Serverless Good or Bad?
Are Multi-Cloud and Serverless Good or Bad?Are Multi-Cloud and Serverless Good or Bad?
Are Multi-Cloud and Serverless Good or Bad?Mattias Andersson
 
Scanning the Internet for External Cloud Exposures via SSL Certs
Scanning the Internet for External Cloud Exposures via SSL CertsScanning the Internet for External Cloud Exposures via SSL Certs
Scanning the Internet for External Cloud Exposures via SSL CertsRizwan Syed
 
Advanced Computer Architecture – An Introduction
Advanced Computer Architecture – An IntroductionAdvanced Computer Architecture – An Introduction
Advanced Computer Architecture – An IntroductionDilum Bandara
 
TeamStation AI System Report LATAM IT Salaries 2024
TeamStation AI System Report LATAM IT Salaries 2024TeamStation AI System Report LATAM IT Salaries 2024
TeamStation AI System Report LATAM IT Salaries 2024Lonnie McRorey
 
"LLMs for Python Engineers: Advanced Data Analysis and Semantic Kernel",Oleks...
"LLMs for Python Engineers: Advanced Data Analysis and Semantic Kernel",Oleks..."LLMs for Python Engineers: Advanced Data Analysis and Semantic Kernel",Oleks...
"LLMs for Python Engineers: Advanced Data Analysis and Semantic Kernel",Oleks...Fwdays
 
Designing IA for AI - Information Architecture Conference 2024
Designing IA for AI - Information Architecture Conference 2024Designing IA for AI - Information Architecture Conference 2024
Designing IA for AI - Information Architecture Conference 2024Enterprise Knowledge
 
Powerpoint exploring the locations used in television show Time Clash
Powerpoint exploring the locations used in television show Time ClashPowerpoint exploring the locations used in television show Time Clash
Powerpoint exploring the locations used in television show Time Clashcharlottematthew16
 
Anypoint Exchange: It’s Not Just a Repo!
Anypoint Exchange: It’s Not Just a Repo!Anypoint Exchange: It’s Not Just a Repo!
Anypoint Exchange: It’s Not Just a Repo!Manik S Magar
 
Nell’iperspazio con Rocket: il Framework Web di Rust!
Nell’iperspazio con Rocket: il Framework Web di Rust!Nell’iperspazio con Rocket: il Framework Web di Rust!
Nell’iperspazio con Rocket: il Framework Web di Rust!Commit University
 
Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024BookNet Canada
 
"ML in Production",Oleksandr Bagan
"ML in Production",Oleksandr Bagan"ML in Production",Oleksandr Bagan
"ML in Production",Oleksandr BaganFwdays
 
Ensuring Technical Readiness For Copilot in Microsoft 365
Ensuring Technical Readiness For Copilot in Microsoft 365Ensuring Technical Readiness For Copilot in Microsoft 365
Ensuring Technical Readiness For Copilot in Microsoft 3652toLead Limited
 
Tampa BSides - Chef's Tour of Microsoft Security Adoption Framework (SAF)
Tampa BSides - Chef's Tour of Microsoft Security Adoption Framework (SAF)Tampa BSides - Chef's Tour of Microsoft Security Adoption Framework (SAF)
Tampa BSides - Chef's Tour of Microsoft Security Adoption Framework (SAF)Mark Simos
 
Developer Data Modeling Mistakes: From Postgres to NoSQL
Developer Data Modeling Mistakes: From Postgres to NoSQLDeveloper Data Modeling Mistakes: From Postgres to NoSQL
Developer Data Modeling Mistakes: From Postgres to NoSQLScyllaDB
 
Dev Dives: Streamline document processing with UiPath Studio Web
Dev Dives: Streamline document processing with UiPath Studio WebDev Dives: Streamline document processing with UiPath Studio Web
Dev Dives: Streamline document processing with UiPath Studio WebUiPathCommunity
 
Artificial intelligence in cctv survelliance.pptx
Artificial intelligence in cctv survelliance.pptxArtificial intelligence in cctv survelliance.pptx
Artificial intelligence in cctv survelliance.pptxhariprasad279825
 
"Debugging python applications inside k8s environment", Andrii Soldatenko
"Debugging python applications inside k8s environment", Andrii Soldatenko"Debugging python applications inside k8s environment", Andrii Soldatenko
"Debugging python applications inside k8s environment", Andrii SoldatenkoFwdays
 
H2O.ai CEO/Founder: Sri Ambati Keynote at Wells Fargo Day
H2O.ai CEO/Founder: Sri Ambati Keynote at Wells Fargo DayH2O.ai CEO/Founder: Sri Ambati Keynote at Wells Fargo Day
H2O.ai CEO/Founder: Sri Ambati Keynote at Wells Fargo DaySri Ambati
 
CloudStudio User manual (basic edition):
CloudStudio User manual (basic edition):CloudStudio User manual (basic edition):
CloudStudio User manual (basic edition):comworks
 

Kürzlich hochgeladen (20)

Are Multi-Cloud and Serverless Good or Bad?
Are Multi-Cloud and Serverless Good or Bad?Are Multi-Cloud and Serverless Good or Bad?
Are Multi-Cloud and Serverless Good or Bad?
 
Scanning the Internet for External Cloud Exposures via SSL Certs
Scanning the Internet for External Cloud Exposures via SSL CertsScanning the Internet for External Cloud Exposures via SSL Certs
Scanning the Internet for External Cloud Exposures via SSL Certs
 
Advanced Computer Architecture – An Introduction
Advanced Computer Architecture – An IntroductionAdvanced Computer Architecture – An Introduction
Advanced Computer Architecture – An Introduction
 
TeamStation AI System Report LATAM IT Salaries 2024
TeamStation AI System Report LATAM IT Salaries 2024TeamStation AI System Report LATAM IT Salaries 2024
TeamStation AI System Report LATAM IT Salaries 2024
 
"LLMs for Python Engineers: Advanced Data Analysis and Semantic Kernel",Oleks...
"LLMs for Python Engineers: Advanced Data Analysis and Semantic Kernel",Oleks..."LLMs for Python Engineers: Advanced Data Analysis and Semantic Kernel",Oleks...
"LLMs for Python Engineers: Advanced Data Analysis and Semantic Kernel",Oleks...
 
Designing IA for AI - Information Architecture Conference 2024
Designing IA for AI - Information Architecture Conference 2024Designing IA for AI - Information Architecture Conference 2024
Designing IA for AI - Information Architecture Conference 2024
 
Powerpoint exploring the locations used in television show Time Clash
Powerpoint exploring the locations used in television show Time ClashPowerpoint exploring the locations used in television show Time Clash
Powerpoint exploring the locations used in television show Time Clash
 
Anypoint Exchange: It’s Not Just a Repo!
Anypoint Exchange: It’s Not Just a Repo!Anypoint Exchange: It’s Not Just a Repo!
Anypoint Exchange: It’s Not Just a Repo!
 
Nell’iperspazio con Rocket: il Framework Web di Rust!
Nell’iperspazio con Rocket: il Framework Web di Rust!Nell’iperspazio con Rocket: il Framework Web di Rust!
Nell’iperspazio con Rocket: il Framework Web di Rust!
 
E-Vehicle_Hacking_by_Parul Sharma_null_owasp.pptx
E-Vehicle_Hacking_by_Parul Sharma_null_owasp.pptxE-Vehicle_Hacking_by_Parul Sharma_null_owasp.pptx
E-Vehicle_Hacking_by_Parul Sharma_null_owasp.pptx
 
Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
 
"ML in Production",Oleksandr Bagan
"ML in Production",Oleksandr Bagan"ML in Production",Oleksandr Bagan
"ML in Production",Oleksandr Bagan
 
Ensuring Technical Readiness For Copilot in Microsoft 365
Ensuring Technical Readiness For Copilot in Microsoft 365Ensuring Technical Readiness For Copilot in Microsoft 365
Ensuring Technical Readiness For Copilot in Microsoft 365
 
Tampa BSides - Chef's Tour of Microsoft Security Adoption Framework (SAF)
Tampa BSides - Chef's Tour of Microsoft Security Adoption Framework (SAF)Tampa BSides - Chef's Tour of Microsoft Security Adoption Framework (SAF)
Tampa BSides - Chef's Tour of Microsoft Security Adoption Framework (SAF)
 
Developer Data Modeling Mistakes: From Postgres to NoSQL
Developer Data Modeling Mistakes: From Postgres to NoSQLDeveloper Data Modeling Mistakes: From Postgres to NoSQL
Developer Data Modeling Mistakes: From Postgres to NoSQL
 
Dev Dives: Streamline document processing with UiPath Studio Web
Dev Dives: Streamline document processing with UiPath Studio WebDev Dives: Streamline document processing with UiPath Studio Web
Dev Dives: Streamline document processing with UiPath Studio Web
 
Artificial intelligence in cctv survelliance.pptx
Artificial intelligence in cctv survelliance.pptxArtificial intelligence in cctv survelliance.pptx
Artificial intelligence in cctv survelliance.pptx
 
"Debugging python applications inside k8s environment", Andrii Soldatenko
"Debugging python applications inside k8s environment", Andrii Soldatenko"Debugging python applications inside k8s environment", Andrii Soldatenko
"Debugging python applications inside k8s environment", Andrii Soldatenko
 
H2O.ai CEO/Founder: Sri Ambati Keynote at Wells Fargo Day
H2O.ai CEO/Founder: Sri Ambati Keynote at Wells Fargo DayH2O.ai CEO/Founder: Sri Ambati Keynote at Wells Fargo Day
H2O.ai CEO/Founder: Sri Ambati Keynote at Wells Fargo Day
 
CloudStudio User manual (basic edition):
CloudStudio User manual (basic edition):CloudStudio User manual (basic edition):
CloudStudio User manual (basic edition):
 

EvoSoft 2013 Presentation