SlideShare ist ein Scribd-Unternehmen logo
1 von 111
Downloaden Sie, um offline zu lesen
The first five years

Jacob Kaplan-Moss

Google, December 16, 2008
http://jacobian.org/speaking/2008/first-five-years/
“
Good software takes ten years.
       Get used to it.



                            — Joel Spolsky
                                                         ”
        http://www.joelonsoftware.com/articles/fog0000000017.html
Halfway there!




                 http://flickr.com/photos/usonian/257403571/
Kansas
Django - the first five years
Django - the first five years
Merry Slickmas              Events     Latest     Music     Movies      Food      Nightlife




   Best bets    Upcoming


                                      quot;A Benefit for Charley's Fingerquot; with The
                                      Dactyls / Naomi What?
                                      Charlie Downey is a baller. He's so badass that he
                                      broke his finger in two places when one of his
                                      shots got stuffed

                                      Today at 10:00pm
                                      The Jackpot Music Hall, $5




   Today's events                                                            Search events
                                                                                                                   Staph blogs

                                                                                                  O Caption! My Caption!
       The Dog and Pony Show                                                                      Loafers of Mass Destruction
                                                                                                  13 comments
       Hark! The Local Musicians Sing!: New Christmas albums from Sam
       Billen and Josh Atkinson                                                                   Scene Stealers
       Sam Billen’s “Merry Christmas” and Josh Atkinson’s “Songs for Christmas” rank right up     'Synecdoche, New York' tackles life’s
       there with recent yuletide blessings from Sufjan Stevens and Low. Both albums strip away   complexity with complexity
Django - the first five years
Django - the first five years
“
    In the beginning there was Zope. Zope
    was a web application framework ... but
     it had some discontents who dared to
     call it quot;monolithicquot; and quot;unpythonicquot;.
    And behold, then there came Webware,
        and it was Modular.... But others
      rebelled ... and a Ton of frameworks
      appeared: Quixote ... SkunkWEB ...




                                                      ”
     CherryPy ... and some thirteen others.


                              — Mike Orr
                          http://linuxgazette.net/113/orr.html
Django - the first five years
Django - the first five years
2003
2008
r36 cms/apps/polls/

 r84 cms/core/validators.py

r159 cms/core/paginator.py

r327 cms/apps/auth/

r390 cms/core/urlresolvers.py

r630 cms/core/sites.py
Django - the first five years
Django - the first five years
February 2004
    circa r1000
Django - the first five years
cms/apps/polls/poll.py
>>>
from
cms.apps.polls.polls
import
Poll
>>>
p
=
Poll(4,
quot;hiquot;,
date(2004,
1,
1),
...)
>>>
p.save()
cms/apps/polls/polls.py
cms/apps/polls/polls.py
cms/apps/polls/dblayout.sql
httpd.conf
cms/conf/mrmustard/polls.py
cms/views/polls/polls.py
Data class                 Admin view




Data-access function(s)         Admin template




                   Admin URLs
Django - the first five years
cms/datadescriptions/polls.py
./generate_code.py
polls
apps/
   polls.py

sql/
   polls.sql

views/
   admin/
      polls.py

templates/
   admin/
      polls/
         change_list.html
         add_form.html
         change_form.html
cms/utilities/codegeneration/generation.py
cms/datadescriptions/polls.py
DO
NOT
EDIT
THIS
FILE
MANUALLY.
IT
WAS
GENERATED
BY
A
PROGRAM.
RE‐RUN
THE
CODE
GENERATOR
INSTEAD.
Seven months later...
       October 2004
Django - the first five years
cms/models/polls.py
Django - the first five years
PyCon 2005
Rails
Django - the first five years
Django - the first five years
Django - the first five years
Django - the first five years
Django - the first five years
Django - the first five years
Django - the first five years
Django - the first five years
Django - the first five years
Django - the first five years
Django - the first five years
class
Poll(meta.Model):




fields
=
(








meta.SlugField('slug',
'slug',
unique_for_month='pub_dat








meta.CharField('question',
'question',
maxlength=255),








meta.DateTimeField('pub_date',
'date
published'),








meta.DateTimeField('expire_date',
'expiration
date'),








meta.ManyToManyField(core.Site),








meta.PositiveSmallIntegerField('choice_votes',
'choice
v




)





db_table
=
polls




ordering
=
('‐pub_date',)




get_latest_by
=
'pub_date'
class
Poll(meta.Model):




slug
=
meta.SlugField(unique_for_month='pub_date')




question
=
meta.CharField(maxlength=255)




pub_date
=
meta.DateTimeField('date
published')




expire_date
=
meta.DateTimeField('expiration
date')




sites
=
meta.ManyToManyField(core.Site)




choice_votes
=
meta.PositiveSmallIntegerField(default=1)





class
META:








db_table
=
'polls'








ordering
=
('‐pub_date',)
“    I can't think of any other
    backwards-incompatible
  changes that we're planning
before 1.0 (knock on wood). If
 this isn't the last one, though,
 it's at least the last major one.


        — Adrian, August 2005
                                                         ”
    http://www.djangoproject.com/weblog/2005/aug/25/modelsyntax/
Django - the first five years
Django - the first five years
Django - the first five years
Django - the first five years
Django - the first five years
Django - the first five years
Before:
from
django.models.polls
import
Poll

After:
from
myapp.models
import
Poll
Before:
...
magic!
...

After:
import
datetime
Before:
class
Poll(meta.Model):




class
META:








admin
=
meta.Admin(












list_display
=
('title'),








)

After:
class
Poll(meta.Model):




class
Admin








list_display
=
('title')
Before:
from
django.models.polls
import
polls
polls.get_list(slug__exact='slug')

After:
from
polls.models
import
Poll
Poll.objects.filter(slug='slug')
Django - the first five years

339
files
changed,

22290
insertions(+),

 15656
deletions(‐)
“   After this merge,
Django 1.0 can’t be far off.



                                — Bill de hÓra
                                                            ”
     http://www.dehora.net/journal/2006/04/django_magic_merging.html
Django - the first five years
“0.95”
Django - the first five years
django.newforms

  django.test
Django - the first five years
Django - the first five years
18 months
3,094 commits
    + branches
1,370 from the
  community
230 new AUTHORS
2,120 bugs fixed

1,394
files
changed,

28,3237
insertions(+),

 97,036
deletions(‐)
40,000 lines of new
  documentation
4 new full committers
Unicode
QSRF
NFA
GeoDjango
ModelForms
Autoescaping
Django on Jython
    (Thanks, Google!)
... and much more ...
http://docs.djangoproject.com/en/dev/releases/1.0/
API stability &
forwards-compatability
http://docs.djangoproject.com/en/dev/misc/api-stability/
Formal release process
http://docs.djangoproject.com/en/dev/internals/release-process/
What’s next?
Django 1.1
 March 16, 2009
Django 1.1 Roadmap
http://code.djangoproject.com/wiki/Version1.1Roadmap
ORM aggregation
http://github.com/freakboy3742/django/tree/aggregation
>>>
Book.objects.aggregate(
...




Avg('price'),
...




highest_price
=
Max('price'))

{'price_avg':
45.0,
'highest_price':
82.80}
>>>
Author.objects.aggregate(Sum('book__price'))

{'book_price_sum':
442}
>>>
books
=
Book.objects.annotate(Max('authors__age'))

>>>
books[0].name
u'Python
Web
Development
With
Django'

>>>
books[0].authors.all()
[<Author:
Jeffrey
Forcier
>,
<Author:
Paul
Bissex>,

<Author:
Wesley
J.
Chun>]

>>>
books[0].authors__age__max
37.0
Publisher.objects.annotate(num_books=Count('book__id'))


















.filter(num_books__gt=1)


















.order_by('num_books')
Improved
QuerySet.update()
>>>
Person.objects.update(age=F('age')+1)
Model Validation
http://code.djangoproject.com/ticket/6845
>>>
p
=
Person.objects.get(...)
>>>
p.age
=
‐7
>>>
p.save(validate=True)
Traceback
(most
recent
call
last):


File
quot;<stdin>quot;,
line
1,
in
<module>
ValidationError:
enter
a
number
greater
than
0.
Bulk admin actions
http://code.google.com/p/django-batchadmin/
Django - the first five years
Class-based
generic views
from
django.views.generic
import
DetailView

class
PersonView(DetailView):




queryset
=
Person.objects.all()









def
get_template(self,
request):








return
Template(...)
... and more ...
http://code.djangoproject.com/wiki/Version1.1Roadmap
Please help!
http://code.djangoproject.com/wiki/Version1.1Roadmap#how-you-can-help
Thank you!
 jacob@jacobian.org

Weitere ähnliche Inhalte

Andere mochten auch

Upgrade OBIEE to 11.1.1.7.1
Upgrade OBIEE to 11.1.1.7.1Upgrade OBIEE to 11.1.1.7.1
Upgrade OBIEE to 11.1.1.7.1Osama Mustafa
 
What's Next with Government Big Data
What's Next with Government Big Data What's Next with Government Big Data
What's Next with Government Big Data GovLoop
 
빅데이터와 프라이버시 강장묵 130619_ver1
빅데이터와 프라이버시 강장묵 130619_ver1빅데이터와 프라이버시 강장묵 130619_ver1
빅데이터와 프라이버시 강장묵 130619_ver1JM code group
 
ICDE2014 Session 14 Data Warehousing
ICDE2014 Session 14 Data WarehousingICDE2014 Session 14 Data Warehousing
ICDE2014 Session 14 Data WarehousingTakuma Wakamori
 
Tomcat Maven Plugin
Tomcat Maven PluginTomcat Maven Plugin
Tomcat Maven PluginOlivier Lamy
 
¡This is drupal! - Global Training Days
¡This is drupal! - Global Training Days¡This is drupal! - Global Training Days
¡This is drupal! - Global Training DaysLa Drupalera
 
State of virtualisation -- 2012
State of virtualisation -- 2012State of virtualisation -- 2012
State of virtualisation -- 2012Jonathan Sinclair
 
User Profiles: I Didn't Know I Could Do That (Updated Demo)
User Profiles:  I Didn't Know I Could Do That (Updated Demo)User Profiles:  I Didn't Know I Could Do That (Updated Demo)
User Profiles: I Didn't Know I Could Do That (Updated Demo)Stacy Deere
 
Especial Linux Magazine Software Público
Especial Linux Magazine Software PúblicoEspecial Linux Magazine Software Público
Especial Linux Magazine Software PúblicoGovBR
 
Adventures in Digital Forensics
Adventures in Digital ForensicsAdventures in Digital Forensics
Adventures in Digital Forensics_xhr_
 
Archives & the Semantic Web
Archives & the Semantic WebArchives & the Semantic Web
Archives & the Semantic WebMark Matienzo
 
Java EE 6 = Less Code + More Power (Tutorial) [5th IndicThreads Conference O...
Java EE 6 = Less Code + More Power (Tutorial)  [5th IndicThreads Conference O...Java EE 6 = Less Code + More Power (Tutorial)  [5th IndicThreads Conference O...
Java EE 6 = Less Code + More Power (Tutorial) [5th IndicThreads Conference O...IndicThreads
 
Lacerte Helpful Resources
Lacerte Helpful ResourcesLacerte Helpful Resources
Lacerte Helpful Resourcesintuitaccts
 
Know Your PHY Types.
Know Your PHY Types.Know Your PHY Types.
Know Your PHY Types.MetaGeek
 

Andere mochten auch (19)

2013 06-07
2013 06-072013 06-07
2013 06-07
 
HDF OPeNDAP project update and demo
HDF OPeNDAP project update and demoHDF OPeNDAP project update and demo
HDF OPeNDAP project update and demo
 
Upgrade OBIEE to 11.1.1.7.1
Upgrade OBIEE to 11.1.1.7.1Upgrade OBIEE to 11.1.1.7.1
Upgrade OBIEE to 11.1.1.7.1
 
What's Next with Government Big Data
What's Next with Government Big Data What's Next with Government Big Data
What's Next with Government Big Data
 
빅데이터와 프라이버시 강장묵 130619_ver1
빅데이터와 프라이버시 강장묵 130619_ver1빅데이터와 프라이버시 강장묵 130619_ver1
빅데이터와 프라이버시 강장묵 130619_ver1
 
ICDE2014 Session 14 Data Warehousing
ICDE2014 Session 14 Data WarehousingICDE2014 Session 14 Data Warehousing
ICDE2014 Session 14 Data Warehousing
 
Nosotros Elmedio
Nosotros ElmedioNosotros Elmedio
Nosotros Elmedio
 
Tomcat Maven Plugin
Tomcat Maven PluginTomcat Maven Plugin
Tomcat Maven Plugin
 
¡This is drupal! - Global Training Days
¡This is drupal! - Global Training Days¡This is drupal! - Global Training Days
¡This is drupal! - Global Training Days
 
State of virtualisation -- 2012
State of virtualisation -- 2012State of virtualisation -- 2012
State of virtualisation -- 2012
 
Bug x tracker
Bug x trackerBug x tracker
Bug x tracker
 
Bryan So
Bryan SoBryan So
Bryan So
 
User Profiles: I Didn't Know I Could Do That (Updated Demo)
User Profiles:  I Didn't Know I Could Do That (Updated Demo)User Profiles:  I Didn't Know I Could Do That (Updated Demo)
User Profiles: I Didn't Know I Could Do That (Updated Demo)
 
Especial Linux Magazine Software Público
Especial Linux Magazine Software PúblicoEspecial Linux Magazine Software Público
Especial Linux Magazine Software Público
 
Adventures in Digital Forensics
Adventures in Digital ForensicsAdventures in Digital Forensics
Adventures in Digital Forensics
 
Archives & the Semantic Web
Archives & the Semantic WebArchives & the Semantic Web
Archives & the Semantic Web
 
Java EE 6 = Less Code + More Power (Tutorial) [5th IndicThreads Conference O...
Java EE 6 = Less Code + More Power (Tutorial)  [5th IndicThreads Conference O...Java EE 6 = Less Code + More Power (Tutorial)  [5th IndicThreads Conference O...
Java EE 6 = Less Code + More Power (Tutorial) [5th IndicThreads Conference O...
 
Lacerte Helpful Resources
Lacerte Helpful ResourcesLacerte Helpful Resources
Lacerte Helpful Resources
 
Know Your PHY Types.
Know Your PHY Types.Know Your PHY Types.
Know Your PHY Types.
 

Ähnlich wie Django - the first five years

Semantic Web For Distributed Social Networks
Semantic Web For Distributed Social NetworksSemantic Web For Distributed Social Networks
Semantic Web For Distributed Social NetworksDavid Peterson
 
Silent Running Side E Appendix
Silent Running Side E AppendixSilent Running Side E Appendix
Silent Running Side E AppendixShunsaku Kudo
 
Revolutions The Appendix
Revolutions The AppendixRevolutions The Appendix
Revolutions The AppendixShunsaku Kudo
 
Design Strategy Tokuil
Design Strategy TokuilDesign Strategy Tokuil
Design Strategy TokuilNao Tokui
 
Return of the Command Line: New Text Interfaces
Return of the Command Line: New Text InterfacesReturn of the Command Line: New Text Interfaces
Return of the Command Line: New Text InterfacesDavid Noble
 
Podcasting - What's all the fuss? (2006)
Podcasting - What's all the fuss? (2006)Podcasting - What's all the fuss? (2006)
Podcasting - What's all the fuss? (2006)Paul Meldrum
 
The Uncanny Valley - BarCamp Canberra
The Uncanny Valley - BarCamp CanberraThe Uncanny Valley - BarCamp Canberra
The Uncanny Valley - BarCamp CanberraRuth Ellison
 
When The Whole World is Your Database at Ruby Conference Kenya by Victor Shep...
When The Whole World is Your Database at Ruby Conference Kenya by Victor Shep...When The Whole World is Your Database at Ruby Conference Kenya by Victor Shep...
When The Whole World is Your Database at Ruby Conference Kenya by Victor Shep...Michael Kimathi
 
Commercialization Challenges Of Mobile Software Development In A Fragmented M...
Commercialization Challenges Of Mobile Software Development In A Fragmented M...Commercialization Challenges Of Mobile Software Development In A Fragmented M...
Commercialization Challenges Of Mobile Software Development In A Fragmented M...Stephen King
 
The Open Web & The Broken TVs
The Open Web & The Broken TVsThe Open Web & The Broken TVs
The Open Web & The Broken TVslomalogue
 
Ignite Orlando - Act 1
Ignite Orlando -  Act 1Ignite Orlando -  Act 1
Ignite Orlando - Act 1GreggPollack
 
Talking About Fluent Interface
Talking About Fluent InterfaceTalking About Fluent Interface
Talking About Fluent InterfaceKoji SHIMADA
 
New Media & Social Technologies | 5 Blogs
New Media & Social Technologies | 5 BlogsNew Media & Social Technologies | 5 Blogs
New Media & Social Technologies | 5 Blogsethansen
 
The Spicies 2008 Favorite Clips
The Spicies 2008 Favorite ClipsThe Spicies 2008 Favorite Clips
The Spicies 2008 Favorite ClipsSpiceworks
 
Cowboy development with Django
Cowboy development with DjangoCowboy development with Django
Cowboy development with DjangoSimon Willison
 
Web 2.0 Enrichment Slide Show 011409
Web 2.0 Enrichment Slide Show 011409Web 2.0 Enrichment Slide Show 011409
Web 2.0 Enrichment Slide Show 011409Mike Thornburg
 
Taking A Line For A Walk
Taking A Line For A WalkTaking A Line For A Walk
Taking A Line For A WalkAaron Cope
 
Tech, Reference, AND PATRON Views of our new Front-End
Tech, Reference, AND PATRON Views of our new Front-EndTech, Reference, AND PATRON Views of our new Front-End
Tech, Reference, AND PATRON Views of our new Front-Endkramsey
 
What is Creative Commons? for University HS Students
What is Creative Commons? for University HS StudentsWhat is Creative Commons? for University HS Students
What is Creative Commons? for University HS StudentsJane Park
 

Ähnlich wie Django - the first five years (19)

Semantic Web For Distributed Social Networks
Semantic Web For Distributed Social NetworksSemantic Web For Distributed Social Networks
Semantic Web For Distributed Social Networks
 
Silent Running Side E Appendix
Silent Running Side E AppendixSilent Running Side E Appendix
Silent Running Side E Appendix
 
Revolutions The Appendix
Revolutions The AppendixRevolutions The Appendix
Revolutions The Appendix
 
Design Strategy Tokuil
Design Strategy TokuilDesign Strategy Tokuil
Design Strategy Tokuil
 
Return of the Command Line: New Text Interfaces
Return of the Command Line: New Text InterfacesReturn of the Command Line: New Text Interfaces
Return of the Command Line: New Text Interfaces
 
Podcasting - What's all the fuss? (2006)
Podcasting - What's all the fuss? (2006)Podcasting - What's all the fuss? (2006)
Podcasting - What's all the fuss? (2006)
 
The Uncanny Valley - BarCamp Canberra
The Uncanny Valley - BarCamp CanberraThe Uncanny Valley - BarCamp Canberra
The Uncanny Valley - BarCamp Canberra
 
When The Whole World is Your Database at Ruby Conference Kenya by Victor Shep...
When The Whole World is Your Database at Ruby Conference Kenya by Victor Shep...When The Whole World is Your Database at Ruby Conference Kenya by Victor Shep...
When The Whole World is Your Database at Ruby Conference Kenya by Victor Shep...
 
Commercialization Challenges Of Mobile Software Development In A Fragmented M...
Commercialization Challenges Of Mobile Software Development In A Fragmented M...Commercialization Challenges Of Mobile Software Development In A Fragmented M...
Commercialization Challenges Of Mobile Software Development In A Fragmented M...
 
The Open Web & The Broken TVs
The Open Web & The Broken TVsThe Open Web & The Broken TVs
The Open Web & The Broken TVs
 
Ignite Orlando - Act 1
Ignite Orlando -  Act 1Ignite Orlando -  Act 1
Ignite Orlando - Act 1
 
Talking About Fluent Interface
Talking About Fluent InterfaceTalking About Fluent Interface
Talking About Fluent Interface
 
New Media & Social Technologies | 5 Blogs
New Media & Social Technologies | 5 BlogsNew Media & Social Technologies | 5 Blogs
New Media & Social Technologies | 5 Blogs
 
The Spicies 2008 Favorite Clips
The Spicies 2008 Favorite ClipsThe Spicies 2008 Favorite Clips
The Spicies 2008 Favorite Clips
 
Cowboy development with Django
Cowboy development with DjangoCowboy development with Django
Cowboy development with Django
 
Web 2.0 Enrichment Slide Show 011409
Web 2.0 Enrichment Slide Show 011409Web 2.0 Enrichment Slide Show 011409
Web 2.0 Enrichment Slide Show 011409
 
Taking A Line For A Walk
Taking A Line For A WalkTaking A Line For A Walk
Taking A Line For A Walk
 
Tech, Reference, AND PATRON Views of our new Front-End
Tech, Reference, AND PATRON Views of our new Front-EndTech, Reference, AND PATRON Views of our new Front-End
Tech, Reference, AND PATRON Views of our new Front-End
 
What is Creative Commons? for University HS Students
What is Creative Commons? for University HS StudentsWhat is Creative Commons? for University HS Students
What is Creative Commons? for University HS Students
 

Mehr von Jacob Kaplan-Moss

Introduction To Django (Strange Loop 2011)
Introduction To Django (Strange Loop 2011)Introduction To Django (Strange Loop 2011)
Introduction To Django (Strange Loop 2011)Jacob Kaplan-Moss
 
The Best (and Worst) of Django
The Best (and Worst) of DjangoThe Best (and Worst) of Django
The Best (and Worst) of DjangoJacob Kaplan-Moss
 
Writing great documentation - CodeConf 2011
Writing great documentation - CodeConf 2011Writing great documentation - CodeConf 2011
Writing great documentation - CodeConf 2011Jacob Kaplan-Moss
 
Django Introduction, Dev in Rio 2009
Django Introduction, Dev in Rio 2009Django Introduction, Dev in Rio 2009
Django Introduction, Dev in Rio 2009Jacob Kaplan-Moss
 
Building a web framework: Django's design decisions
Building a web framework: Django's design decisionsBuilding a web framework: Django's design decisions
Building a web framework: Django's design decisionsJacob Kaplan-Moss
 
A brief history of Django model syntax
A brief history of Django model syntaxA brief history of Django model syntax
A brief history of Django model syntaxJacob Kaplan-Moss
 

Mehr von Jacob Kaplan-Moss (12)

Introduction To Django (Strange Loop 2011)
Introduction To Django (Strange Loop 2011)Introduction To Django (Strange Loop 2011)
Introduction To Django (Strange Loop 2011)
 
The Best (and Worst) of Django
The Best (and Worst) of DjangoThe Best (and Worst) of Django
The Best (and Worst) of Django
 
Writing great documentation - CodeConf 2011
Writing great documentation - CodeConf 2011Writing great documentation - CodeConf 2011
Writing great documentation - CodeConf 2011
 
What's new in Django 1.2?
What's new in Django 1.2?What's new in Django 1.2?
What's new in Django 1.2?
 
Django Introduction, Dev in Rio 2009
Django Introduction, Dev in Rio 2009Django Introduction, Dev in Rio 2009
Django Introduction, Dev in Rio 2009
 
Snakes on the Web
Snakes on the WebSnakes on the Web
Snakes on the Web
 
Django In The Real World
Django In The Real WorldDjango In The Real World
Django In The Real World
 
Building a web framework: Django's design decisions
Building a web framework: Django's design decisionsBuilding a web framework: Django's design decisions
Building a web framework: Django's design decisions
 
Django in the Real World
Django in the Real WorldDjango in the Real World
Django in the Real World
 
State Of Django
State Of DjangoState Of Django
State Of Django
 
A brief history of Django model syntax
A brief history of Django model syntaxA brief history of Django model syntax
A brief history of Django model syntax
 
Django Update (OSCON 2007)
Django Update (OSCON 2007)Django Update (OSCON 2007)
Django Update (OSCON 2007)
 

Kürzlich hochgeladen

COMPUTER 10 Lesson 8 - Building a Website
COMPUTER 10 Lesson 8 - Building a WebsiteCOMPUTER 10 Lesson 8 - Building a Website
COMPUTER 10 Lesson 8 - Building a Websitedgelyza
 
9 Steps For Building Winning Founding Team
9 Steps For Building Winning Founding Team9 Steps For Building Winning Founding Team
9 Steps For Building Winning Founding TeamAdam Moalla
 
Igniting Next Level Productivity with AI-Infused Data Integration Workflows
Igniting Next Level Productivity with AI-Infused Data Integration WorkflowsIgniting Next Level Productivity with AI-Infused Data Integration Workflows
Igniting Next Level Productivity with AI-Infused Data Integration WorkflowsSafe Software
 
Videogame localization & technology_ how to enhance the power of translation.pdf
Videogame localization & technology_ how to enhance the power of translation.pdfVideogame localization & technology_ how to enhance the power of translation.pdf
Videogame localization & technology_ how to enhance the power of translation.pdfinfogdgmi
 
Secure your environment with UiPath and CyberArk technologies - Session 1
Secure your environment with UiPath and CyberArk technologies - Session 1Secure your environment with UiPath and CyberArk technologies - Session 1
Secure your environment with UiPath and CyberArk technologies - Session 1DianaGray10
 
Anypoint Code Builder , Google Pub sub connector and MuleSoft RPA
Anypoint Code Builder , Google Pub sub connector and MuleSoft RPAAnypoint Code Builder , Google Pub sub connector and MuleSoft RPA
Anypoint Code Builder , Google Pub sub connector and MuleSoft RPAshyamraj55
 
Apres-Cyber - The Data Dilemma: Bridging Offensive Operations and Machine Lea...
Apres-Cyber - The Data Dilemma: Bridging Offensive Operations and Machine Lea...Apres-Cyber - The Data Dilemma: Bridging Offensive Operations and Machine Lea...
Apres-Cyber - The Data Dilemma: Bridging Offensive Operations and Machine Lea...Will Schroeder
 
The Kubernetes Gateway API and its role in Cloud Native API Management
The Kubernetes Gateway API and its role in Cloud Native API ManagementThe Kubernetes Gateway API and its role in Cloud Native API Management
The Kubernetes Gateway API and its role in Cloud Native API ManagementNuwan Dias
 
IEEE Computer Society’s Strategic Activities and Products including SWEBOK Guide
IEEE Computer Society’s Strategic Activities and Products including SWEBOK GuideIEEE Computer Society’s Strategic Activities and Products including SWEBOK Guide
IEEE Computer Society’s Strategic Activities and Products including SWEBOK GuideHironori Washizaki
 
Using IESVE for Loads, Sizing and Heat Pump Modeling to Achieve Decarbonization
Using IESVE for Loads, Sizing and Heat Pump Modeling to Achieve DecarbonizationUsing IESVE for Loads, Sizing and Heat Pump Modeling to Achieve Decarbonization
Using IESVE for Loads, Sizing and Heat Pump Modeling to Achieve DecarbonizationIES VE
 
OpenShift Commons Paris - Choose Your Own Observability Adventure
OpenShift Commons Paris - Choose Your Own Observability AdventureOpenShift Commons Paris - Choose Your Own Observability Adventure
OpenShift Commons Paris - Choose Your Own Observability AdventureEric D. Schabell
 
UiPath Community: AI for UiPath Automation Developers
UiPath Community: AI for UiPath Automation DevelopersUiPath Community: AI for UiPath Automation Developers
UiPath Community: AI for UiPath Automation DevelopersUiPathCommunity
 
UiPath Studio Web workshop series - Day 6
UiPath Studio Web workshop series - Day 6UiPath Studio Web workshop series - Day 6
UiPath Studio Web workshop series - Day 6DianaGray10
 
Empowering Africa's Next Generation: The AI Leadership Blueprint
Empowering Africa's Next Generation: The AI Leadership BlueprintEmpowering Africa's Next Generation: The AI Leadership Blueprint
Empowering Africa's Next Generation: The AI Leadership BlueprintMahmoud Rabie
 
UiPath Clipboard AI: "A TIME Magazine Best Invention of 2023 Unveiled"
UiPath Clipboard AI: "A TIME Magazine Best Invention of 2023 Unveiled"UiPath Clipboard AI: "A TIME Magazine Best Invention of 2023 Unveiled"
UiPath Clipboard AI: "A TIME Magazine Best Invention of 2023 Unveiled"DianaGray10
 
UiPath Platform: The Backend Engine Powering Your Automation - Session 1
UiPath Platform: The Backend Engine Powering Your Automation - Session 1UiPath Platform: The Backend Engine Powering Your Automation - Session 1
UiPath Platform: The Backend Engine Powering Your Automation - Session 1DianaGray10
 
ADOPTING WEB 3 FOR YOUR BUSINESS: A STEP-BY-STEP GUIDE
ADOPTING WEB 3 FOR YOUR BUSINESS: A STEP-BY-STEP GUIDEADOPTING WEB 3 FOR YOUR BUSINESS: A STEP-BY-STEP GUIDE
ADOPTING WEB 3 FOR YOUR BUSINESS: A STEP-BY-STEP GUIDELiveplex
 
Salesforce Miami User Group Event - 1st Quarter 2024
Salesforce Miami User Group Event - 1st Quarter 2024Salesforce Miami User Group Event - 1st Quarter 2024
Salesforce Miami User Group Event - 1st Quarter 2024SkyPlanner
 
100+ ChatGPT Prompts for SEO Optimization
100+ ChatGPT Prompts for SEO Optimization100+ ChatGPT Prompts for SEO Optimization
100+ ChatGPT Prompts for SEO Optimizationarrow10202532yuvraj
 

Kürzlich hochgeladen (20)

COMPUTER 10 Lesson 8 - Building a Website
COMPUTER 10 Lesson 8 - Building a WebsiteCOMPUTER 10 Lesson 8 - Building a Website
COMPUTER 10 Lesson 8 - Building a Website
 
9 Steps For Building Winning Founding Team
9 Steps For Building Winning Founding Team9 Steps For Building Winning Founding Team
9 Steps For Building Winning Founding Team
 
Igniting Next Level Productivity with AI-Infused Data Integration Workflows
Igniting Next Level Productivity with AI-Infused Data Integration WorkflowsIgniting Next Level Productivity with AI-Infused Data Integration Workflows
Igniting Next Level Productivity with AI-Infused Data Integration Workflows
 
Videogame localization & technology_ how to enhance the power of translation.pdf
Videogame localization & technology_ how to enhance the power of translation.pdfVideogame localization & technology_ how to enhance the power of translation.pdf
Videogame localization & technology_ how to enhance the power of translation.pdf
 
Secure your environment with UiPath and CyberArk technologies - Session 1
Secure your environment with UiPath and CyberArk technologies - Session 1Secure your environment with UiPath and CyberArk technologies - Session 1
Secure your environment with UiPath and CyberArk technologies - Session 1
 
Anypoint Code Builder , Google Pub sub connector and MuleSoft RPA
Anypoint Code Builder , Google Pub sub connector and MuleSoft RPAAnypoint Code Builder , Google Pub sub connector and MuleSoft RPA
Anypoint Code Builder , Google Pub sub connector and MuleSoft RPA
 
Apres-Cyber - The Data Dilemma: Bridging Offensive Operations and Machine Lea...
Apres-Cyber - The Data Dilemma: Bridging Offensive Operations and Machine Lea...Apres-Cyber - The Data Dilemma: Bridging Offensive Operations and Machine Lea...
Apres-Cyber - The Data Dilemma: Bridging Offensive Operations and Machine Lea...
 
The Kubernetes Gateway API and its role in Cloud Native API Management
The Kubernetes Gateway API and its role in Cloud Native API ManagementThe Kubernetes Gateway API and its role in Cloud Native API Management
The Kubernetes Gateway API and its role in Cloud Native API Management
 
201610817 - edge part1
201610817 - edge part1201610817 - edge part1
201610817 - edge part1
 
IEEE Computer Society’s Strategic Activities and Products including SWEBOK Guide
IEEE Computer Society’s Strategic Activities and Products including SWEBOK GuideIEEE Computer Society’s Strategic Activities and Products including SWEBOK Guide
IEEE Computer Society’s Strategic Activities and Products including SWEBOK Guide
 
Using IESVE for Loads, Sizing and Heat Pump Modeling to Achieve Decarbonization
Using IESVE for Loads, Sizing and Heat Pump Modeling to Achieve DecarbonizationUsing IESVE for Loads, Sizing and Heat Pump Modeling to Achieve Decarbonization
Using IESVE for Loads, Sizing and Heat Pump Modeling to Achieve Decarbonization
 
OpenShift Commons Paris - Choose Your Own Observability Adventure
OpenShift Commons Paris - Choose Your Own Observability AdventureOpenShift Commons Paris - Choose Your Own Observability Adventure
OpenShift Commons Paris - Choose Your Own Observability Adventure
 
UiPath Community: AI for UiPath Automation Developers
UiPath Community: AI for UiPath Automation DevelopersUiPath Community: AI for UiPath Automation Developers
UiPath Community: AI for UiPath Automation Developers
 
UiPath Studio Web workshop series - Day 6
UiPath Studio Web workshop series - Day 6UiPath Studio Web workshop series - Day 6
UiPath Studio Web workshop series - Day 6
 
Empowering Africa's Next Generation: The AI Leadership Blueprint
Empowering Africa's Next Generation: The AI Leadership BlueprintEmpowering Africa's Next Generation: The AI Leadership Blueprint
Empowering Africa's Next Generation: The AI Leadership Blueprint
 
UiPath Clipboard AI: "A TIME Magazine Best Invention of 2023 Unveiled"
UiPath Clipboard AI: "A TIME Magazine Best Invention of 2023 Unveiled"UiPath Clipboard AI: "A TIME Magazine Best Invention of 2023 Unveiled"
UiPath Clipboard AI: "A TIME Magazine Best Invention of 2023 Unveiled"
 
UiPath Platform: The Backend Engine Powering Your Automation - Session 1
UiPath Platform: The Backend Engine Powering Your Automation - Session 1UiPath Platform: The Backend Engine Powering Your Automation - Session 1
UiPath Platform: The Backend Engine Powering Your Automation - Session 1
 
ADOPTING WEB 3 FOR YOUR BUSINESS: A STEP-BY-STEP GUIDE
ADOPTING WEB 3 FOR YOUR BUSINESS: A STEP-BY-STEP GUIDEADOPTING WEB 3 FOR YOUR BUSINESS: A STEP-BY-STEP GUIDE
ADOPTING WEB 3 FOR YOUR BUSINESS: A STEP-BY-STEP GUIDE
 
Salesforce Miami User Group Event - 1st Quarter 2024
Salesforce Miami User Group Event - 1st Quarter 2024Salesforce Miami User Group Event - 1st Quarter 2024
Salesforce Miami User Group Event - 1st Quarter 2024
 
100+ ChatGPT Prompts for SEO Optimization
100+ ChatGPT Prompts for SEO Optimization100+ ChatGPT Prompts for SEO Optimization
100+ ChatGPT Prompts for SEO Optimization
 

Django - the first five years