SlideShare a Scribd company logo
Python meetup -2
Vic Yang
How to run a
program?
Python Virtual Machine
Program Execution
In interactive shell:	
	 print ‘hello world’ # hello world	
	 print 2 ** 100	# 1267650600228229491496703205376	
In command line:	
	 python hello.py
Python Virtual Machine
.py VS. .pyc
1. .py is the source code of Python
2. .pyc is the byte-compiled code of .py
3. .pyc can be executed in PVM
Python Virtual Machine
.py .pyc PVM
source byte code execution
PVM is a huge loop that executes our code one by one.
.pyc
A file contains byte-code interpreted from .py
Boost the execution time.
Rebuild automatically if .py changed.
The text in .pyc file is not binary code.
Python Implementation
CPython - ported from ANSI C, standard
implementation.
Jython - compiled Python code to Java byte-
code and executed on JVM
IronPython - similar as Jython implemented
Input
commands
Input
standard input	
	 a = “hello world”	
	 print a	
	 a = raw_input()	
	 print a	
sys.argv[1]	
	 import sys	
	 print sys.argv[1]	
	 > python script1.py
script1.py
Module import and reload
script4.py	
print ‘hello world’	
print 2 ** 100	
title = ‘The Meaning
of life’
IDLE	
>>>import script4	
>>>reload(script4)	
>>>print script4.title
Module import and reload
threenames.py	
a = ‘dead’	
b = ‘parrot’	
c = ‘sketch’	
print a, b ,c
IDLE	
>>>import three names	
>>>threenames.b, 	
threenames.c	
>>>from threenames
import a, b, c
Practice
Practice
Fibonacci sequence
CheckIO
Fibonacci sequence
def fib():	
	 	 x = 0	
	 	 y = 1	
	 	 while 1:	
	 	 	 	 yield x	
	 	 	 	 x, y = y, x + y	
!
g = fib()	
for i in range(9):	
	 print g.next()

More Related Content

What's hot

The Conf 2019 - Elixir - Emerson Macedo
The Conf 2019 - Elixir - Emerson MacedoThe Conf 2019 - Elixir - Emerson Macedo
The Conf 2019 - Elixir - Emerson Macedo
Emerson Macedo
 
Logging library migrations - A case study for the Apache Software Foundation ...
Logging library migrations - A case study for the Apache Software Foundation ...Logging library migrations - A case study for the Apache Software Foundation ...
Logging library migrations - A case study for the Apache Software Foundation ...
corpaulbezemer
 
What is new with JavaScript in Gnome: The 2021 edition
What is new with JavaScript in Gnome: The 2021 editionWhat is new with JavaScript in Gnome: The 2021 edition
What is new with JavaScript in Gnome: The 2021 edition
Igalia
 
Why is a[1] fast than a.get(1)
Why is a[1]  fast than a.get(1)Why is a[1]  fast than a.get(1)
Why is a[1] fast than a.get(1)
kao kuo-tung
 
Ansible on AWS
Ansible on AWSAnsible on AWS
Ansible on AWS
Diego Pacheco
 
Kubernetes at Datadog Scale - Ara Pulido
Kubernetes at Datadog Scale - Ara PulidoKubernetes at Datadog Scale - Ara Pulido
Kubernetes at Datadog Scale - Ara Pulido
PROIDEA
 
grep.metacpan.org
grep.metacpan.orggrep.metacpan.org
grep.metacpan.org
ℕicolas ℝ.
 
Runtime Bytecode Transformation for Smalltalk
Runtime Bytecode Transformation for SmalltalkRuntime Bytecode Transformation for Smalltalk
Runtime Bytecode Transformation for Smalltalk
Marcus Denker
 
Async await functions in ruby
Async await functions in rubyAsync await functions in ruby
Async await functions in ruby
Yusuke Sato
 
p4alu: Arithmetic Logic Unit in P4
p4alu: Arithmetic Logic Unit in P4p4alu: Arithmetic Logic Unit in P4
p4alu: Arithmetic Logic Unit in P4
Kentaro Ebisawa
 
Python仮想環境構築の基礎と ツールの比較
Python仮想環境構築の基礎と ツールの比較Python仮想環境構築の基礎と ツールの比較
Python仮想環境構築の基礎と ツールの比較
cocodrips
 
PyParis2017 / Tutorial transcript - Function-as-a-service : a pythonic perspe...
PyParis2017 / Tutorial transcript - Function-as-a-service : a pythonic perspe...PyParis2017 / Tutorial transcript - Function-as-a-service : a pythonic perspe...
PyParis2017 / Tutorial transcript - Function-as-a-service : a pythonic perspe...
Pôle Systematic Paris-Region
 
New Process/Thread Runtime
New Process/Thread Runtime	New Process/Thread Runtime
New Process/Thread Runtime
Linaro
 
IL: 失われたプロトコル
IL: 失われたプロトコルIL: 失われたプロトコル
IL: 失われたプロトコル
Ryousei Takano
 
Rpy2 demonstration
Rpy2 demonstrationRpy2 demonstration
Rpy2 demonstration
Ashwini Mathur
 
走向开源:提交CPAN模块Step by Step
走向开源:提交CPAN模块Step by Step走向开源:提交CPAN模块Step by Step
走向开源:提交CPAN模块Step by Step
pluschen
 
Network & Filesystem: Doing less cross rings memory copy
Network & Filesystem: Doing less cross rings memory copyNetwork & Filesystem: Doing less cross rings memory copy
Network & Filesystem: Doing less cross rings memory copy
Scaleway
 

What's hot (17)

The Conf 2019 - Elixir - Emerson Macedo
The Conf 2019 - Elixir - Emerson MacedoThe Conf 2019 - Elixir - Emerson Macedo
The Conf 2019 - Elixir - Emerson Macedo
 
Logging library migrations - A case study for the Apache Software Foundation ...
Logging library migrations - A case study for the Apache Software Foundation ...Logging library migrations - A case study for the Apache Software Foundation ...
Logging library migrations - A case study for the Apache Software Foundation ...
 
What is new with JavaScript in Gnome: The 2021 edition
What is new with JavaScript in Gnome: The 2021 editionWhat is new with JavaScript in Gnome: The 2021 edition
What is new with JavaScript in Gnome: The 2021 edition
 
Why is a[1] fast than a.get(1)
Why is a[1]  fast than a.get(1)Why is a[1]  fast than a.get(1)
Why is a[1] fast than a.get(1)
 
Ansible on AWS
Ansible on AWSAnsible on AWS
Ansible on AWS
 
Kubernetes at Datadog Scale - Ara Pulido
Kubernetes at Datadog Scale - Ara PulidoKubernetes at Datadog Scale - Ara Pulido
Kubernetes at Datadog Scale - Ara Pulido
 
grep.metacpan.org
grep.metacpan.orggrep.metacpan.org
grep.metacpan.org
 
Runtime Bytecode Transformation for Smalltalk
Runtime Bytecode Transformation for SmalltalkRuntime Bytecode Transformation for Smalltalk
Runtime Bytecode Transformation for Smalltalk
 
Async await functions in ruby
Async await functions in rubyAsync await functions in ruby
Async await functions in ruby
 
p4alu: Arithmetic Logic Unit in P4
p4alu: Arithmetic Logic Unit in P4p4alu: Arithmetic Logic Unit in P4
p4alu: Arithmetic Logic Unit in P4
 
Python仮想環境構築の基礎と ツールの比較
Python仮想環境構築の基礎と ツールの比較Python仮想環境構築の基礎と ツールの比較
Python仮想環境構築の基礎と ツールの比較
 
PyParis2017 / Tutorial transcript - Function-as-a-service : a pythonic perspe...
PyParis2017 / Tutorial transcript - Function-as-a-service : a pythonic perspe...PyParis2017 / Tutorial transcript - Function-as-a-service : a pythonic perspe...
PyParis2017 / Tutorial transcript - Function-as-a-service : a pythonic perspe...
 
New Process/Thread Runtime
New Process/Thread Runtime	New Process/Thread Runtime
New Process/Thread Runtime
 
IL: 失われたプロトコル
IL: 失われたプロトコルIL: 失われたプロトコル
IL: 失われたプロトコル
 
Rpy2 demonstration
Rpy2 demonstrationRpy2 demonstration
Rpy2 demonstration
 
走向开源:提交CPAN模块Step by Step
走向开源:提交CPAN模块Step by Step走向开源:提交CPAN模块Step by Step
走向开源:提交CPAN模块Step by Step
 
Network & Filesystem: Doing less cross rings memory copy
Network & Filesystem: Doing less cross rings memory copyNetwork & Filesystem: Doing less cross rings memory copy
Network & Filesystem: Doing less cross rings memory copy
 

Viewers also liked

Homework for ITB
Homework for ITBHomework for ITB
Homework for ITB
akelanam
 
CECAFÉ - Relatório Mensal FEVEREIRO 2016
CECAFÉ - Relatório Mensal FEVEREIRO 2016CECAFÉ - Relatório Mensal FEVEREIRO 2016
CECAFÉ - Relatório Mensal FEVEREIRO 2016
Luiz Valeriano
 
LinkedIn foredrag hos Krifa i Aarhus
LinkedIn foredrag hos Krifa i AarhusLinkedIn foredrag hos Krifa i Aarhus
LinkedIn foredrag hos Krifa i AarhusMorten Vium
 
Relatório sobre o mercado de café da OIC - Junho 2016
Relatório sobre o mercado de café da OIC - Junho 2016Relatório sobre o mercado de café da OIC - Junho 2016
Relatório sobre o mercado de café da OIC - Junho 2016
Luiz Valeriano
 
CECAFÉ - Relatório Mensal SETEMBRO 2016
CECAFÉ - Relatório Mensal SETEMBRO 2016CECAFÉ - Relatório Mensal SETEMBRO 2016
CECAFÉ - Relatório Mensal SETEMBRO 2016
Luiz Valeriano
 
Seminário do Café do CCCMG
Seminário do Café do CCCMGSeminário do Café do CCCMG
Seminário do Café do CCCMG
Luiz Valeriano
 
Ardilla
ArdillaArdilla
Ardilla
Carmen Rocio
 
Havicus Sri Lanka - Nilaveli Golden Paradise - villa AAA1Z
Havicus Sri Lanka - Nilaveli Golden Paradise - villa AAA1ZHavicus Sri Lanka - Nilaveli Golden Paradise - villa AAA1Z
Havicus Sri Lanka - Nilaveli Golden Paradise - villa AAA1Z
HavicusSriLanka
 
CECAFÉ - Relatório Mensal JULHO 2016
CECAFÉ - Relatório Mensal JULHO 2016CECAFÉ - Relatório Mensal JULHO 2016
CECAFÉ - Relatório Mensal JULHO 2016
Luiz Valeriano
 
Relatório sobre o mercado de café da OIC - Outubro 2016
Relatório sobre o mercado de café da OIC - Outubro 2016Relatório sobre o mercado de café da OIC - Outubro 2016
Relatório sobre o mercado de café da OIC - Outubro 2016
Luiz Valeriano
 
LinkedIn foredrag hos FTF-A i Odense
LinkedIn foredrag hos FTF-A i OdenseLinkedIn foredrag hos FTF-A i Odense
LinkedIn foredrag hos FTF-A i Odense
Morten Vium
 
Python meetup 1
Python meetup 1Python meetup 1
Python meetup 1
Vic Yang
 
En las fuentes de la alegria san francisco de sales -canonigo f.vidal
En las fuentes de la alegria   san francisco de sales -canonigo f.vidalEn las fuentes de la alegria   san francisco de sales -canonigo f.vidal
En las fuentes de la alegria san francisco de sales -canonigo f.vidal
Lola González Barbado
 
LinkedIn seminar - Workindenmark
LinkedIn seminar - WorkindenmarkLinkedIn seminar - Workindenmark
LinkedIn seminar - Workindenmark
Morten Vium
 
Pesquisa & imprensa: orientações para um bom relacionamento
Pesquisa & imprensa: orientações para um bom relacionamentoPesquisa & imprensa: orientações para um bom relacionamento
Pesquisa & imprensa: orientações para um bom relacionamento
Luiz Valeriano
 
A primera-guerra-mundial-1914-1918
A primera-guerra-mundial-1914-1918A primera-guerra-mundial-1914-1918
A primera-guerra-mundial-1914-1918samudiego
 
CECAFÉ - Relatório Mensal MAIO 2016
CECAFÉ - Relatório Mensal MAIO 2016CECAFÉ - Relatório Mensal MAIO 2016
CECAFÉ - Relatório Mensal MAIO 2016
Luiz Valeriano
 
Baseball
BaseballBaseball
Baseball
billdough
 
CECAFÉ - Relatório Mensal ABRIL 2016
CECAFÉ - Relatório Mensal ABRIL 2016CECAFÉ - Relatório Mensal ABRIL 2016
CECAFÉ - Relatório Mensal ABRIL 2016
Luiz Valeriano
 
копия презентация обнов
копия презентация обновкопия презентация обнов
копия презентация обновtanstantin
 

Viewers also liked (20)

Homework for ITB
Homework for ITBHomework for ITB
Homework for ITB
 
CECAFÉ - Relatório Mensal FEVEREIRO 2016
CECAFÉ - Relatório Mensal FEVEREIRO 2016CECAFÉ - Relatório Mensal FEVEREIRO 2016
CECAFÉ - Relatório Mensal FEVEREIRO 2016
 
LinkedIn foredrag hos Krifa i Aarhus
LinkedIn foredrag hos Krifa i AarhusLinkedIn foredrag hos Krifa i Aarhus
LinkedIn foredrag hos Krifa i Aarhus
 
Relatório sobre o mercado de café da OIC - Junho 2016
Relatório sobre o mercado de café da OIC - Junho 2016Relatório sobre o mercado de café da OIC - Junho 2016
Relatório sobre o mercado de café da OIC - Junho 2016
 
CECAFÉ - Relatório Mensal SETEMBRO 2016
CECAFÉ - Relatório Mensal SETEMBRO 2016CECAFÉ - Relatório Mensal SETEMBRO 2016
CECAFÉ - Relatório Mensal SETEMBRO 2016
 
Seminário do Café do CCCMG
Seminário do Café do CCCMGSeminário do Café do CCCMG
Seminário do Café do CCCMG
 
Ardilla
ArdillaArdilla
Ardilla
 
Havicus Sri Lanka - Nilaveli Golden Paradise - villa AAA1Z
Havicus Sri Lanka - Nilaveli Golden Paradise - villa AAA1ZHavicus Sri Lanka - Nilaveli Golden Paradise - villa AAA1Z
Havicus Sri Lanka - Nilaveli Golden Paradise - villa AAA1Z
 
CECAFÉ - Relatório Mensal JULHO 2016
CECAFÉ - Relatório Mensal JULHO 2016CECAFÉ - Relatório Mensal JULHO 2016
CECAFÉ - Relatório Mensal JULHO 2016
 
Relatório sobre o mercado de café da OIC - Outubro 2016
Relatório sobre o mercado de café da OIC - Outubro 2016Relatório sobre o mercado de café da OIC - Outubro 2016
Relatório sobre o mercado de café da OIC - Outubro 2016
 
LinkedIn foredrag hos FTF-A i Odense
LinkedIn foredrag hos FTF-A i OdenseLinkedIn foredrag hos FTF-A i Odense
LinkedIn foredrag hos FTF-A i Odense
 
Python meetup 1
Python meetup 1Python meetup 1
Python meetup 1
 
En las fuentes de la alegria san francisco de sales -canonigo f.vidal
En las fuentes de la alegria   san francisco de sales -canonigo f.vidalEn las fuentes de la alegria   san francisco de sales -canonigo f.vidal
En las fuentes de la alegria san francisco de sales -canonigo f.vidal
 
LinkedIn seminar - Workindenmark
LinkedIn seminar - WorkindenmarkLinkedIn seminar - Workindenmark
LinkedIn seminar - Workindenmark
 
Pesquisa & imprensa: orientações para um bom relacionamento
Pesquisa & imprensa: orientações para um bom relacionamentoPesquisa & imprensa: orientações para um bom relacionamento
Pesquisa & imprensa: orientações para um bom relacionamento
 
A primera-guerra-mundial-1914-1918
A primera-guerra-mundial-1914-1918A primera-guerra-mundial-1914-1918
A primera-guerra-mundial-1914-1918
 
CECAFÉ - Relatório Mensal MAIO 2016
CECAFÉ - Relatório Mensal MAIO 2016CECAFÉ - Relatório Mensal MAIO 2016
CECAFÉ - Relatório Mensal MAIO 2016
 
Baseball
BaseballBaseball
Baseball
 
CECAFÉ - Relatório Mensal ABRIL 2016
CECAFÉ - Relatório Mensal ABRIL 2016CECAFÉ - Relatório Mensal ABRIL 2016
CECAFÉ - Relatório Mensal ABRIL 2016
 
копия презентация обнов
копия презентация обновкопия презентация обнов
копия презентация обнов
 

Similar to Python meetup 2

Python Programming Introduction - II
Python Programming Introduction  - IIPython Programming Introduction  - II
Python Programming Introduction - II
Arnab Chakraborty
 
Pyjion - a JIT extension system for CPython
Pyjion - a JIT extension system for CPythonPyjion - a JIT extension system for CPython
Pyjion - a JIT extension system for CPython
Anthony Shaw
 
Writing a Python C extension
Writing a Python C extensionWriting a Python C extension
Writing a Python C extension
Sqreen
 
PyCon2022 - Building Python Extensions
PyCon2022 - Building Python ExtensionsPyCon2022 - Building Python Extensions
PyCon2022 - Building Python Extensions
Henry Schreiner
 
Python Tutorial | Python Programming Language
Python Tutorial | Python Programming LanguagePython Tutorial | Python Programming Language
Python Tutorial | Python Programming Language
anaveenkumar4
 
Introduction python
Introduction pythonIntroduction python
Introduction python
Jumbo Techno e_Learning
 
First python project
First python projectFirst python project
First python project
Neetu Jain
 
intro.pptx (1).pdf
intro.pptx (1).pdfintro.pptx (1).pdf
intro.pptx (1).pdf
ANIKULSAIKH
 
5.Playtime
5.Playtime5.Playtime
5.Playtime
Mayank Joneja
 
The Python Book_ The ultimate guide to coding with Python ( PDFDrive ).pdf
The Python Book_ The ultimate guide to coding with Python ( PDFDrive ).pdfThe Python Book_ The ultimate guide to coding with Python ( PDFDrive ).pdf
The Python Book_ The ultimate guide to coding with Python ( PDFDrive ).pdf
ssuser8b3cdd
 
OpenGurukul : Language : Python
OpenGurukul : Language : PythonOpenGurukul : Language : Python
OpenGurukul : Language : Python
Open Gurukul
 
Introduction to python for Beginners
Introduction to python for Beginners Introduction to python for Beginners
Introduction to python for Beginners
Sujith Kumar
 
Python Flavors
Python FlavorsPython Flavors
Python Flavors
Geison Goes
 
JIT compilation for CPython
JIT compilation for CPythonJIT compilation for CPython
JIT compilation for CPython
delimitry
 
Chapter 1 Class 12 Computer Science Unit 1
Chapter 1 Class 12 Computer Science Unit 1Chapter 1 Class 12 Computer Science Unit 1
Chapter 1 Class 12 Computer Science Unit 1
ssusera7a08a
 
Python Programming
Python ProgrammingPython Programming
Python Programming
sameer patil
 
Revision of the basics of python1 (1).pdf
Revision of the basics of python1 (1).pdfRevision of the basics of python1 (1).pdf
Revision of the basics of python1 (1).pdf
optimusnotch44
 
Python tutorial for beginners - Tib academy
Python tutorial for beginners - Tib academyPython tutorial for beginners - Tib academy
Python tutorial for beginners - Tib academy
TIB Academy
 
Two-level Just-in-Time Compilation with One Interpreter and One Engine
Two-level Just-in-Time Compilation with One Interpreter and One EngineTwo-level Just-in-Time Compilation with One Interpreter and One Engine
Two-level Just-in-Time Compilation with One Interpreter and One Engine
Yusuke Izawa
 
Tutorial_Python1.pdf
Tutorial_Python1.pdfTutorial_Python1.pdf
Tutorial_Python1.pdf
MuzamilFaiz
 

Similar to Python meetup 2 (20)

Python Programming Introduction - II
Python Programming Introduction  - IIPython Programming Introduction  - II
Python Programming Introduction - II
 
Pyjion - a JIT extension system for CPython
Pyjion - a JIT extension system for CPythonPyjion - a JIT extension system for CPython
Pyjion - a JIT extension system for CPython
 
Writing a Python C extension
Writing a Python C extensionWriting a Python C extension
Writing a Python C extension
 
PyCon2022 - Building Python Extensions
PyCon2022 - Building Python ExtensionsPyCon2022 - Building Python Extensions
PyCon2022 - Building Python Extensions
 
Python Tutorial | Python Programming Language
Python Tutorial | Python Programming LanguagePython Tutorial | Python Programming Language
Python Tutorial | Python Programming Language
 
Introduction python
Introduction pythonIntroduction python
Introduction python
 
First python project
First python projectFirst python project
First python project
 
intro.pptx (1).pdf
intro.pptx (1).pdfintro.pptx (1).pdf
intro.pptx (1).pdf
 
5.Playtime
5.Playtime5.Playtime
5.Playtime
 
The Python Book_ The ultimate guide to coding with Python ( PDFDrive ).pdf
The Python Book_ The ultimate guide to coding with Python ( PDFDrive ).pdfThe Python Book_ The ultimate guide to coding with Python ( PDFDrive ).pdf
The Python Book_ The ultimate guide to coding with Python ( PDFDrive ).pdf
 
OpenGurukul : Language : Python
OpenGurukul : Language : PythonOpenGurukul : Language : Python
OpenGurukul : Language : Python
 
Introduction to python for Beginners
Introduction to python for Beginners Introduction to python for Beginners
Introduction to python for Beginners
 
Python Flavors
Python FlavorsPython Flavors
Python Flavors
 
JIT compilation for CPython
JIT compilation for CPythonJIT compilation for CPython
JIT compilation for CPython
 
Chapter 1 Class 12 Computer Science Unit 1
Chapter 1 Class 12 Computer Science Unit 1Chapter 1 Class 12 Computer Science Unit 1
Chapter 1 Class 12 Computer Science Unit 1
 
Python Programming
Python ProgrammingPython Programming
Python Programming
 
Revision of the basics of python1 (1).pdf
Revision of the basics of python1 (1).pdfRevision of the basics of python1 (1).pdf
Revision of the basics of python1 (1).pdf
 
Python tutorial for beginners - Tib academy
Python tutorial for beginners - Tib academyPython tutorial for beginners - Tib academy
Python tutorial for beginners - Tib academy
 
Two-level Just-in-Time Compilation with One Interpreter and One Engine
Two-level Just-in-Time Compilation with One Interpreter and One EngineTwo-level Just-in-Time Compilation with One Interpreter and One Engine
Two-level Just-in-Time Compilation with One Interpreter and One Engine
 
Tutorial_Python1.pdf
Tutorial_Python1.pdfTutorial_Python1.pdf
Tutorial_Python1.pdf
 

Recently uploaded

OpenMetadata Community Meeting - 5th June 2024
OpenMetadata Community Meeting - 5th June 2024OpenMetadata Community Meeting - 5th June 2024
OpenMetadata Community Meeting - 5th June 2024
OpenMetadata
 
SMS API Integration in Saudi Arabia| Best SMS API Service
SMS API Integration in Saudi Arabia| Best SMS API ServiceSMS API Integration in Saudi Arabia| Best SMS API Service
SMS API Integration in Saudi Arabia| Best SMS API Service
Yara Milbes
 
Essentials of Automations: The Art of Triggers and Actions in FME
Essentials of Automations: The Art of Triggers and Actions in FMEEssentials of Automations: The Art of Triggers and Actions in FME
Essentials of Automations: The Art of Triggers and Actions in FME
Safe Software
 
A Study of Variable-Role-based Feature Enrichment in Neural Models of Code
A Study of Variable-Role-based Feature Enrichment in Neural Models of CodeA Study of Variable-Role-based Feature Enrichment in Neural Models of Code
A Study of Variable-Role-based Feature Enrichment in Neural Models of Code
Aftab Hussain
 
SWEBOK and Education at FUSE Okinawa 2024
SWEBOK and Education at FUSE Okinawa 2024SWEBOK and Education at FUSE Okinawa 2024
SWEBOK and Education at FUSE Okinawa 2024
Hironori Washizaki
 
Atelier - Innover avec l’IA Générative et les graphes de connaissances
Atelier - Innover avec l’IA Générative et les graphes de connaissancesAtelier - Innover avec l’IA Générative et les graphes de connaissances
Atelier - Innover avec l’IA Générative et les graphes de connaissances
Neo4j
 
Need for Speed: Removing speed bumps from your Symfony projects ⚡️
Need for Speed: Removing speed bumps from your Symfony projects ⚡️Need for Speed: Removing speed bumps from your Symfony projects ⚡️
Need for Speed: Removing speed bumps from your Symfony projects ⚡️
Łukasz Chruściel
 
Unveiling the Advantages of Agile Software Development.pdf
Unveiling the Advantages of Agile Software Development.pdfUnveiling the Advantages of Agile Software Development.pdf
Unveiling the Advantages of Agile Software Development.pdf
brainerhub1
 
Using Query Store in Azure PostgreSQL to Understand Query Performance
Using Query Store in Azure PostgreSQL to Understand Query PerformanceUsing Query Store in Azure PostgreSQL to Understand Query Performance
Using Query Store in Azure PostgreSQL to Understand Query Performance
Grant Fritchey
 
Webinar On-Demand: Using Flutter for Embedded
Webinar On-Demand: Using Flutter for EmbeddedWebinar On-Demand: Using Flutter for Embedded
Webinar On-Demand: Using Flutter for Embedded
ICS
 
Neo4j - Product Vision and Knowledge Graphs - GraphSummit Paris
Neo4j - Product Vision and Knowledge Graphs - GraphSummit ParisNeo4j - Product Vision and Knowledge Graphs - GraphSummit Paris
Neo4j - Product Vision and Knowledge Graphs - GraphSummit Paris
Neo4j
 
Hand Rolled Applicative User Validation Code Kata
Hand Rolled Applicative User ValidationCode KataHand Rolled Applicative User ValidationCode Kata
Hand Rolled Applicative User Validation Code Kata
Philip Schwarz
 
LORRAINE ANDREI_LEQUIGAN_HOW TO USE ZOOM
LORRAINE ANDREI_LEQUIGAN_HOW TO USE ZOOMLORRAINE ANDREI_LEQUIGAN_HOW TO USE ZOOM
LORRAINE ANDREI_LEQUIGAN_HOW TO USE ZOOM
lorraineandreiamcidl
 
socradar-q1-2024-aviation-industry-report.pdf
socradar-q1-2024-aviation-industry-report.pdfsocradar-q1-2024-aviation-industry-report.pdf
socradar-q1-2024-aviation-industry-report.pdf
SOCRadar
 
Graspan: A Big Data System for Big Code Analysis
Graspan: A Big Data System for Big Code AnalysisGraspan: A Big Data System for Big Code Analysis
Graspan: A Big Data System for Big Code Analysis
Aftab Hussain
 
UI5con 2024 - Boost Your Development Experience with UI5 Tooling Extensions
UI5con 2024 - Boost Your Development Experience with UI5 Tooling ExtensionsUI5con 2024 - Boost Your Development Experience with UI5 Tooling Extensions
UI5con 2024 - Boost Your Development Experience with UI5 Tooling Extensions
Peter Muessig
 
ALGIT - Assembly Line for Green IT - Numbers, Data, Facts
ALGIT - Assembly Line for Green IT - Numbers, Data, FactsALGIT - Assembly Line for Green IT - Numbers, Data, Facts
ALGIT - Assembly Line for Green IT - Numbers, Data, Facts
Green Software Development
 
LORRAINE ANDREI_LEQUIGAN_HOW TO USE WHATSAPP.pptx
LORRAINE ANDREI_LEQUIGAN_HOW TO USE WHATSAPP.pptxLORRAINE ANDREI_LEQUIGAN_HOW TO USE WHATSAPP.pptx
LORRAINE ANDREI_LEQUIGAN_HOW TO USE WHATSAPP.pptx
lorraineandreiamcidl
 
Oracle 23c New Features For DBAs and Developers.pptx
Oracle 23c New Features For DBAs and Developers.pptxOracle 23c New Features For DBAs and Developers.pptx
Oracle 23c New Features For DBAs and Developers.pptx
Remote DBA Services
 
原版定制美国纽约州立大学奥尔巴尼分校毕业证学位证书原版一模一样
原版定制美国纽约州立大学奥尔巴尼分校毕业证学位证书原版一模一样原版定制美国纽约州立大学奥尔巴尼分校毕业证学位证书原版一模一样
原版定制美国纽约州立大学奥尔巴尼分校毕业证学位证书原版一模一样
mz5nrf0n
 

Recently uploaded (20)

OpenMetadata Community Meeting - 5th June 2024
OpenMetadata Community Meeting - 5th June 2024OpenMetadata Community Meeting - 5th June 2024
OpenMetadata Community Meeting - 5th June 2024
 
SMS API Integration in Saudi Arabia| Best SMS API Service
SMS API Integration in Saudi Arabia| Best SMS API ServiceSMS API Integration in Saudi Arabia| Best SMS API Service
SMS API Integration in Saudi Arabia| Best SMS API Service
 
Essentials of Automations: The Art of Triggers and Actions in FME
Essentials of Automations: The Art of Triggers and Actions in FMEEssentials of Automations: The Art of Triggers and Actions in FME
Essentials of Automations: The Art of Triggers and Actions in FME
 
A Study of Variable-Role-based Feature Enrichment in Neural Models of Code
A Study of Variable-Role-based Feature Enrichment in Neural Models of CodeA Study of Variable-Role-based Feature Enrichment in Neural Models of Code
A Study of Variable-Role-based Feature Enrichment in Neural Models of Code
 
SWEBOK and Education at FUSE Okinawa 2024
SWEBOK and Education at FUSE Okinawa 2024SWEBOK and Education at FUSE Okinawa 2024
SWEBOK and Education at FUSE Okinawa 2024
 
Atelier - Innover avec l’IA Générative et les graphes de connaissances
Atelier - Innover avec l’IA Générative et les graphes de connaissancesAtelier - Innover avec l’IA Générative et les graphes de connaissances
Atelier - Innover avec l’IA Générative et les graphes de connaissances
 
Need for Speed: Removing speed bumps from your Symfony projects ⚡️
Need for Speed: Removing speed bumps from your Symfony projects ⚡️Need for Speed: Removing speed bumps from your Symfony projects ⚡️
Need for Speed: Removing speed bumps from your Symfony projects ⚡️
 
Unveiling the Advantages of Agile Software Development.pdf
Unveiling the Advantages of Agile Software Development.pdfUnveiling the Advantages of Agile Software Development.pdf
Unveiling the Advantages of Agile Software Development.pdf
 
Using Query Store in Azure PostgreSQL to Understand Query Performance
Using Query Store in Azure PostgreSQL to Understand Query PerformanceUsing Query Store in Azure PostgreSQL to Understand Query Performance
Using Query Store in Azure PostgreSQL to Understand Query Performance
 
Webinar On-Demand: Using Flutter for Embedded
Webinar On-Demand: Using Flutter for EmbeddedWebinar On-Demand: Using Flutter for Embedded
Webinar On-Demand: Using Flutter for Embedded
 
Neo4j - Product Vision and Knowledge Graphs - GraphSummit Paris
Neo4j - Product Vision and Knowledge Graphs - GraphSummit ParisNeo4j - Product Vision and Knowledge Graphs - GraphSummit Paris
Neo4j - Product Vision and Knowledge Graphs - GraphSummit Paris
 
Hand Rolled Applicative User Validation Code Kata
Hand Rolled Applicative User ValidationCode KataHand Rolled Applicative User ValidationCode Kata
Hand Rolled Applicative User Validation Code Kata
 
LORRAINE ANDREI_LEQUIGAN_HOW TO USE ZOOM
LORRAINE ANDREI_LEQUIGAN_HOW TO USE ZOOMLORRAINE ANDREI_LEQUIGAN_HOW TO USE ZOOM
LORRAINE ANDREI_LEQUIGAN_HOW TO USE ZOOM
 
socradar-q1-2024-aviation-industry-report.pdf
socradar-q1-2024-aviation-industry-report.pdfsocradar-q1-2024-aviation-industry-report.pdf
socradar-q1-2024-aviation-industry-report.pdf
 
Graspan: A Big Data System for Big Code Analysis
Graspan: A Big Data System for Big Code AnalysisGraspan: A Big Data System for Big Code Analysis
Graspan: A Big Data System for Big Code Analysis
 
UI5con 2024 - Boost Your Development Experience with UI5 Tooling Extensions
UI5con 2024 - Boost Your Development Experience with UI5 Tooling ExtensionsUI5con 2024 - Boost Your Development Experience with UI5 Tooling Extensions
UI5con 2024 - Boost Your Development Experience with UI5 Tooling Extensions
 
ALGIT - Assembly Line for Green IT - Numbers, Data, Facts
ALGIT - Assembly Line for Green IT - Numbers, Data, FactsALGIT - Assembly Line for Green IT - Numbers, Data, Facts
ALGIT - Assembly Line for Green IT - Numbers, Data, Facts
 
LORRAINE ANDREI_LEQUIGAN_HOW TO USE WHATSAPP.pptx
LORRAINE ANDREI_LEQUIGAN_HOW TO USE WHATSAPP.pptxLORRAINE ANDREI_LEQUIGAN_HOW TO USE WHATSAPP.pptx
LORRAINE ANDREI_LEQUIGAN_HOW TO USE WHATSAPP.pptx
 
Oracle 23c New Features For DBAs and Developers.pptx
Oracle 23c New Features For DBAs and Developers.pptxOracle 23c New Features For DBAs and Developers.pptx
Oracle 23c New Features For DBAs and Developers.pptx
 
原版定制美国纽约州立大学奥尔巴尼分校毕业证学位证书原版一模一样
原版定制美国纽约州立大学奥尔巴尼分校毕业证学位证书原版一模一样原版定制美国纽约州立大学奥尔巴尼分校毕业证学位证书原版一模一样
原版定制美国纽约州立大学奥尔巴尼分校毕业证学位证书原版一模一样
 

Python meetup 2