SlideShare una empresa de Scribd logo
1 de 60
Descargar para leer sin conexión
Free Django!
WEB
service
%3
Plan
● Diving inside Backend
● Django basics
● Django REST Framework
● Simple Django app
%7
Diving inside Backend
In software engineering, front end (frontend)
and back end (backend) distinguish between
the separation of concerns between the
presentation layer (the front end) – which is the
interface between the user – and the data
access layer (the back end).
%10
Diving inside Backend
● Basic Architecture
● Top 3 projects overview
● Why Django?
%13
Basic Architecture
● LAMP
– Linux – OS
– Apache – web (also nginx)
– MySQL – database (also postgres)
– PHP – frontend + backend (also Django, Ruby on
Rails)
%17
Basic Architecture
● LAMP
● MEAN
– MongoDB – database
– Express.js – web
– Angular.js – frontend
– Node.js – backend
%20
Top 3 projects overview
● Django
%23
Top 3 projects overview
● Django
● Ruby On Rails
%27
Top 3 projects overview
● Django
● Ruby On Rails
● Express.js
%30
Why Django?
● Fast development
%33
Why Django?
● Fast development
● Strong community
%37
Why Django?
● Fast development
● Strong community
● Secure
%40
Why Django?
● Fast development
● Strong community
● Secure
● Featured
%43
Why Django?
● Fast development
● Strong community
● Secure
● Featured
● Like Ruby on Rails, but Django
%47
Django basics
● Structure
● Where to find Applications?
● Django MVC
%50
Structure
● project/
– manage.py # entrypoint
– mysite/ # dir with site staff
● __init__.py
● settings.py # site settings
● urls.py # URL declarations
● wsgi.py # entry-point for WSGI-compatible
%53
Structure
● project/pet/
● __init__.py
● migrations/
– __init__.py
● models.py
● tests.py
● views.py # Contollers
● urls.py # app URL declarations
%57
Where to find Applications?
● Django packages
● GitHub
● In your Company
%60
MVC → Django MVC
● Model → Model
● Controller → View
● View → Template
%63
Django REST Framework
● Features
– Great architecture
– Easy to add to existed project
– Plenty of existed apps
%67
Django REST Framework
● Features
● Usage
– Install
– Add Router
– Add ViewSet
– Add Serializers
– Add Tests
%70
Django REST Framework
● Features
● Usage
● Profit
– Serverauditor
– Look
%73
Simple Django app
● How to start (Do it!):
– Install python and pip
%77
Simple Django app
● How to start (Do it!):
– Install python and pip
– https://docs.djangoproject.com/en/1.10/intro/install/
%80
Simple Django app
● How to start (Do it!):
– Install python and pip
– https://docs.djangoproject.com/en/1.10/intro/install/
– https://docs.djangoproject.com/en/1.10/intro/tutorial
01/
%83
Simple Django app
● How to start (Do it!):
– Install python and pip
– https://docs.djangoproject.com/en/1.10/intro/install/
– https://docs.djangoproject.com/en/1.10/intro/tutorial
01/
– Run localserver
%87
Simple Django app
● How to start (Do it!)
● My sample
https://github.com/EvgeneOskin/animals-drf
%90
Summary
● Diving inside Backend
● Django basics
● Django REST Framework
● Simple Django app
%93
References
● https://en.wikipedia.org/wiki/LAMP_%28software_bun
dle%29
● https://www.djangoproject.com/
● https://docs.djangoproject.com/en/1.10/intro/tutorial01/
● https://docs.djangoproject.com/en/1.10/
● http://django-rest-framework.org/
● http://djangopackages.com/
● https://github.com/EvgeneOskin/animals-drf
● http://www.intenct.nl/projects/django-allauth/
%97
Advices
● Do not use aggregation in admin page!
● Add crash reporter (eg. Sentry) and track
version!
● Have a strong deployment process!
● Do not run datamigrations in service start!
%100
Free Django!
WEB
service
%3
Plan
● Diving inside Backend
● Django basics
● Django REST Framework
● Simple Django app
%7
Diving inside Backend
In software engineering, front end (frontend)
and back end (backend) distinguish between
the separation of concerns between the
presentation layer (the front end) – which is the
interface between the user – and the data
access layer (the back end).
%10
Diving inside Backend
● Basic Architecture
● Top 3 projects overview
● Why Django?
%13
Basic Architecture
● LAMP
– Linux – OS
– Apache – web (also nginx)
– MySQL – database (also postgres)
– PHP – frontend + backend (also Django, Ruby on
Rails)
%17
Basic Architecture
● LAMP
● MEAN
– MongoDB – database
– Express.js – web
– Angular.js – frontend
– Node.js – backend
%20
Top 3 projects overview
● Django
%23
Top 3 projects overview
● Django
● Ruby On Rails
%27
Top 3 projects overview
● Django
● Ruby On Rails
● Express.js
%30
Why Django?
● Fast development
%33
Why Django?
● Fast development
● Strong community
%37
Why Django?
● Fast development
● Strong community
● Secure
%40
Why Django?
● Fast development
● Strong community
● Secure
● Featured
%43
Why Django?
● Fast development
● Strong community
● Secure
● Featured
● Like Ruby on Rails, but Django
%47
Django basics
● Structure
● Where to find Applications?
● Django MVC
%50
Structure
●
project/
– manage.py # entrypoint
– mysite/ # dir with site staff
● __init__.py
● settings.py # site settings
● urls.py # URL declarations
● wsgi.py # entry-point for WSGI-compatible
%53
Structure
●
project/pet/
● __init__.py
● migrations/
– __init__.py
● models.py
● tests.py
● views.py # Contollers
● urls.py # app URL declarations
%57
Where to find Applications?
● Django packages
● GitHub
● In your Company
%60
MVC → Django MVC
● Model → Model
● Controller → View
● View → Template
%63
Django REST Framework
● Features
– Great architecture
– Easy to add to existed project
– Plenty of existed apps
%67
Django REST Framework
● Features
● Usage
– Install
– Add Router
– Add ViewSet
– Add Serializers
– Add Tests
%70
Django REST Framework
● Features
● Usage
● Profit
– Serverauditor
– Look
%73
Simple Django app
● How to start (Do it!):
– Install python and pip
%77
Simple Django app
● How to start (Do it!):
– Install python and pip
– https://docs.djangoproject.com/en/1.10/intro/install/
%80
Simple Django app
● How to start (Do it!):
– Install python and pip
– https://docs.djangoproject.com/en/1.10/intro/install/
– https://docs.djangoproject.com/en/1.10/intro/tutorial
01/
%83
Simple Django app
● How to start (Do it!):
– Install python and pip
– https://docs.djangoproject.com/en/1.10/intro/install/
– https://docs.djangoproject.com/en/1.10/intro/tutorial
01/
– Run localserver
%87
Simple Django app
● How to start (Do it!)
● My sample
https://github.com/EvgeneOskin/animals-drf
%90
Summary
● Diving inside Backend
● Django basics
● Django REST Framework
● Simple Django app
%93
References
● https://en.wikipedia.org/wiki/LAMP_%28software_bun
dle%29
● https://www.djangoproject.com/
● https://docs.djangoproject.com/en/1.10/intro/tutorial01/
● https://docs.djangoproject.com/en/1.10/
● http://django-rest-framework.org/
● http://djangopackages.com/
● https://github.com/EvgeneOskin/animals-drf
● http://www.intenct.nl/projects/django-allauth/
%97
Advices
● Do not use aggregation in admin page!
● Add crash reporter (eg. Sentry) and track
version!
● Have a strong deployment process!
● Do not run datamigrations in service start!
%100

Más contenido relacionado

La actualidad más candente

Django for Beginners
Django for BeginnersDjango for Beginners
Django for BeginnersJason Davies
 
Web Development with Python and Django
Web Development with Python and DjangoWeb Development with Python and Django
Web Development with Python and DjangoMichael Pirnat
 
PowerShell 101
PowerShell 101PowerShell 101
PowerShell 101Thomas Lee
 
Introduction to Python
Introduction to PythonIntroduction to Python
Introduction to PythonNowell Strite
 
Web application development with Django framework
Web application development with Django frameworkWeb application development with Django framework
Web application development with Django frameworkflapiello
 
Python Tutorial For Beginners | Python Crash Course - Python Programming Lang...
Python Tutorial For Beginners | Python Crash Course - Python Programming Lang...Python Tutorial For Beginners | Python Crash Course - Python Programming Lang...
Python Tutorial For Beginners | Python Crash Course - Python Programming Lang...Edureka!
 
An Introduction to Windows PowerShell
An Introduction to Windows PowerShellAn Introduction to Windows PowerShell
An Introduction to Windows PowerShellDale Lane
 
Python Web Development Tutorial | Web Development Using Django | Edureka
Python Web Development Tutorial | Web Development Using Django | EdurekaPython Web Development Tutorial | Web Development Using Django | Edureka
Python Web Development Tutorial | Web Development Using Django | EdurekaEdureka!
 
C# Exceptions Handling
C# Exceptions Handling C# Exceptions Handling
C# Exceptions Handling sharqiyem
 
Python Programming ppt
Python Programming pptPython Programming ppt
Python Programming pptismailmrribi
 
Introduction Django
Introduction DjangoIntroduction Django
Introduction DjangoWade Austin
 
Introduction à spring boot
Introduction à spring bootIntroduction à spring boot
Introduction à spring bootAntoine Rey
 
Python Programming Tutorial | Edureka
Python Programming Tutorial | EdurekaPython Programming Tutorial | Edureka
Python Programming Tutorial | EdurekaEdureka!
 
Appium & Robot Framework
Appium & Robot FrameworkAppium & Robot Framework
Appium & Robot FrameworkFurkan Ertürk
 
Unit Testing with Python
Unit Testing with PythonUnit Testing with Python
Unit Testing with PythonMicroPyramid .
 
File Handling in Java Oop presentation
File Handling in Java Oop presentationFile Handling in Java Oop presentation
File Handling in Java Oop presentationAzeemaj101
 

La actualidad más candente (20)

Django for Beginners
Django for BeginnersDjango for Beginners
Django for Beginners
 
Web Development with Python and Django
Web Development with Python and DjangoWeb Development with Python and Django
Web Development with Python and Django
 
Wpf Introduction
Wpf IntroductionWpf Introduction
Wpf Introduction
 
PowerShell 101
PowerShell 101PowerShell 101
PowerShell 101
 
Jenkins
JenkinsJenkins
Jenkins
 
Introduction to Python
Introduction to PythonIntroduction to Python
Introduction to Python
 
Web application development with Django framework
Web application development with Django frameworkWeb application development with Django framework
Web application development with Django framework
 
Python Tutorial For Beginners | Python Crash Course - Python Programming Lang...
Python Tutorial For Beginners | Python Crash Course - Python Programming Lang...Python Tutorial For Beginners | Python Crash Course - Python Programming Lang...
Python Tutorial For Beginners | Python Crash Course - Python Programming Lang...
 
An Introduction to Windows PowerShell
An Introduction to Windows PowerShellAn Introduction to Windows PowerShell
An Introduction to Windows PowerShell
 
Python Web Development Tutorial | Web Development Using Django | Edureka
Python Web Development Tutorial | Web Development Using Django | EdurekaPython Web Development Tutorial | Web Development Using Django | Edureka
Python Web Development Tutorial | Web Development Using Django | Edureka
 
C# Exceptions Handling
C# Exceptions Handling C# Exceptions Handling
C# Exceptions Handling
 
Python Programming ppt
Python Programming pptPython Programming ppt
Python Programming ppt
 
JUnit 5
JUnit 5JUnit 5
JUnit 5
 
Introduction Django
Introduction DjangoIntroduction Django
Introduction Django
 
Support NodeJS avec TypeScript Express MongoDB
Support NodeJS avec TypeScript Express MongoDBSupport NodeJS avec TypeScript Express MongoDB
Support NodeJS avec TypeScript Express MongoDB
 
Introduction à spring boot
Introduction à spring bootIntroduction à spring boot
Introduction à spring boot
 
Python Programming Tutorial | Edureka
Python Programming Tutorial | EdurekaPython Programming Tutorial | Edureka
Python Programming Tutorial | Edureka
 
Appium & Robot Framework
Appium & Robot FrameworkAppium & Robot Framework
Appium & Robot Framework
 
Unit Testing with Python
Unit Testing with PythonUnit Testing with Python
Unit Testing with Python
 
File Handling in Java Oop presentation
File Handling in Java Oop presentationFile Handling in Java Oop presentation
File Handling in Java Oop presentation
 

Destacado

Getting Started With Django
Getting Started With DjangoGetting Started With Django
Getting Started With Djangojeff_croft
 
Django Rest Framework and React and Redux, Oh My!
Django Rest Framework and React and Redux, Oh My!Django Rest Framework and React and Redux, Oh My!
Django Rest Framework and React and Redux, Oh My!Eric Palakovich Carr
 
Django Overview
Django OverviewDjango Overview
Django OverviewBrian Tol
 
Django tech-talk
Django tech-talkDjango tech-talk
Django tech-talkdtdannen
 
Building an API with Django and Django REST Framework
Building an API with Django and Django REST FrameworkBuilding an API with Django and Django REST Framework
Building an API with Django and Django REST FrameworkChristopher Foresman
 
Jumpstart Django
Jumpstart DjangoJumpstart Django
Jumpstart Djangoryates
 
Django Admin (Python meeutp)
Django Admin (Python meeutp)Django Admin (Python meeutp)
Django Admin (Python meeutp)Ines Jelovac
 
REST Easy with Django-Rest-Framework
REST Easy with Django-Rest-FrameworkREST Easy with Django-Rest-Framework
REST Easy with Django-Rest-FrameworkMarcel Chastain
 
Starters with Django
Starters with Django Starters with Django
Starters with Django BeDjango
 
Django 實戰 - 自己的購物網站自己做
Django 實戰 - 自己的購物網站自己做Django 實戰 - 自己的購物網站自己做
Django 實戰 - 自己的購物網站自己做flywindy
 
那些年,我用 Django Admin 接的案子
那些年,我用 Django Admin 接的案子那些年,我用 Django Admin 接的案子
那些年,我用 Django Admin 接的案子flywindy
 
Architecture at SimpleGeo: Staying Agile at Scale
Architecture at SimpleGeo: Staying Agile at ScaleArchitecture at SimpleGeo: Staying Agile at Scale
Architecture at SimpleGeo: Staying Agile at ScaleMike Malone
 
The Web map stack on Django
The Web map stack on DjangoThe Web map stack on Django
The Web map stack on DjangoPaul Smith
 
Efficient Django
Efficient DjangoEfficient Django
Efficient DjangoDavid Arcos
 
Python RESTful webservices with Python: Flask and Django solutions
Python RESTful webservices with Python: Flask and Django solutionsPython RESTful webservices with Python: Flask and Django solutions
Python RESTful webservices with Python: Flask and Django solutionsSolution4Future
 

Destacado (20)

Getting Started With Django
Getting Started With DjangoGetting Started With Django
Getting Started With Django
 
Django Rest Framework and React and Redux, Oh My!
Django Rest Framework and React and Redux, Oh My!Django Rest Framework and React and Redux, Oh My!
Django Rest Framework and React and Redux, Oh My!
 
Django Best Practices
Django Best PracticesDjango Best Practices
Django Best Practices
 
Why Django
Why DjangoWhy Django
Why Django
 
Django Overview
Django OverviewDjango Overview
Django Overview
 
Django tech-talk
Django tech-talkDjango tech-talk
Django tech-talk
 
Building an API with Django and Django REST Framework
Building an API with Django and Django REST FrameworkBuilding an API with Django and Django REST Framework
Building an API with Django and Django REST Framework
 
Jumpstart Django
Jumpstart DjangoJumpstart Django
Jumpstart Django
 
Django Admin (Python meeutp)
Django Admin (Python meeutp)Django Admin (Python meeutp)
Django Admin (Python meeutp)
 
REST Easy with Django-Rest-Framework
REST Easy with Django-Rest-FrameworkREST Easy with Django-Rest-Framework
REST Easy with Django-Rest-Framework
 
Starters with Django
Starters with Django Starters with Django
Starters with Django
 
Django 實戰 - 自己的購物網站自己做
Django 實戰 - 自己的購物網站自己做Django 實戰 - 自己的購物網站自己做
Django 實戰 - 自己的購物網站自己做
 
那些年,我用 Django Admin 接的案子
那些年,我用 Django Admin 接的案子那些年,我用 Django Admin 接的案子
那些年,我用 Django Admin 接的案子
 
Architecture at SimpleGeo: Staying Agile at Scale
Architecture at SimpleGeo: Staying Agile at ScaleArchitecture at SimpleGeo: Staying Agile at Scale
Architecture at SimpleGeo: Staying Agile at Scale
 
The Web map stack on Django
The Web map stack on DjangoThe Web map stack on Django
The Web map stack on Django
 
Advanced Django
Advanced DjangoAdvanced Django
Advanced Django
 
Django in the Real World
Django in the Real WorldDjango in the Real World
Django in the Real World
 
Efficient Django
Efficient DjangoEfficient Django
Efficient Django
 
Scaling Django
Scaling DjangoScaling Django
Scaling Django
 
Python RESTful webservices with Python: Flask and Django solutions
Python RESTful webservices with Python: Flask and Django solutionsPython RESTful webservices with Python: Flask and Django solutions
Python RESTful webservices with Python: Flask and Django solutions
 

Similar a Learn Django with this Free Web Service Plan

Introduction to Django
Introduction to DjangoIntroduction to Django
Introduction to DjangoAhmed Salama
 
Web Development in Django
Web Development in DjangoWeb Development in Django
Web Development in DjangoLakshman Prasad
 
10 things you should know about django
10 things you should know about django10 things you should know about django
10 things you should know about djangoAdieu
 
Django Framework Overview forNon-Python Developers
Django Framework Overview forNon-Python DevelopersDjango Framework Overview forNon-Python Developers
Django Framework Overview forNon-Python DevelopersRosario Renga
 
Akash rajguru project report sem v
Akash rajguru project report sem vAkash rajguru project report sem v
Akash rajguru project report sem vAkash Rajguru
 
python full stack course in hyderabad...
python full stack course in hyderabad...python full stack course in hyderabad...
python full stack course in hyderabad...sowmyavibhin
 
python full stack course in hyderabad...
python full stack course in hyderabad...python full stack course in hyderabad...
python full stack course in hyderabad...sowmyavibhin
 
20 tips for website performance
20 tips for website performance20 tips for website performance
20 tips for website performanceAndrew Siemer
 
EuroPython 2013 - Python3 TurboGears Training
EuroPython 2013 - Python3 TurboGears TrainingEuroPython 2013 - Python3 TurboGears Training
EuroPython 2013 - Python3 TurboGears TrainingAlessandro Molina
 
Angular (v2 and up) - Morning to understand - Linagora
Angular (v2 and up) - Morning to understand - LinagoraAngular (v2 and up) - Morning to understand - Linagora
Angular (v2 and up) - Morning to understand - LinagoraLINAGORA
 
Django simplified : by weever mbakaya
Django simplified : by weever mbakayaDjango simplified : by weever mbakaya
Django simplified : by weever mbakayaMbakaya Kwatukha
 
How we realized SOA by Python at PyCon JP 2015
How we realized SOA by Python at PyCon JP 2015How we realized SOA by Python at PyCon JP 2015
How we realized SOA by Python at PyCon JP 2015hirokiky
 
Raising ux bar with offline first design
Raising ux bar with offline first designRaising ux bar with offline first design
Raising ux bar with offline first designKyrylo Reznykov
 
PyCon AU 2012 - Debugging Live Python Web Applications
PyCon AU 2012 - Debugging Live Python Web ApplicationsPyCon AU 2012 - Debugging Live Python Web Applications
PyCon AU 2012 - Debugging Live Python Web ApplicationsGraham Dumpleton
 
Hands on react native
Hands on react nativeHands on react native
Hands on react nativeJay Nagar
 

Similar a Learn Django with this Free Web Service Plan (20)

Introduction to Django
Introduction to DjangoIntroduction to Django
Introduction to Django
 
Web Development in Django
Web Development in DjangoWeb Development in Django
Web Development in Django
 
10 things you should know about django
10 things you should know about django10 things you should know about django
10 things you should know about django
 
Django PPT.pptx
Django PPT.pptxDjango PPT.pptx
Django PPT.pptx
 
Django Framework Overview forNon-Python Developers
Django Framework Overview forNon-Python DevelopersDjango Framework Overview forNon-Python Developers
Django Framework Overview forNon-Python Developers
 
Django Girls Tutorial
Django Girls TutorialDjango Girls Tutorial
Django Girls Tutorial
 
Akash rajguru project report sem v
Akash rajguru project report sem vAkash rajguru project report sem v
Akash rajguru project report sem v
 
python full stack course in hyderabad...
python full stack course in hyderabad...python full stack course in hyderabad...
python full stack course in hyderabad...
 
python full stack course in hyderabad...
python full stack course in hyderabad...python full stack course in hyderabad...
python full stack course in hyderabad...
 
React django
React djangoReact django
React django
 
20 tips for website performance
20 tips for website performance20 tips for website performance
20 tips for website performance
 
EuroPython 2013 - Python3 TurboGears Training
EuroPython 2013 - Python3 TurboGears TrainingEuroPython 2013 - Python3 TurboGears Training
EuroPython 2013 - Python3 TurboGears Training
 
AngularJS Basics
AngularJS BasicsAngularJS Basics
AngularJS Basics
 
Angular (v2 and up) - Morning to understand - Linagora
Angular (v2 and up) - Morning to understand - LinagoraAngular (v2 and up) - Morning to understand - Linagora
Angular (v2 and up) - Morning to understand - Linagora
 
Django simplified : by weever mbakaya
Django simplified : by weever mbakayaDjango simplified : by weever mbakaya
Django simplified : by weever mbakaya
 
How we realized SOA by Python at PyCon JP 2015
How we realized SOA by Python at PyCon JP 2015How we realized SOA by Python at PyCon JP 2015
How we realized SOA by Python at PyCon JP 2015
 
Raising ux bar with offline first design
Raising ux bar with offline first designRaising ux bar with offline first design
Raising ux bar with offline first design
 
PyCon AU 2012 - Debugging Live Python Web Applications
PyCon AU 2012 - Debugging Live Python Web ApplicationsPyCon AU 2012 - Debugging Live Python Web Applications
PyCon AU 2012 - Debugging Live Python Web Applications
 
Hands on react native
Hands on react nativeHands on react native
Hands on react native
 
Dust.js
Dust.jsDust.js
Dust.js
 

Último

Sending Calendar Invites on SES and Calendarsnack.pdf
Sending Calendar Invites on SES and Calendarsnack.pdfSending Calendar Invites on SES and Calendarsnack.pdf
Sending Calendar Invites on SES and Calendarsnack.pdf31events.com
 
How To Manage Restaurant Staff -BTRESTRO
How To Manage Restaurant Staff -BTRESTROHow To Manage Restaurant Staff -BTRESTRO
How To Manage Restaurant Staff -BTRESTROmotivationalword821
 
SuccessFactors 1H 2024 Release - Sneak-Peek by Deloitte Germany
SuccessFactors 1H 2024 Release - Sneak-Peek by Deloitte GermanySuccessFactors 1H 2024 Release - Sneak-Peek by Deloitte Germany
SuccessFactors 1H 2024 Release - Sneak-Peek by Deloitte GermanyChristoph Pohl
 
MYjobs Presentation Django-based project
MYjobs Presentation Django-based projectMYjobs Presentation Django-based project
MYjobs Presentation Django-based projectAnoyGreter
 
Automate your Kamailio Test Calls - Kamailio World 2024
Automate your Kamailio Test Calls - Kamailio World 2024Automate your Kamailio Test Calls - Kamailio World 2024
Automate your Kamailio Test Calls - Kamailio World 2024Andreas Granig
 
SensoDat: Simulation-based Sensor Dataset of Self-driving Cars
SensoDat: Simulation-based Sensor Dataset of Self-driving CarsSensoDat: Simulation-based Sensor Dataset of Self-driving Cars
SensoDat: Simulation-based Sensor Dataset of Self-driving CarsChristian Birchler
 
UI5ers live - Custom Controls wrapping 3rd-party libs.pptx
UI5ers live - Custom Controls wrapping 3rd-party libs.pptxUI5ers live - Custom Controls wrapping 3rd-party libs.pptx
UI5ers live - Custom Controls wrapping 3rd-party libs.pptxAndreas Kunz
 
PREDICTING RIVER WATER QUALITY ppt presentation
PREDICTING  RIVER  WATER QUALITY  ppt presentationPREDICTING  RIVER  WATER QUALITY  ppt presentation
PREDICTING RIVER WATER QUALITY ppt presentationvaddepallysandeep122
 
Taming Distributed Systems: Key Insights from Wix's Large-Scale Experience - ...
Taming Distributed Systems: Key Insights from Wix's Large-Scale Experience - ...Taming Distributed Systems: Key Insights from Wix's Large-Scale Experience - ...
Taming Distributed Systems: Key Insights from Wix's Large-Scale Experience - ...Natan Silnitsky
 
Unveiling Design Patterns: A Visual Guide with UML Diagrams
Unveiling Design Patterns: A Visual Guide with UML DiagramsUnveiling Design Patterns: A Visual Guide with UML Diagrams
Unveiling Design Patterns: A Visual Guide with UML DiagramsAhmed Mohamed
 
What is Advanced Excel and what are some best practices for designing and cre...
What is Advanced Excel and what are some best practices for designing and cre...What is Advanced Excel and what are some best practices for designing and cre...
What is Advanced Excel and what are some best practices for designing and cre...Technogeeks
 
Machine Learning Software Engineering Patterns and Their Engineering
Machine Learning Software Engineering Patterns and Their EngineeringMachine Learning Software Engineering Patterns and Their Engineering
Machine Learning Software Engineering Patterns and Their EngineeringHironori Washizaki
 
Maximizing Efficiency and Profitability with OnePlan’s Professional Service A...
Maximizing Efficiency and Profitability with OnePlan’s Professional Service A...Maximizing Efficiency and Profitability with OnePlan’s Professional Service A...
Maximizing Efficiency and Profitability with OnePlan’s Professional Service A...OnePlan Solutions
 
VK Business Profile - provides IT solutions and Web Development
VK Business Profile - provides IT solutions and Web DevelopmentVK Business Profile - provides IT solutions and Web Development
VK Business Profile - provides IT solutions and Web Developmentvyaparkranti
 
SpotFlow: Tracking Method Calls and States at Runtime
SpotFlow: Tracking Method Calls and States at RuntimeSpotFlow: Tracking Method Calls and States at Runtime
SpotFlow: Tracking Method Calls and States at Runtimeandrehoraa
 
20240415 [Container Plumbing Days] Usernetes Gen2 - Kubernetes in Rootless Do...
20240415 [Container Plumbing Days] Usernetes Gen2 - Kubernetes in Rootless Do...20240415 [Container Plumbing Days] Usernetes Gen2 - Kubernetes in Rootless Do...
20240415 [Container Plumbing Days] Usernetes Gen2 - Kubernetes in Rootless Do...Akihiro Suda
 
How to submit a standout Adobe Champion Application
How to submit a standout Adobe Champion ApplicationHow to submit a standout Adobe Champion Application
How to submit a standout Adobe Champion ApplicationBradBedford3
 
GOING AOT WITH GRAALVM – DEVOXX GREECE.pdf
GOING AOT WITH GRAALVM – DEVOXX GREECE.pdfGOING AOT WITH GRAALVM – DEVOXX GREECE.pdf
GOING AOT WITH GRAALVM – DEVOXX GREECE.pdfAlina Yurenko
 
Tech Tuesday - Mastering Time Management Unlock the Power of OnePlan's Timesh...
Tech Tuesday - Mastering Time Management Unlock the Power of OnePlan's Timesh...Tech Tuesday - Mastering Time Management Unlock the Power of OnePlan's Timesh...
Tech Tuesday - Mastering Time Management Unlock the Power of OnePlan's Timesh...OnePlan Solutions
 

Último (20)

Sending Calendar Invites on SES and Calendarsnack.pdf
Sending Calendar Invites on SES and Calendarsnack.pdfSending Calendar Invites on SES and Calendarsnack.pdf
Sending Calendar Invites on SES and Calendarsnack.pdf
 
How To Manage Restaurant Staff -BTRESTRO
How To Manage Restaurant Staff -BTRESTROHow To Manage Restaurant Staff -BTRESTRO
How To Manage Restaurant Staff -BTRESTRO
 
SuccessFactors 1H 2024 Release - Sneak-Peek by Deloitte Germany
SuccessFactors 1H 2024 Release - Sneak-Peek by Deloitte GermanySuccessFactors 1H 2024 Release - Sneak-Peek by Deloitte Germany
SuccessFactors 1H 2024 Release - Sneak-Peek by Deloitte Germany
 
MYjobs Presentation Django-based project
MYjobs Presentation Django-based projectMYjobs Presentation Django-based project
MYjobs Presentation Django-based project
 
Automate your Kamailio Test Calls - Kamailio World 2024
Automate your Kamailio Test Calls - Kamailio World 2024Automate your Kamailio Test Calls - Kamailio World 2024
Automate your Kamailio Test Calls - Kamailio World 2024
 
Hot Sexy call girls in Patel Nagar🔝 9953056974 🔝 escort Service
Hot Sexy call girls in Patel Nagar🔝 9953056974 🔝 escort ServiceHot Sexy call girls in Patel Nagar🔝 9953056974 🔝 escort Service
Hot Sexy call girls in Patel Nagar🔝 9953056974 🔝 escort Service
 
SensoDat: Simulation-based Sensor Dataset of Self-driving Cars
SensoDat: Simulation-based Sensor Dataset of Self-driving CarsSensoDat: Simulation-based Sensor Dataset of Self-driving Cars
SensoDat: Simulation-based Sensor Dataset of Self-driving Cars
 
UI5ers live - Custom Controls wrapping 3rd-party libs.pptx
UI5ers live - Custom Controls wrapping 3rd-party libs.pptxUI5ers live - Custom Controls wrapping 3rd-party libs.pptx
UI5ers live - Custom Controls wrapping 3rd-party libs.pptx
 
PREDICTING RIVER WATER QUALITY ppt presentation
PREDICTING  RIVER  WATER QUALITY  ppt presentationPREDICTING  RIVER  WATER QUALITY  ppt presentation
PREDICTING RIVER WATER QUALITY ppt presentation
 
Taming Distributed Systems: Key Insights from Wix's Large-Scale Experience - ...
Taming Distributed Systems: Key Insights from Wix's Large-Scale Experience - ...Taming Distributed Systems: Key Insights from Wix's Large-Scale Experience - ...
Taming Distributed Systems: Key Insights from Wix's Large-Scale Experience - ...
 
Unveiling Design Patterns: A Visual Guide with UML Diagrams
Unveiling Design Patterns: A Visual Guide with UML DiagramsUnveiling Design Patterns: A Visual Guide with UML Diagrams
Unveiling Design Patterns: A Visual Guide with UML Diagrams
 
What is Advanced Excel and what are some best practices for designing and cre...
What is Advanced Excel and what are some best practices for designing and cre...What is Advanced Excel and what are some best practices for designing and cre...
What is Advanced Excel and what are some best practices for designing and cre...
 
Machine Learning Software Engineering Patterns and Their Engineering
Machine Learning Software Engineering Patterns and Their EngineeringMachine Learning Software Engineering Patterns and Their Engineering
Machine Learning Software Engineering Patterns and Their Engineering
 
Maximizing Efficiency and Profitability with OnePlan’s Professional Service A...
Maximizing Efficiency and Profitability with OnePlan’s Professional Service A...Maximizing Efficiency and Profitability with OnePlan’s Professional Service A...
Maximizing Efficiency and Profitability with OnePlan’s Professional Service A...
 
VK Business Profile - provides IT solutions and Web Development
VK Business Profile - provides IT solutions and Web DevelopmentVK Business Profile - provides IT solutions and Web Development
VK Business Profile - provides IT solutions and Web Development
 
SpotFlow: Tracking Method Calls and States at Runtime
SpotFlow: Tracking Method Calls and States at RuntimeSpotFlow: Tracking Method Calls and States at Runtime
SpotFlow: Tracking Method Calls and States at Runtime
 
20240415 [Container Plumbing Days] Usernetes Gen2 - Kubernetes in Rootless Do...
20240415 [Container Plumbing Days] Usernetes Gen2 - Kubernetes in Rootless Do...20240415 [Container Plumbing Days] Usernetes Gen2 - Kubernetes in Rootless Do...
20240415 [Container Plumbing Days] Usernetes Gen2 - Kubernetes in Rootless Do...
 
How to submit a standout Adobe Champion Application
How to submit a standout Adobe Champion ApplicationHow to submit a standout Adobe Champion Application
How to submit a standout Adobe Champion Application
 
GOING AOT WITH GRAALVM – DEVOXX GREECE.pdf
GOING AOT WITH GRAALVM – DEVOXX GREECE.pdfGOING AOT WITH GRAALVM – DEVOXX GREECE.pdf
GOING AOT WITH GRAALVM – DEVOXX GREECE.pdf
 
Tech Tuesday - Mastering Time Management Unlock the Power of OnePlan's Timesh...
Tech Tuesday - Mastering Time Management Unlock the Power of OnePlan's Timesh...Tech Tuesday - Mastering Time Management Unlock the Power of OnePlan's Timesh...
Tech Tuesday - Mastering Time Management Unlock the Power of OnePlan's Timesh...
 

Learn Django with this Free Web Service Plan