SlideShare a Scribd company logo
Minecraft and Scala:
Creating a DSL to enable Kids
to Create Mods
Paulo “Jcranky” Siqueira
Paulo.siqueira@gmail.com / @jcranky
@JCranky
Who am I ?
Developer
(Scala, Java)
@JCranky
Who am I ?
Gamer
Minecraft
and Other Indie Games
@JCranky
Who am I ?
Musician
Wannabe!
@JCranky
Who I work for
TecSinapse
Car Dealers
Research and Innovation
@JCranky
Anytime!
@JCranky
Setting the Scene
What is Minecraft
What Are Minecraft Mods
What Are Kids
@JCranky
Then...
Easyforger: the DSL
Pending challenges
summary
@JCranky
What is Minecraft
Open World Game
DO ...
… Whatever
@JCranky
What is Minecraft
Single Player
multiplayer
@JCranky
What is Minecraft
Client – Server
Architecture
Written in Java
… go figure
@JCranky
Single Player
Internal Server
Very performatic
(unless recording or on a bad/old machine)
Starting a new Game
Barbecue Machine
@JCranky
Multi player
Client: Player Machine
Server: Anywhere,
Holds the Business Logic
Craftbot Server
Some Multi Player fight
@JCranky
What are Mods
Minecraft:
@JCranky
What are Mods
Community Mods to the rescue!
@JCranky
What are Mods
No Official Api
(Being developed for a While...)
… in theory
@JCranky
What are Mods
Community to Rescue (again)!
Client-Server API Mapping
Minecraft CODE Decompilation
@JCranky
Decompilation
Easy: Its Java!
Quite unpleasant Identifiers
though...
Identifiers ...
@JCranky
Modding Alternatives
Server-Side Modifications
(aka server plugins)
Client Mods
(which also goes on the server...)
@JCranky
Server Plugins
Several Options
(all including said SERVER API Mapping)
Bukkit
Canary
Spigotmc
etc
a mini-Game Server
Chicken Shooter
@JCranky
Good!
Any client can join
Nothing to be Installed
@JCranky
Bad!
Can't add new Stuff
(Blocks, Entities etc)
Just change/Control what's already
there
@JCranky
Client Mods: Forge
Minecraft Forge
Main (only?) option
Already includes the Decompilation
(part of the build setup)
@JCranky
Demo: the difference
A Normal Client
A Minecraft Forge Client
@JCranky
Good!
Can do just about anything
@JCranky
Bad!
For multi Player...
Mods have To be installed in the
server as well
@JCranky
Bad!
The installation can be complex
@JCranky
Bad - instalation
No standards
Jar jugling
PixelMon Craft
Mad pack
@JCranky
Kids!
Devoxx4Kids
TDC4Kids
TDC4Kids - FLoripa
@JCranky
But How?
Pre-configured eclipse
With forge and MCP
@JCranky
But How?
Kids modify something and
Run the game from the IDE
@JCranky
But How?
Sounds simple enough ...
@JCranky
All well...
But lets do better!
@JCranky
Why not...
Scala?
Its the JVM After all!
From chicken-Shooter
@JCranky
Better, but...
Simplify!
Kids
Any beginner, Really
@JCranky
A Dsl !
That's Exactly
what DSLs Are good for!
@JCranky
Quickly: DSL Types
Internal: Written and interpreted in
the laNguage
@JCranky
Quickly: DSL Types
External:
uses parsers and other tools
syntax freedom
@JCranky
Our decision
Go internal!
Its simpler and Scala is amazing for
that!
@JCranky
Our decision
5 minutes
(from scala.concurrent.duration)
@JCranky
Our decision
Auto complete from IDEs is
available out of the box
@JCranky
Enter EasyForger
A DSL for writing
minecraft Mods
(on top of minecraft forge)
@JCranky
Enter EasyForger
Supports simple modifications
(with lots more to come!)
@JCranky
Next, lets see:
What can it do?
How is it done?
@JCranky
Creature Item Drops
demo
@JCranky
New Furnace Recipes
Demo
@JCranky
New Crafting Recipes
Demo
@JCranky
New Crafting Recipes
(shaped)
Demo
@JCranky
Creeper Explosion Radius
Demo
@JCranky
Creature Held Item
Demo
@JCranky
How?
Lots and Lots of Experimentation
Target: what “feels right”?
@JCranky
How?
Write what I want
Implement and make it work
@JCranky
How?
Always: auto complete
Must work
@JCranky
Implementation
Guess what...
Lots of implicits!
@JCranky
Implementation
Small methods
Case classes and use of copy
@JCranky
Implementation
Demo Code:
RichItemStack and Friends
@JCranky
implementation
??? helps a lot
@JCranky
The sin
Hard to avoid some side effects
@JCranky
Where are we?
Not tested in the field yet
=(
@JCranky
Where are We?
Target:
make it really easy!
@JCranky
Where are We?
Tried Last October
Environment not ready
@JCranky
Where are we?
Lots to do and fix
Help is welcome!
@JCranky
Problems and ideas
Setup
Macros
Mod Installation
@JCranky
Problems and ideas
Behavior mods
Auto Complete excess
@JCranky
Setup
Make it easy to setup!
No downloads if possible!
@JCranky
Setup
Minecraft Forge
Gradle Build does a Lot!
(plus lots of dependencies downloaded)
@JCranky
Setup
Ideally:
Single zip download
Usable offline
@JCranky
Macros
Perhaps good for
simpler constructs?
@JCranky
Macros
Don't forget about
Auto complete!
@JCranky
Mod Installation Process
EasyForger
is a mod itself
@JCranky
Mod Installation Process
Separate that
and perhaps solve the setup problem...
@JCranky
Custom Behavior support
Experimental
Not happy with the DSL yet
@JCranky
Custom skeleton behavior
Code: Custom Skeleton
@JCranky
Auto Complete Excess
Predef (etc) stuff is useless
In the auto complete box
(for the dsl)
@JCranky
Auto Complete Excess
Confusing for beginners
@JCranky
In time...
Why only kids?
@JCranky
In time...
Why only beginners?
In time...
@JCranky
summary
Minecraft == fun
@JCranky
Modding minecraft == fun.2
@JCranky
Enabling kids to do it
==
Fun.3
@JCranky
Creating the DSL
==
Fun.4
@JCranky
Links
Easyforger.com
Github.com/jcranky/easyforger
Twitter.com/easyforger
Twitter.com/jcranky
@JCranky
acks
_underscore
For the support
@JCranky
Acks
TecSinapse
For allowing me to come
(even though I just started there ;))
@JCranky
Acks
You!
For listening...
And for future contributions! ;)
@JCranky
Questions ?!
Throw them at me!
If it pleases you...
Paulo “Jcranky” Siqueira
Paulo.siqueira@gmail.com / @jcranky

More Related Content

Viewers also liked

Portfolio
PortfolioPortfolio
Portfolio
Callie Simons
 
Leishmaniasis
LeishmaniasisLeishmaniasis
Leishmaniasis
Hatem Refaat El-Sheemy
 
SEA Fundraising Workshop - Sarah Steward
SEA Fundraising Workshop - Sarah StewardSEA Fundraising Workshop - Sarah Steward
SEA Fundraising Workshop - Sarah Steward
Scientists and Engineers for America
 
30 seconds to mars
30 seconds to mars30 seconds to mars
30 seconds to mars
Zairapm8
 
Fotos formatura gi_1
Fotos formatura gi_1Fotos formatura gi_1
Fotos formatura gi_1Edson Paiva
 
Tree Advancement Patterns
Tree Advancement PatternsTree Advancement Patterns
Tree Advancement Patterns
Turner H. Glasgow
 
Deutsche Wolke Präsentation 100114
Deutsche Wolke Präsentation 100114Deutsche Wolke Präsentation 100114
Deutsche Wolke Präsentation 100114
Georg Klauser
 
How to win more sales with less effort
How to win more sales with less effortHow to win more sales with less effort
How to win more sales with less effort
Yaseen Dadabhay
 
How to network with busy people
How to network with busy peopleHow to network with busy people
How to network with busy people
Yaseen Dadabhay
 
30 Seconds to Mars
30 Seconds to Mars30 Seconds to Mars
30 Seconds to Mars
Olesya Howard
 
Index 2 html taller informatica 904
Index 2 html taller informatica 904 Index 2 html taller informatica 904
Index 2 html taller informatica 904
jayerxD
 
Yubi Juragan: Program Reseller Dari YukBisnis
Yubi Juragan: Program Reseller Dari YukBisnisYubi Juragan: Program Reseller Dari YukBisnis
Yubi Juragan: Program Reseller Dari YukBisnis
YukBisnisCom
 
Food poisioning, infection and diseases
Food poisioning, infection and diseasesFood poisioning, infection and diseases
Food poisioning, infection and diseases
University
 
Fish borne parasitic zoonoses
Fish borne parasitic zoonosesFish borne parasitic zoonoses
Fish borne parasitic zoonoses
bharathi rathinam
 
Brandi Chavez Resume New
Brandi Chavez Resume NewBrandi Chavez Resume New
Brandi Chavez Resume New
Brandi Chavez
 

Viewers also liked (15)

Portfolio
PortfolioPortfolio
Portfolio
 
Leishmaniasis
LeishmaniasisLeishmaniasis
Leishmaniasis
 
SEA Fundraising Workshop - Sarah Steward
SEA Fundraising Workshop - Sarah StewardSEA Fundraising Workshop - Sarah Steward
SEA Fundraising Workshop - Sarah Steward
 
30 seconds to mars
30 seconds to mars30 seconds to mars
30 seconds to mars
 
Fotos formatura gi_1
Fotos formatura gi_1Fotos formatura gi_1
Fotos formatura gi_1
 
Tree Advancement Patterns
Tree Advancement PatternsTree Advancement Patterns
Tree Advancement Patterns
 
Deutsche Wolke Präsentation 100114
Deutsche Wolke Präsentation 100114Deutsche Wolke Präsentation 100114
Deutsche Wolke Präsentation 100114
 
How to win more sales with less effort
How to win more sales with less effortHow to win more sales with less effort
How to win more sales with less effort
 
How to network with busy people
How to network with busy peopleHow to network with busy people
How to network with busy people
 
30 Seconds to Mars
30 Seconds to Mars30 Seconds to Mars
30 Seconds to Mars
 
Index 2 html taller informatica 904
Index 2 html taller informatica 904 Index 2 html taller informatica 904
Index 2 html taller informatica 904
 
Yubi Juragan: Program Reseller Dari YukBisnis
Yubi Juragan: Program Reseller Dari YukBisnisYubi Juragan: Program Reseller Dari YukBisnis
Yubi Juragan: Program Reseller Dari YukBisnis
 
Food poisioning, infection and diseases
Food poisioning, infection and diseasesFood poisioning, infection and diseases
Food poisioning, infection and diseases
 
Fish borne parasitic zoonoses
Fish borne parasitic zoonosesFish borne parasitic zoonoses
Fish borne parasitic zoonoses
 
Brandi Chavez Resume New
Brandi Chavez Resume NewBrandi Chavez Resume New
Brandi Chavez Resume New
 

Similar to Minecraft and Scala: Creating a DSL to enable kids to create Minecraft Mods

Adobemax2009na
Adobemax2009naAdobemax2009na
Adobemax2009na
Masakazu Ohtsuka
 
Intro to STEM for Girls: Using JavaScript to Mod Minecraft
Intro to STEM for Girls: Using JavaScript to Mod MinecraftIntro to STEM for Girls: Using JavaScript to Mod Minecraft
Intro to STEM for Girls: Using JavaScript to Mod Minecraft
Brittany Thompson Robinson
 
Learning to Mod Minecraft: A Father/Daughter Retrospective
Learning to Mod Minecraft: A Father/Daughter RetrospectiveLearning to Mod Minecraft: A Father/Daughter Retrospective
Learning to Mod Minecraft: A Father/Daughter Retrospective
Kevin Hakanson
 
Migrating Web SDK from JS to TS
Migrating Web SDK from JS to TSMigrating Web SDK from JS to TS
Migrating Web SDK from JS to TS
Grigory Petrov
 
JCON - The Battle of the IDEs
JCON - The Battle of the IDEsJCON - The Battle of the IDEs
JCON - The Battle of the IDEs
Ko Turk
 
What does OOP stand for?
What does OOP stand for?What does OOP stand for?
What does OOP stand for?
Colin Riley
 
Functional Patterns with Java8 @Bucharest Java User Group
Functional Patterns with Java8 @Bucharest Java User GroupFunctional Patterns with Java8 @Bucharest Java User Group
Functional Patterns with Java8 @Bucharest Java User Group
Victor Rentea
 
Introduction to Minecraft Modding at YaJUG
Introduction to Minecraft Modding at YaJUGIntroduction to Minecraft Modding at YaJUG
Introduction to Minecraft Modding at YaJUG
srondal
 
Realtime selenium interview questions
Realtime selenium interview questionsRealtime selenium interview questions
Realtime selenium interview questions
Kuldeep Pawar
 
Cypress vs Selenium WebDriver: Better, Or Just Different? -- by Gil Tayar
Cypress vs Selenium WebDriver: Better, Or Just Different? -- by Gil TayarCypress vs Selenium WebDriver: Better, Or Just Different? -- by Gil Tayar
Cypress vs Selenium WebDriver: Better, Or Just Different? -- by Gil Tayar
Applitools
 
Live Typing - Automatic Type Annotation that improves the Programming eXperie...
Live Typing- Automatic Type Annotation that improves the Programming eXperie...Live Typing- Automatic Type Annotation that improves the Programming eXperie...
Live Typing - Automatic Type Annotation that improves the Programming eXperie...
Hernan Wilkinson
 
05092019 The Battle of the IDEs by Ko Turk at the AlmereJUG / Conspect
05092019 The Battle of the IDEs by Ko Turk at the AlmereJUG / Conspect05092019 The Battle of the IDEs by Ko Turk at the AlmereJUG / Conspect
05092019 The Battle of the IDEs by Ko Turk at the AlmereJUG / Conspect
Ko Turk
 
JVM Conference - The Battle of the IDEs
JVM Conference - The Battle of the IDEsJVM Conference - The Battle of the IDEs
JVM Conference - The Battle of the IDEs
Ko Turk
 
Load testing, Lessons learnt and Loadzen - Martin Buhr at DevTank - 31st Janu...
Load testing, Lessons learnt and Loadzen - Martin Buhr at DevTank - 31st Janu...Load testing, Lessons learnt and Loadzen - Martin Buhr at DevTank - 31st Janu...
Load testing, Lessons learnt and Loadzen - Martin Buhr at DevTank - 31st Janu...
Loadzen
 
Fun and Games with the Full-Stack Jamstack (KCDC 2022).pdf
Fun and Games with the Full-Stack Jamstack (KCDC 2022).pdfFun and Games with the Full-Stack Jamstack (KCDC 2022).pdf
Fun and Games with the Full-Stack Jamstack (KCDC 2022).pdf
Mike Cavaliere
 
Extreme Professionalism - Software Craftsmanship
Extreme Professionalism - Software CraftsmanshipExtreme Professionalism - Software Craftsmanship
Extreme Professionalism - Software Craftsmanship
Victor Rentea
 
Clean Code with Java 8 - Functional Patterns and Best Practices
Clean Code with Java 8 - Functional Patterns and Best PracticesClean Code with Java 8 - Functional Patterns and Best Practices
Clean Code with Java 8 - Functional Patterns and Best Practices
Victor Rentea
 
Cards n Castles: Merging card game and city building game into one, developer...
Cards n Castles: Merging card game and city building game into one, developer...Cards n Castles: Merging card game and city building game into one, developer...
Cards n Castles: Merging card game and city building game into one, developer...
Tuang Dheandhanoo
 
Gamedev-grade debugging
Gamedev-grade debuggingGamedev-grade debugging
Gamedev-grade debugging
Leszek Godlewski
 
My summary for cs001x computer science for beginners
My summary for cs001x computer science for beginnersMy summary for cs001x computer science for beginners
My summary for cs001x computer science for beginners
Ibrahim Omar
 

Similar to Minecraft and Scala: Creating a DSL to enable kids to create Minecraft Mods (20)

Adobemax2009na
Adobemax2009naAdobemax2009na
Adobemax2009na
 
Intro to STEM for Girls: Using JavaScript to Mod Minecraft
Intro to STEM for Girls: Using JavaScript to Mod MinecraftIntro to STEM for Girls: Using JavaScript to Mod Minecraft
Intro to STEM for Girls: Using JavaScript to Mod Minecraft
 
Learning to Mod Minecraft: A Father/Daughter Retrospective
Learning to Mod Minecraft: A Father/Daughter RetrospectiveLearning to Mod Minecraft: A Father/Daughter Retrospective
Learning to Mod Minecraft: A Father/Daughter Retrospective
 
Migrating Web SDK from JS to TS
Migrating Web SDK from JS to TSMigrating Web SDK from JS to TS
Migrating Web SDK from JS to TS
 
JCON - The Battle of the IDEs
JCON - The Battle of the IDEsJCON - The Battle of the IDEs
JCON - The Battle of the IDEs
 
What does OOP stand for?
What does OOP stand for?What does OOP stand for?
What does OOP stand for?
 
Functional Patterns with Java8 @Bucharest Java User Group
Functional Patterns with Java8 @Bucharest Java User GroupFunctional Patterns with Java8 @Bucharest Java User Group
Functional Patterns with Java8 @Bucharest Java User Group
 
Introduction to Minecraft Modding at YaJUG
Introduction to Minecraft Modding at YaJUGIntroduction to Minecraft Modding at YaJUG
Introduction to Minecraft Modding at YaJUG
 
Realtime selenium interview questions
Realtime selenium interview questionsRealtime selenium interview questions
Realtime selenium interview questions
 
Cypress vs Selenium WebDriver: Better, Or Just Different? -- by Gil Tayar
Cypress vs Selenium WebDriver: Better, Or Just Different? -- by Gil TayarCypress vs Selenium WebDriver: Better, Or Just Different? -- by Gil Tayar
Cypress vs Selenium WebDriver: Better, Or Just Different? -- by Gil Tayar
 
Live Typing - Automatic Type Annotation that improves the Programming eXperie...
Live Typing- Automatic Type Annotation that improves the Programming eXperie...Live Typing- Automatic Type Annotation that improves the Programming eXperie...
Live Typing - Automatic Type Annotation that improves the Programming eXperie...
 
05092019 The Battle of the IDEs by Ko Turk at the AlmereJUG / Conspect
05092019 The Battle of the IDEs by Ko Turk at the AlmereJUG / Conspect05092019 The Battle of the IDEs by Ko Turk at the AlmereJUG / Conspect
05092019 The Battle of the IDEs by Ko Turk at the AlmereJUG / Conspect
 
JVM Conference - The Battle of the IDEs
JVM Conference - The Battle of the IDEsJVM Conference - The Battle of the IDEs
JVM Conference - The Battle of the IDEs
 
Load testing, Lessons learnt and Loadzen - Martin Buhr at DevTank - 31st Janu...
Load testing, Lessons learnt and Loadzen - Martin Buhr at DevTank - 31st Janu...Load testing, Lessons learnt and Loadzen - Martin Buhr at DevTank - 31st Janu...
Load testing, Lessons learnt and Loadzen - Martin Buhr at DevTank - 31st Janu...
 
Fun and Games with the Full-Stack Jamstack (KCDC 2022).pdf
Fun and Games with the Full-Stack Jamstack (KCDC 2022).pdfFun and Games with the Full-Stack Jamstack (KCDC 2022).pdf
Fun and Games with the Full-Stack Jamstack (KCDC 2022).pdf
 
Extreme Professionalism - Software Craftsmanship
Extreme Professionalism - Software CraftsmanshipExtreme Professionalism - Software Craftsmanship
Extreme Professionalism - Software Craftsmanship
 
Clean Code with Java 8 - Functional Patterns and Best Practices
Clean Code with Java 8 - Functional Patterns and Best PracticesClean Code with Java 8 - Functional Patterns and Best Practices
Clean Code with Java 8 - Functional Patterns and Best Practices
 
Cards n Castles: Merging card game and city building game into one, developer...
Cards n Castles: Merging card game and city building game into one, developer...Cards n Castles: Merging card game and city building game into one, developer...
Cards n Castles: Merging card game and city building game into one, developer...
 
Gamedev-grade debugging
Gamedev-grade debuggingGamedev-grade debugging
Gamedev-grade debugging
 
My summary for cs001x computer science for beginners
My summary for cs001x computer science for beginnersMy summary for cs001x computer science for beginners
My summary for cs001x computer science for beginners
 

More from Paulo Siqueira

Como a Carjump usa Scala para revolucionar o mercado de Compartilhamento de c...
Como a Carjump usa Scala para revolucionar o mercado de Compartilhamento de c...Como a Carjump usa Scala para revolucionar o mercado de Compartilhamento de c...
Como a Carjump usa Scala para revolucionar o mercado de Compartilhamento de c...
Paulo Siqueira
 
Desvendando o sistema de tipos do scala
Desvendando o sistema de tipos do scalaDesvendando o sistema de tipos do scala
Desvendando o sistema de tipos do scala
Paulo Siqueira
 
Minecraft Modding e Scala
Minecraft Modding e ScalaMinecraft Modding e Scala
Minecraft Modding e Scala
Paulo Siqueira
 
Minecraft Modding: Um Jogo que vira Muitos!
 Minecraft Modding: Um Jogo que vira Muitos! Minecraft Modding: Um Jogo que vira Muitos!
Minecraft Modding: Um Jogo que vira Muitos!
Paulo Siqueira
 
Atendendo Milhares de Requisições com o Play Framework 2 - v2
Atendendo Milhares de Requisições com o Play Framework 2 - v2Atendendo Milhares de Requisições com o Play Framework 2 - v2
Atendendo Milhares de Requisições com o Play Framework 2 - v2
Paulo Siqueira
 
Entendendo o Modelo de Atores
Entendendo o Modelo de AtoresEntendendo o Modelo de Atores
Entendendo o Modelo de Atores
Paulo Siqueira
 
Akka no Just Java 2012
Akka no Just Java 2012Akka no Just Java 2012
Akka no Just Java 2012
Paulo Siqueira
 

More from Paulo Siqueira (7)

Como a Carjump usa Scala para revolucionar o mercado de Compartilhamento de c...
Como a Carjump usa Scala para revolucionar o mercado de Compartilhamento de c...Como a Carjump usa Scala para revolucionar o mercado de Compartilhamento de c...
Como a Carjump usa Scala para revolucionar o mercado de Compartilhamento de c...
 
Desvendando o sistema de tipos do scala
Desvendando o sistema de tipos do scalaDesvendando o sistema de tipos do scala
Desvendando o sistema de tipos do scala
 
Minecraft Modding e Scala
Minecraft Modding e ScalaMinecraft Modding e Scala
Minecraft Modding e Scala
 
Minecraft Modding: Um Jogo que vira Muitos!
 Minecraft Modding: Um Jogo que vira Muitos! Minecraft Modding: Um Jogo que vira Muitos!
Minecraft Modding: Um Jogo que vira Muitos!
 
Atendendo Milhares de Requisições com o Play Framework 2 - v2
Atendendo Milhares de Requisições com o Play Framework 2 - v2Atendendo Milhares de Requisições com o Play Framework 2 - v2
Atendendo Milhares de Requisições com o Play Framework 2 - v2
 
Entendendo o Modelo de Atores
Entendendo o Modelo de AtoresEntendendo o Modelo de Atores
Entendendo o Modelo de Atores
 
Akka no Just Java 2012
Akka no Just Java 2012Akka no Just Java 2012
Akka no Just Java 2012
 

Recently uploaded

Crafting Excellence: A Comprehensive Guide to iOS Mobile App Development Serv...
Crafting Excellence: A Comprehensive Guide to iOS Mobile App Development Serv...Crafting Excellence: A Comprehensive Guide to iOS Mobile App Development Serv...
Crafting Excellence: A Comprehensive Guide to iOS Mobile App Development Serv...
Pitangent Analytics & Technology Solutions Pvt. Ltd
 
Northern Engraving | Nameplate Manufacturing Process - 2024
Northern Engraving | Nameplate Manufacturing Process - 2024Northern Engraving | Nameplate Manufacturing Process - 2024
Northern Engraving | Nameplate Manufacturing Process - 2024
Northern Engraving
 
HCL Notes and Domino License Cost Reduction in the World of DLAU
HCL Notes and Domino License Cost Reduction in the World of DLAUHCL Notes and Domino License Cost Reduction in the World of DLAU
HCL Notes and Domino License Cost Reduction in the World of DLAU
panagenda
 
Your One-Stop Shop for Python Success: Top 10 US Python Development Providers
Your One-Stop Shop for Python Success: Top 10 US Python Development ProvidersYour One-Stop Shop for Python Success: Top 10 US Python Development Providers
Your One-Stop Shop for Python Success: Top 10 US Python Development Providers
akankshawande
 
Choosing The Best AWS Service For Your Website + API.pptx
Choosing The Best AWS Service For Your Website + API.pptxChoosing The Best AWS Service For Your Website + API.pptx
Choosing The Best AWS Service For Your Website + API.pptx
Brandon Minnick, MBA
 
Main news related to the CCS TSI 2023 (2023/1695)
Main news related to the CCS TSI 2023 (2023/1695)Main news related to the CCS TSI 2023 (2023/1695)
Main news related to the CCS TSI 2023 (2023/1695)
Jakub Marek
 
9 CEO's who hit $100m ARR Share Their Top Growth Tactics Nathan Latka, Founde...
9 CEO's who hit $100m ARR Share Their Top Growth Tactics Nathan Latka, Founde...9 CEO's who hit $100m ARR Share Their Top Growth Tactics Nathan Latka, Founde...
9 CEO's who hit $100m ARR Share Their Top Growth Tactics Nathan Latka, Founde...
saastr
 
GNSS spoofing via SDR (Criptored Talks 2024)
GNSS spoofing via SDR (Criptored Talks 2024)GNSS spoofing via SDR (Criptored Talks 2024)
GNSS spoofing via SDR (Criptored Talks 2024)
Javier Junquera
 
"Choosing proper type of scaling", Olena Syrota
"Choosing proper type of scaling", Olena Syrota"Choosing proper type of scaling", Olena Syrota
"Choosing proper type of scaling", Olena Syrota
Fwdays
 
“How Axelera AI Uses Digital Compute-in-memory to Deliver Fast and Energy-eff...
“How Axelera AI Uses Digital Compute-in-memory to Deliver Fast and Energy-eff...“How Axelera AI Uses Digital Compute-in-memory to Deliver Fast and Energy-eff...
“How Axelera AI Uses Digital Compute-in-memory to Deliver Fast and Energy-eff...
Edge AI and Vision Alliance
 
Introduction of Cybersecurity with OSS at Code Europe 2024
Introduction of Cybersecurity with OSS  at Code Europe 2024Introduction of Cybersecurity with OSS  at Code Europe 2024
Introduction of Cybersecurity with OSS at Code Europe 2024
Hiroshi SHIBATA
 
Y-Combinator seed pitch deck template PP
Y-Combinator seed pitch deck template PPY-Combinator seed pitch deck template PP
Y-Combinator seed pitch deck template PP
c5vrf27qcz
 
Programming Foundation Models with DSPy - Meetup Slides
Programming Foundation Models with DSPy - Meetup SlidesProgramming Foundation Models with DSPy - Meetup Slides
Programming Foundation Models with DSPy - Meetup Slides
Zilliz
 
Freshworks Rethinks NoSQL for Rapid Scaling & Cost-Efficiency
Freshworks Rethinks NoSQL for Rapid Scaling & Cost-EfficiencyFreshworks Rethinks NoSQL for Rapid Scaling & Cost-Efficiency
Freshworks Rethinks NoSQL for Rapid Scaling & Cost-Efficiency
ScyllaDB
 
Driving Business Innovation: Latest Generative AI Advancements & Success Story
Driving Business Innovation: Latest Generative AI Advancements & Success StoryDriving Business Innovation: Latest Generative AI Advancements & Success Story
Driving Business Innovation: Latest Generative AI Advancements & Success Story
Safe Software
 
Energy Efficient Video Encoding for Cloud and Edge Computing Instances
Energy Efficient Video Encoding for Cloud and Edge Computing InstancesEnergy Efficient Video Encoding for Cloud and Edge Computing Instances
Energy Efficient Video Encoding for Cloud and Edge Computing Instances
Alpen-Adria-Universität
 
Biomedical Knowledge Graphs for Data Scientists and Bioinformaticians
Biomedical Knowledge Graphs for Data Scientists and BioinformaticiansBiomedical Knowledge Graphs for Data Scientists and Bioinformaticians
Biomedical Knowledge Graphs for Data Scientists and Bioinformaticians
Neo4j
 
Mutation Testing for Task-Oriented Chatbots
Mutation Testing for Task-Oriented ChatbotsMutation Testing for Task-Oriented Chatbots
Mutation Testing for Task-Oriented Chatbots
Pablo Gómez Abajo
 
[OReilly Superstream] Occupy the Space: A grassroots guide to engineering (an...
[OReilly Superstream] Occupy the Space: A grassroots guide to engineering (an...[OReilly Superstream] Occupy the Space: A grassroots guide to engineering (an...
[OReilly Superstream] Occupy the Space: A grassroots guide to engineering (an...
Jason Yip
 
Monitoring and Managing Anomaly Detection on OpenShift.pdf
Monitoring and Managing Anomaly Detection on OpenShift.pdfMonitoring and Managing Anomaly Detection on OpenShift.pdf
Monitoring and Managing Anomaly Detection on OpenShift.pdf
Tosin Akinosho
 

Recently uploaded (20)

Crafting Excellence: A Comprehensive Guide to iOS Mobile App Development Serv...
Crafting Excellence: A Comprehensive Guide to iOS Mobile App Development Serv...Crafting Excellence: A Comprehensive Guide to iOS Mobile App Development Serv...
Crafting Excellence: A Comprehensive Guide to iOS Mobile App Development Serv...
 
Northern Engraving | Nameplate Manufacturing Process - 2024
Northern Engraving | Nameplate Manufacturing Process - 2024Northern Engraving | Nameplate Manufacturing Process - 2024
Northern Engraving | Nameplate Manufacturing Process - 2024
 
HCL Notes and Domino License Cost Reduction in the World of DLAU
HCL Notes and Domino License Cost Reduction in the World of DLAUHCL Notes and Domino License Cost Reduction in the World of DLAU
HCL Notes and Domino License Cost Reduction in the World of DLAU
 
Your One-Stop Shop for Python Success: Top 10 US Python Development Providers
Your One-Stop Shop for Python Success: Top 10 US Python Development ProvidersYour One-Stop Shop for Python Success: Top 10 US Python Development Providers
Your One-Stop Shop for Python Success: Top 10 US Python Development Providers
 
Choosing The Best AWS Service For Your Website + API.pptx
Choosing The Best AWS Service For Your Website + API.pptxChoosing The Best AWS Service For Your Website + API.pptx
Choosing The Best AWS Service For Your Website + API.pptx
 
Main news related to the CCS TSI 2023 (2023/1695)
Main news related to the CCS TSI 2023 (2023/1695)Main news related to the CCS TSI 2023 (2023/1695)
Main news related to the CCS TSI 2023 (2023/1695)
 
9 CEO's who hit $100m ARR Share Their Top Growth Tactics Nathan Latka, Founde...
9 CEO's who hit $100m ARR Share Their Top Growth Tactics Nathan Latka, Founde...9 CEO's who hit $100m ARR Share Their Top Growth Tactics Nathan Latka, Founde...
9 CEO's who hit $100m ARR Share Their Top Growth Tactics Nathan Latka, Founde...
 
GNSS spoofing via SDR (Criptored Talks 2024)
GNSS spoofing via SDR (Criptored Talks 2024)GNSS spoofing via SDR (Criptored Talks 2024)
GNSS spoofing via SDR (Criptored Talks 2024)
 
"Choosing proper type of scaling", Olena Syrota
"Choosing proper type of scaling", Olena Syrota"Choosing proper type of scaling", Olena Syrota
"Choosing proper type of scaling", Olena Syrota
 
“How Axelera AI Uses Digital Compute-in-memory to Deliver Fast and Energy-eff...
“How Axelera AI Uses Digital Compute-in-memory to Deliver Fast and Energy-eff...“How Axelera AI Uses Digital Compute-in-memory to Deliver Fast and Energy-eff...
“How Axelera AI Uses Digital Compute-in-memory to Deliver Fast and Energy-eff...
 
Introduction of Cybersecurity with OSS at Code Europe 2024
Introduction of Cybersecurity with OSS  at Code Europe 2024Introduction of Cybersecurity with OSS  at Code Europe 2024
Introduction of Cybersecurity with OSS at Code Europe 2024
 
Y-Combinator seed pitch deck template PP
Y-Combinator seed pitch deck template PPY-Combinator seed pitch deck template PP
Y-Combinator seed pitch deck template PP
 
Programming Foundation Models with DSPy - Meetup Slides
Programming Foundation Models with DSPy - Meetup SlidesProgramming Foundation Models with DSPy - Meetup Slides
Programming Foundation Models with DSPy - Meetup Slides
 
Freshworks Rethinks NoSQL for Rapid Scaling & Cost-Efficiency
Freshworks Rethinks NoSQL for Rapid Scaling & Cost-EfficiencyFreshworks Rethinks NoSQL for Rapid Scaling & Cost-Efficiency
Freshworks Rethinks NoSQL for Rapid Scaling & Cost-Efficiency
 
Driving Business Innovation: Latest Generative AI Advancements & Success Story
Driving Business Innovation: Latest Generative AI Advancements & Success StoryDriving Business Innovation: Latest Generative AI Advancements & Success Story
Driving Business Innovation: Latest Generative AI Advancements & Success Story
 
Energy Efficient Video Encoding for Cloud and Edge Computing Instances
Energy Efficient Video Encoding for Cloud and Edge Computing InstancesEnergy Efficient Video Encoding for Cloud and Edge Computing Instances
Energy Efficient Video Encoding for Cloud and Edge Computing Instances
 
Biomedical Knowledge Graphs for Data Scientists and Bioinformaticians
Biomedical Knowledge Graphs for Data Scientists and BioinformaticiansBiomedical Knowledge Graphs for Data Scientists and Bioinformaticians
Biomedical Knowledge Graphs for Data Scientists and Bioinformaticians
 
Mutation Testing for Task-Oriented Chatbots
Mutation Testing for Task-Oriented ChatbotsMutation Testing for Task-Oriented Chatbots
Mutation Testing for Task-Oriented Chatbots
 
[OReilly Superstream] Occupy the Space: A grassroots guide to engineering (an...
[OReilly Superstream] Occupy the Space: A grassroots guide to engineering (an...[OReilly Superstream] Occupy the Space: A grassroots guide to engineering (an...
[OReilly Superstream] Occupy the Space: A grassroots guide to engineering (an...
 
Monitoring and Managing Anomaly Detection on OpenShift.pdf
Monitoring and Managing Anomaly Detection on OpenShift.pdfMonitoring and Managing Anomaly Detection on OpenShift.pdf
Monitoring and Managing Anomaly Detection on OpenShift.pdf
 

Minecraft and Scala: Creating a DSL to enable kids to create Minecraft Mods