SlideShare ist ein Scribd-Unternehmen logo
1 von 84
Downloaden Sie, um offline zu lesen
@pati_gallardo
TurtleSec
@pati_gallardo
Turtle
Sec
@pati_gallardo
TurtleSec
...actually before 2005
2
@pati_gallardo
TurtleSec
But I have no money
At least not for this...
3
@pati_gallardo
TurtleSec
What does it take?
- Development needs people = money
- Maintenance needs people = money
- Hosting = money
4
@pati_gallardo
TurtleSec
What is the “browser business model”?
Google Search
About 1$ per user/year… maybe
5
@pati_gallardo
TurtleSec
I don’t have a deal now at least
Google is only interested once you have users
There is no bootstrapping process
6
@pati_gallardo
TurtleSec
0 budget1 dev
Open Source
Heh...
More a stunt
than a plan
7
@pati_gallardo
TurtleSec
@pati_gallardo
Upside is…
...it’s 2020?
8
@pati_gallardo
Turtle
Sec
Trying to build an
Open Source browser
in 2020
Patricia Aas
Meeting C++ Online 2020
@pati_gallardo
Turtle
Sec
Patricia Aas - Trainer & Consultant
C++ Programmer, Application Security
Currently : TurtleSec
Previously : Vivaldi, Cisco Systems, Knowit, Opera Software
Master in Computer Science
Pronouns: she/her
First job, first browserSecondThird
Fourth
@pati_gallardo
TurtleSec
@pati_gallardo Clearly, I have a thing for browsers 11
@pati_gallardo
TurtleSec
@pati_gallardo
Why?
Technically challenging
I use it myself
Lots of other users
I believe in the web
12
@pati_gallardo
TurtleSec
@pati_gallardo
Outside of Firefox
this is the general
landscape of browsers
in 2020...
13
@pati_gallardo
TurtleSec
Konqueror Safari Chrome
Edge
Opera
KHTML Webkit Blink
KDE Apple Google
Vivaldi
Chromium
14
@pati_gallardo
Then I made a toy browser
A bit by accident 15
Isolating GPU Access
in its own process
Patricia Aas, TurtleSec
NDC TechTown 2018
Turtle
Sec
@pati_gallardo
Demo of Composition
...I might have made a browser...
...I might have decided to have a demo last night...
Turtle
Sec
@pati_gallardo
2018 Slide
@pati_gallardo
TurtleSec
@pati_gallardo
But I got busy
18
@pati_gallardo
TurtleSec
@pati_gallardo
I was doing on-prem international trainings
March 2020: everything got canceled
19
@pati_gallardo
TurtleSec
So…
I guess I suddenly have some time?
20
@pati_gallardo
TurtleSec
@pati_gallardo
TurtleBrowser
21
@pati_gallardo
TurtleSec
Skimming the surface
Bring-up time is Queen
No time for Depth First
22
So, if the last 10% of functionality
is 90% of the time...
..then the first 90%
is 10% of the time, right?
@pati_gallardo
TurtleSec
@pati_gallardo
GUI framework
23
Porting layer
@pati_gallardo
TurtleSec
@pati_gallardo
Initial platforms
Linux
MacOS
Windows
24
Porting layer
Mobile too, eventually
@pati_gallardo
TurtleSec
@pati_gallardo
Qt ( C++ )
Qml
25
@pati_gallardo
TurtleSec
@pati_gallardo
C++ for business logic
Qml for GUI
26
@pati_gallardo
TurtleSec
What does Qml look like?
Imagine if JSON, JavaScript and CSS had a baby...
27
@pati_gallardo
TurtleSec
WebPage.qml
import QtQml 2.15
import QtQuick.Controls 2.15
import QtQuick.Layouts 1.15
import QtWebEngine 1.10
import "url.js" as URL
ColumnLayout {
AddressBar {
url: webView.url
onReload: webView.reload()
onBack: webView.goBack()
onForward: webView.goForward()
onGoToAddress: webView.typedText = address
}
WebEngineView {
id: webView
property string typedText: ""
onTypedTextChanged: {
webView.url = URL.construct(typedText)
}
}
}
@pati_gallardo
Importing Qml modules
Importing JS files
Custom Qml Component
Defined in a file in this
directory
QtWebEngine
Component
Imported on line 4
28
@pati_gallardo
TurtleSec
Advantage of Qml
Easy to change the GUI
29
@pati_gallardo
TurtleSec
@pati_gallardo
Desktop
WebView
30
@pati_gallardo
TurtleSec
@pati_gallardo
Chromium
Blink
QtWebEngine
This bit will get
complicated
31
@pati_gallardo
TurtleSec
@pati_gallardo
Build System 32
@pati_gallardo
TurtleSec
@pati_gallardo
CMake
33
@pati_gallardo
TurtleSec
@pati_gallardo
Dependency
Management 34
@pati_gallardo
TurtleSec
@pati_gallardo
Conan
35
@pati_gallardo
TurtleSec
@pati_gallardo
conan-qt
Eric Lemanissier
Config Qt modules
36
@pati_gallardo
TurtleSec
@pati_gallardo
CI/CD 37
@pati_gallardo
TurtleSec
@pati_gallardo
GitHub
Actions
38
@pati_gallardo
TurtleSec
@pati_gallardo
conan-cache
GitHub Action Hack
Stuff .conan into git
Push it to GitHub
GitHub LFS
39
@pati_gallardo
TurtleSec
@pati_gallardo
Docker Action
JavaScript Action
Docker Actions
are Linux only!
40
@pati_gallardo
TurtleSec
@pati_gallardo
Hack
Call shell script
from JavaScript
41
@pati_gallardo
TurtleSec
@pati_gallardo
Testing
42
@pati_gallardo
TurtleSec
@pati_gallardo
Qml
C++
GUI Driver?
43
@pati_gallardo
TurtleSec
@pati_gallardo
Licensing 44
@pati_gallardo
TurtleSec
@pati_gallardo
Chromium
Qt
Pretty Safe
Maneuverable
Remember, we
have no money
45
@pati_gallardo
TurtleSec
@pati_gallardo
- Collect Conan licenses
- Make qrc
- Make GUI to display
- MONITOR
46
@pati_gallardo
TurtleSec
MVP
Build/Tests Window“Update” Webview
ShortcutsPackaging
WebView TabsLicenses
47
@pati_gallardo
TurtleSec
@pati_gallardo
Packaging 48
@pati_gallardo
TurtleSec
@pati_gallardo
CPack
49
@pati_gallardo
TurtleSec
@pati_gallardo
Web Site 50
@pati_gallardo
TurtleSec
@pati_gallardo
GitHub Pages
Jekyll Theme
51
@pati_gallardo
TurtleSec
@pati_gallardo
Releases 52
@pati_gallardo
TurtleSec
@pati_gallardo
GitHub
Releases?
53
@pati_gallardo
TurtleSec
Web
Autocomplete Tab cyclingFind in Page
Menu/middle clickNotifications
Certificates Url/load displayDialogs
54
@pati_gallardo
TurtleSec
@pati_gallardo 55
Alpha Release
@pati_gallardo
TurtleSec
Alpha
Custom Shortcuts AccessibilitySessions
Design/StylingDevTools
UPDATE Webview LanguagesDownloads
56
@pati_gallardo
TurtleSec
@pati_gallardo
GUI Styling
57
@pati_gallardo
TurtleSec
@pati_gallardo
Qt Imagine
Style
58
@pati_gallardo
TurtleSec
@pati_gallardo
The Hard Parts
59
@pati_gallardo
TurtleSec
@pati_gallardo
Updating
Chromium
60
@pati_gallardo
TurtleSec
How Qt has
designed it
Start of 2020
Qt5.14
Qt5.15
7780
Chromium
2019
77 80
By the time a
new Qt
version is
released the
Chromium
version is
almost
a year old.
61
@pati_gallardo
TurtleSec
@pati_gallardo
Chromium browser
releases have to follow
Chromium releases.
NOT Qt releasesWe’re not
going to play
browser
62
@pati_gallardo
TurtleSec
How it has
to be
81
82 83
84
8588
87 86
Qt5.15
Qt5.14
80Start of 2020 Chrome
Vivaldi
77
63
@pati_gallardo
TurtleSec
@pati_gallardo
Sandboxing
64
@pati_gallardo
TurtleSec
@pati_gallardo
● Platform specific
● Qt has disabled
● Process architecture
different
65
@pati_gallardo
TurtleSec
NS(User)
NS(Pid)NS(Net)Web
Network
Filesystem System Calls
chroot seccomp, capset
Resources
setrlimit
Linux
66
@pati_gallardo
TurtleSec
@pati_gallardo
Proprietary Media 67
@pati_gallardo
TurtleSec
@pati_gallardo
- Codec Patents
- Free ffmpeg
- QtMultimedia?
68
@pati_gallardo
TurtleSec
@pati_gallardo 69
Beta Release
@pati_gallardo
TurtleSec
@pati_gallardo 70
@pati_gallardo
TurtleSec
Beta
Bookmarks HistoryNew page GUI
E ensionsPanel
Crash Reporting PrintingAuto Update
71
@pati_gallardo
TurtleSec
@pati_gallardo
Crash Reporting
72
@pati_gallardo
TurtleSec
@pati_gallardo
Sentry
73
@pati_gallardo
TurtleSec
Server
Issue reportLinux browser
Stack tracesMacOS browser
DeduplicationWindows browser
74
@pati_gallardo
TurtleSec
@pati_gallardo Mobile Alpha 75
@pati_gallardo
TurtleSec
@pati_gallardo
Embedding
Platform
WebViews
76
@pati_gallardo
TurtleSec
@pati_gallardo
QtWebView 77
@pati_gallardo
TurtleSec
Mobile
UX Intent integrationTesting
Intro ScreenApproval
Android build iOS buildFeedback
78
@pati_gallardo
TurtleSec
@pati_gallardo
August/September 2020
79
@pati_gallardo
TurtleSec
Making a browser is not a one person job
Just to keep up with Chromium is a full/part-time job
But you can get pretty far with just one person
And little or no money
80
@pati_gallardo
TurtleSec
We need a way to pay for Open Source Software
GitHub Sponsor?
81
@pati_gallardo
TurtleSec
0 budget1 dev
Open Source
TurtleBrowser
It kinda
works?
82
@pati_gallardo
TurtleSec
@pati_gallardo
Turtle
Sec
@pati_gallardo
Turtle
Sec
Questions?
Photos from pixabay.com
Patricia Aas, TurtleSec

Weitere ähnliche Inhalte

Was ist angesagt?

行動應用開發實務 - Gradle 介紹
行動應用開發實務 - Gradle 介紹行動應用開發實務 - Gradle 介紹
行動應用開發實務 - Gradle 介紹
Kyle Lin
 
Droidcon2013 pro guard, optimizer and obfuscator in the android sdk_eric lafo...
Droidcon2013 pro guard, optimizer and obfuscator in the android sdk_eric lafo...Droidcon2013 pro guard, optimizer and obfuscator in the android sdk_eric lafo...
Droidcon2013 pro guard, optimizer and obfuscator in the android sdk_eric lafo...
Droidcon Berlin
 
Assign, commit, and review - A developer’s guide to OpenStack contribution-20...
Assign, commit, and review - A developer’s guide to OpenStack contribution-20...Assign, commit, and review - A developer’s guide to OpenStack contribution-20...
Assign, commit, and review - A developer’s guide to OpenStack contribution-20...
OpenCity Community
 
Maven 2.0 - Improve your build patterns
Maven 2.0 - Improve your build patternsMaven 2.0 - Improve your build patterns
Maven 2.0 - Improve your build patterns
elliando dias
 

Was ist angesagt? (20)

2014-08-19 Multiple Approaches to Managing Puppet Modules @ Puppet Camp Chicago
2014-08-19 Multiple Approaches to Managing Puppet Modules @ Puppet Camp Chicago2014-08-19 Multiple Approaches to Managing Puppet Modules @ Puppet Camp Chicago
2014-08-19 Multiple Approaches to Managing Puppet Modules @ Puppet Camp Chicago
 
2014-11-11 Multiple Approaches to Managing Puppet Modules @ Puppet Camp Seattle
2014-11-11 Multiple Approaches to Managing Puppet Modules @ Puppet Camp Seattle2014-11-11 Multiple Approaches to Managing Puppet Modules @ Puppet Camp Seattle
2014-11-11 Multiple Approaches to Managing Puppet Modules @ Puppet Camp Seattle
 
Extending Java EE with CDI and JBoss Forge
Extending Java EE with CDI and JBoss ForgeExtending Java EE with CDI and JBoss Forge
Extending Java EE with CDI and JBoss Forge
 
Are app servers still fascinating
Are app servers still fascinatingAre app servers still fascinating
Are app servers still fascinating
 
Going native with less coupling: Dependency Injection in C++
Going native with less coupling: Dependency Injection in C++Going native with less coupling: Dependency Injection in C++
Going native with less coupling: Dependency Injection in C++
 
Gradle in 45min
Gradle in 45minGradle in 45min
Gradle in 45min
 
Unit testing @ WordPress Meetup Tilburg 7 januari 2014
Unit testing @ WordPress Meetup Tilburg 7 januari 2014Unit testing @ WordPress Meetup Tilburg 7 januari 2014
Unit testing @ WordPress Meetup Tilburg 7 januari 2014
 
行動應用開發實務 - Gradle 介紹
行動應用開發實務 - Gradle 介紹行動應用開發實務 - Gradle 介紹
行動應用開發實務 - Gradle 介紹
 
.Net Hijacking to Defend PowerShell BSidesSF2017
.Net Hijacking to Defend PowerShell BSidesSF2017 .Net Hijacking to Defend PowerShell BSidesSF2017
.Net Hijacking to Defend PowerShell BSidesSF2017
 
Unit testing plugins: The 5 W's and an H
Unit testing plugins: The 5 W's and an HUnit testing plugins: The 5 W's and an H
Unit testing plugins: The 5 W's and an H
 
Managing dependencies with gradle
Managing dependencies with gradleManaging dependencies with gradle
Managing dependencies with gradle
 
Groovy And Grails JUG Padova
Groovy And Grails JUG PadovaGroovy And Grails JUG Padova
Groovy And Grails JUG Padova
 
Let the contribution begin (EST futures)
Let the contribution begin  (EST futures)Let the contribution begin  (EST futures)
Let the contribution begin (EST futures)
 
Let your tests drive your code
Let your tests drive your codeLet your tests drive your code
Let your tests drive your code
 
Droidcon2013 pro guard, optimizer and obfuscator in the android sdk_eric lafo...
Droidcon2013 pro guard, optimizer and obfuscator in the android sdk_eric lafo...Droidcon2013 pro guard, optimizer and obfuscator in the android sdk_eric lafo...
Droidcon2013 pro guard, optimizer and obfuscator in the android sdk_eric lafo...
 
Assign, commit, and review - A developer’s guide to OpenStack contribution-20...
Assign, commit, and review - A developer’s guide to OpenStack contribution-20...Assign, commit, and review - A developer’s guide to OpenStack contribution-20...
Assign, commit, and review - A developer’s guide to OpenStack contribution-20...
 
Maven 2.0 - Improve your build patterns
Maven 2.0 - Improve your build patternsMaven 2.0 - Improve your build patterns
Maven 2.0 - Improve your build patterns
 
Gorush: A push notification server written in Go
Gorush: A push notification server written in GoGorush: A push notification server written in Go
Gorush: A push notification server written in Go
 
Introduction to Griffon
Introduction to GriffonIntroduction to Griffon
Introduction to Griffon
 
Creando microservicios con java micro profile y tomee - CUNORI 2020
Creando microservicios con java micro profile y tomee - CUNORI 2020Creando microservicios con java micro profile y tomee - CUNORI 2020
Creando microservicios con java micro profile y tomee - CUNORI 2020
 

Ähnlich wie Trying to build an Open Source browser in 2020

Docker and Your Path to a Better Staging Environment - webinar by Gil Tayar
Docker and Your Path to a Better Staging Environment - webinar by Gil TayarDocker and Your Path to a Better Staging Environment - webinar by Gil Tayar
Docker and Your Path to a Better Staging Environment - webinar by Gil Tayar
Applitools
 
Polymer
Polymer Polymer
Polymer
jskvara
 

Ähnlich wie Trying to build an Open Source browser in 2020 (20)

Docker and Your Path to a Better Staging Environment - webinar by Gil Tayar
Docker and Your Path to a Better Staging Environment - webinar by Gil TayarDocker and Your Path to a Better Staging Environment - webinar by Gil Tayar
Docker and Your Path to a Better Staging Environment - webinar by Gil Tayar
 
Isolating GPU Access in its Own Process
Isolating GPU Access in its Own ProcessIsolating GPU Access in its Own Process
Isolating GPU Access in its Own Process
 
Мы ведь тоже люди. Еретическая лекция про юзабилити инструментов разработчика
Мы ведь тоже люди. Еретическая лекция про юзабилити инструментов разработчикаМы ведь тоже люди. Еретическая лекция про юзабилити инструментов разработчика
Мы ведь тоже люди. Еретическая лекция про юзабилити инструментов разработчика
 
Embedding WPE WebKit - from Bring-up to Maintenance
Embedding WPE WebKit - from Bring-up to MaintenanceEmbedding WPE WebKit - from Bring-up to Maintenance
Embedding WPE WebKit - from Bring-up to Maintenance
 
Gretty: Managing Web Containers with Gradle
Gretty: Managing Web Containers with GradleGretty: Managing Web Containers with Gradle
Gretty: Managing Web Containers with Gradle
 
Intro to Git Devnet-1080 Cisco Live 2018
Intro to Git Devnet-1080 Cisco Live 2018Intro to Git Devnet-1080 Cisco Live 2018
Intro to Git Devnet-1080 Cisco Live 2018
 
The Web Components interoperability challenge - Horacio Gonzalez - Codemotion...
The Web Components interoperability challenge - Horacio Gonzalez - Codemotion...The Web Components interoperability challenge - Horacio Gonzalez - Codemotion...
The Web Components interoperability challenge - Horacio Gonzalez - Codemotion...
 
Azure from scratch part 4
Azure from scratch part 4Azure from scratch part 4
Azure from scratch part 4
 
Hacking the browser with puppeteer sharp .NET conf AR 2018
Hacking the browser with puppeteer sharp .NET conf AR 2018Hacking the browser with puppeteer sharp .NET conf AR 2018
Hacking the browser with puppeteer sharp .NET conf AR 2018
 
Front End Development for Back End Developers - UberConf 2017
Front End Development for Back End Developers - UberConf 2017Front End Development for Back End Developers - UberConf 2017
Front End Development for Back End Developers - UberConf 2017
 
Golang 101 for IT-Pros - Cisco Live Orlando 2018 - DEVNET-1808
Golang 101 for IT-Pros - Cisco Live Orlando 2018 - DEVNET-1808Golang 101 for IT-Pros - Cisco Live Orlando 2018 - DEVNET-1808
Golang 101 for IT-Pros - Cisco Live Orlando 2018 - DEVNET-1808
 
Front End Development for Back End Developers - vJUG24 2017
Front End Development for Back End Developers - vJUG24 2017Front End Development for Back End Developers - vJUG24 2017
Front End Development for Back End Developers - vJUG24 2017
 
Gerrit Code Review: how to script a plugin with Scala and Groovy
Gerrit Code Review: how to script a plugin with Scala and GroovyGerrit Code Review: how to script a plugin with Scala and Groovy
Gerrit Code Review: how to script a plugin with Scala and Groovy
 
Undefined Behavior and Compiler Optimizations (NDC Oslo 2018)
Undefined Behavior and Compiler Optimizations (NDC Oslo 2018)Undefined Behavior and Compiler Optimizations (NDC Oslo 2018)
Undefined Behavior and Compiler Optimizations (NDC Oslo 2018)
 
Create rich web stories with Drupal 8 and paragraphs
Create rich web stories with Drupal 8 and paragraphsCreate rich web stories with Drupal 8 and paragraphs
Create rich web stories with Drupal 8 and paragraphs
 
Polymer
Polymer Polymer
Polymer
 
It is not HTML5. but ... / HTML5ではないサイトからHTML5を考える
It is not HTML5. but ... / HTML5ではないサイトからHTML5を考えるIt is not HTML5. but ... / HTML5ではないサイトからHTML5を考える
It is not HTML5. but ... / HTML5ではないサイトからHTML5を考える
 
10 Excellent Ways to Secure Spring Boot Applications - Okta Webinar 2020
10 Excellent Ways to Secure Spring Boot Applications - Okta Webinar 202010 Excellent Ways to Secure Spring Boot Applications - Okta Webinar 2020
10 Excellent Ways to Secure Spring Boot Applications - Okta Webinar 2020
 
Php on the Web and Desktop
Php on the Web and DesktopPhp on the Web and Desktop
Php on the Web and Desktop
 
OGCE Project Overview
OGCE Project OverviewOGCE Project Overview
OGCE Project Overview
 

Mehr von Patricia Aas

Mehr von Patricia Aas (20)

NDC TechTown 2023_ Return Oriented Programming an introduction.pdf
NDC TechTown 2023_ Return Oriented Programming an introduction.pdfNDC TechTown 2023_ Return Oriented Programming an introduction.pdf
NDC TechTown 2023_ Return Oriented Programming an introduction.pdf
 
Telling a story
Telling a storyTelling a story
Telling a story
 
Return Oriented Programming, an introduction
Return Oriented Programming, an introductionReturn Oriented Programming, an introduction
Return Oriented Programming, an introduction
 
I can't work like this (KDE Academy Keynote 2021)
I can't work like this (KDE Academy Keynote 2021)I can't work like this (KDE Academy Keynote 2021)
I can't work like this (KDE Academy Keynote 2021)
 
Dependency Management in C++ (NDC TechTown 2021)
Dependency Management in C++ (NDC TechTown 2021)Dependency Management in C++ (NDC TechTown 2021)
Dependency Management in C++ (NDC TechTown 2021)
 
Introduction to Memory Exploitation (Meeting C++ 2021)
Introduction to Memory Exploitation (Meeting C++ 2021)Introduction to Memory Exploitation (Meeting C++ 2021)
Introduction to Memory Exploitation (Meeting C++ 2021)
 
Classic Vulnerabilities (MUCplusplus2022).pdf
Classic Vulnerabilities (MUCplusplus2022).pdfClassic Vulnerabilities (MUCplusplus2022).pdf
Classic Vulnerabilities (MUCplusplus2022).pdf
 
Classic Vulnerabilities (ACCU Keynote 2022)
Classic Vulnerabilities (ACCU Keynote 2022)Classic Vulnerabilities (ACCU Keynote 2022)
Classic Vulnerabilities (ACCU Keynote 2022)
 
Introduction to Memory Exploitation (CppEurope 2021)
Introduction to Memory Exploitation (CppEurope 2021)Introduction to Memory Exploitation (CppEurope 2021)
Introduction to Memory Exploitation (CppEurope 2021)
 
Thoughts On Learning A New Programming Language
Thoughts On Learning A New Programming LanguageThoughts On Learning A New Programming Language
Thoughts On Learning A New Programming Language
 
The Anatomy of an Exploit (NDC TechTown 2019)
The Anatomy of an Exploit (NDC TechTown 2019)The Anatomy of an Exploit (NDC TechTown 2019)
The Anatomy of an Exploit (NDC TechTown 2019)
 
Elections: Trust and Critical Infrastructure (NDC TechTown 2019)
Elections: Trust and Critical Infrastructure (NDC TechTown 2019)Elections: Trust and Critical Infrastructure (NDC TechTown 2019)
Elections: Trust and Critical Infrastructure (NDC TechTown 2019)
 
The Anatomy of an Exploit (NDC TechTown 2019))
The Anatomy of an Exploit (NDC TechTown 2019))The Anatomy of an Exploit (NDC TechTown 2019))
The Anatomy of an Exploit (NDC TechTown 2019))
 
Elections, Trust and Critical Infrastructure (NDC TechTown)
Elections, Trust and Critical Infrastructure (NDC TechTown)Elections, Trust and Critical Infrastructure (NDC TechTown)
Elections, Trust and Critical Infrastructure (NDC TechTown)
 
Survival Tips for Women in Tech (JavaZone 2019)
Survival Tips for Women in Tech (JavaZone 2019) Survival Tips for Women in Tech (JavaZone 2019)
Survival Tips for Women in Tech (JavaZone 2019)
 
Embedded Ethics (EuroBSDcon 2019)
Embedded Ethics (EuroBSDcon 2019)Embedded Ethics (EuroBSDcon 2019)
Embedded Ethics (EuroBSDcon 2019)
 
Chromium Sandbox on Linux (NDC Security 2019)
Chromium Sandbox on Linux (NDC Security 2019)Chromium Sandbox on Linux (NDC Security 2019)
Chromium Sandbox on Linux (NDC Security 2019)
 
Keynote: Deconstructing Privilege (C++ on Sea 2019)
Keynote: Deconstructing Privilege (C++ on Sea 2019)Keynote: Deconstructing Privilege (C++ on Sea 2019)
Keynote: Deconstructing Privilege (C++ on Sea 2019)
 
The Anatomy of an Exploit (CPPP 2019)
The Anatomy of an Exploit (CPPP 2019)The Anatomy of an Exploit (CPPP 2019)
The Anatomy of an Exploit (CPPP 2019)
 
Make it Fixable (NDC Copenhagen 2018)
Make it Fixable (NDC Copenhagen 2018)Make it Fixable (NDC Copenhagen 2018)
Make it Fixable (NDC Copenhagen 2018)
 

Kürzlich hochgeladen

CHEAP Call Girls in Pushp Vihar (-DELHI )🔝 9953056974🔝(=)/CALL GIRLS SERVICE
CHEAP Call Girls in Pushp Vihar (-DELHI )🔝 9953056974🔝(=)/CALL GIRLS SERVICECHEAP Call Girls in Pushp Vihar (-DELHI )🔝 9953056974🔝(=)/CALL GIRLS SERVICE
CHEAP Call Girls in Pushp Vihar (-DELHI )🔝 9953056974🔝(=)/CALL GIRLS SERVICE
9953056974 Low Rate Call Girls In Saket, Delhi NCR
 
TECUNIQUE: Success Stories: IT Service provider
TECUNIQUE: Success Stories: IT Service providerTECUNIQUE: Success Stories: IT Service provider
TECUNIQUE: Success Stories: IT Service provider
mohitmore19
 

Kürzlich hochgeladen (20)

5 Signs You Need a Fashion PLM Software.pdf
5 Signs You Need a Fashion PLM Software.pdf5 Signs You Need a Fashion PLM Software.pdf
5 Signs You Need a Fashion PLM Software.pdf
 
AI & Machine Learning Presentation Template
AI & Machine Learning Presentation TemplateAI & Machine Learning Presentation Template
AI & Machine Learning Presentation Template
 
How To Use Server-Side Rendering with Nuxt.js
How To Use Server-Side Rendering with Nuxt.jsHow To Use Server-Side Rendering with Nuxt.js
How To Use Server-Side Rendering with Nuxt.js
 
The Real-World Challenges of Medical Device Cybersecurity- Mitigating Vulnera...
The Real-World Challenges of Medical Device Cybersecurity- Mitigating Vulnera...The Real-World Challenges of Medical Device Cybersecurity- Mitigating Vulnera...
The Real-World Challenges of Medical Device Cybersecurity- Mitigating Vulnera...
 
HR Software Buyers Guide in 2024 - HRSoftware.com
HR Software Buyers Guide in 2024 - HRSoftware.comHR Software Buyers Guide in 2024 - HRSoftware.com
HR Software Buyers Guide in 2024 - HRSoftware.com
 
W01_panagenda_Navigating-the-Future-with-The-Hitchhikers-Guide-to-Notes-and-D...
W01_panagenda_Navigating-the-Future-with-The-Hitchhikers-Guide-to-Notes-and-D...W01_panagenda_Navigating-the-Future-with-The-Hitchhikers-Guide-to-Notes-and-D...
W01_panagenda_Navigating-the-Future-with-The-Hitchhikers-Guide-to-Notes-and-D...
 
Optimizing AI for immediate response in Smart CCTV
Optimizing AI for immediate response in Smart CCTVOptimizing AI for immediate response in Smart CCTV
Optimizing AI for immediate response in Smart CCTV
 
VTU technical seminar 8Th Sem on Scikit-learn
VTU technical seminar 8Th Sem on Scikit-learnVTU technical seminar 8Th Sem on Scikit-learn
VTU technical seminar 8Th Sem on Scikit-learn
 
CHEAP Call Girls in Pushp Vihar (-DELHI )🔝 9953056974🔝(=)/CALL GIRLS SERVICE
CHEAP Call Girls in Pushp Vihar (-DELHI )🔝 9953056974🔝(=)/CALL GIRLS SERVICECHEAP Call Girls in Pushp Vihar (-DELHI )🔝 9953056974🔝(=)/CALL GIRLS SERVICE
CHEAP Call Girls in Pushp Vihar (-DELHI )🔝 9953056974🔝(=)/CALL GIRLS SERVICE
 
Vip Call Girls Noida ➡️ Delhi ➡️ 9999965857 No Advance 24HRS Live
Vip Call Girls Noida ➡️ Delhi ➡️ 9999965857 No Advance 24HRS LiveVip Call Girls Noida ➡️ Delhi ➡️ 9999965857 No Advance 24HRS Live
Vip Call Girls Noida ➡️ Delhi ➡️ 9999965857 No Advance 24HRS Live
 
Learn the Fundamentals of XCUITest Framework_ A Beginner's Guide.pdf
Learn the Fundamentals of XCUITest Framework_ A Beginner's Guide.pdfLearn the Fundamentals of XCUITest Framework_ A Beginner's Guide.pdf
Learn the Fundamentals of XCUITest Framework_ A Beginner's Guide.pdf
 
Introducing Microsoft’s new Enterprise Work Management (EWM) Solution
Introducing Microsoft’s new Enterprise Work Management (EWM) SolutionIntroducing Microsoft’s new Enterprise Work Management (EWM) Solution
Introducing Microsoft’s new Enterprise Work Management (EWM) Solution
 
8257 interfacing 2 in microprocessor for btech students
8257 interfacing 2 in microprocessor for btech students8257 interfacing 2 in microprocessor for btech students
8257 interfacing 2 in microprocessor for btech students
 
Direct Style Effect Systems - The Print[A] Example - A Comprehension Aid
Direct Style Effect Systems -The Print[A] Example- A Comprehension AidDirect Style Effect Systems -The Print[A] Example- A Comprehension Aid
Direct Style Effect Systems - The Print[A] Example - A Comprehension Aid
 
TECUNIQUE: Success Stories: IT Service provider
TECUNIQUE: Success Stories: IT Service providerTECUNIQUE: Success Stories: IT Service provider
TECUNIQUE: Success Stories: IT Service provider
 
call girls in Vaishali (Ghaziabad) 🔝 >༒8448380779 🔝 genuine Escort Service 🔝✔️✔️
call girls in Vaishali (Ghaziabad) 🔝 >༒8448380779 🔝 genuine Escort Service 🔝✔️✔️call girls in Vaishali (Ghaziabad) 🔝 >༒8448380779 🔝 genuine Escort Service 🔝✔️✔️
call girls in Vaishali (Ghaziabad) 🔝 >༒8448380779 🔝 genuine Escort Service 🔝✔️✔️
 
10 Trends Likely to Shape Enterprise Technology in 2024
10 Trends Likely to Shape Enterprise Technology in 202410 Trends Likely to Shape Enterprise Technology in 2024
10 Trends Likely to Shape Enterprise Technology in 2024
 
How to Choose the Right Laravel Development Partner in New York City_compress...
How to Choose the Right Laravel Development Partner in New York City_compress...How to Choose the Right Laravel Development Partner in New York City_compress...
How to Choose the Right Laravel Development Partner in New York City_compress...
 
Diamond Application Development Crafting Solutions with Precision
Diamond Application Development Crafting Solutions with PrecisionDiamond Application Development Crafting Solutions with Precision
Diamond Application Development Crafting Solutions with Precision
 
Shapes for Sharing between Graph Data Spaces - and Epistemic Querying of RDF-...
Shapes for Sharing between Graph Data Spaces - and Epistemic Querying of RDF-...Shapes for Sharing between Graph Data Spaces - and Epistemic Querying of RDF-...
Shapes for Sharing between Graph Data Spaces - and Epistemic Querying of RDF-...
 

Trying to build an Open Source browser in 2020