SlideShare a Scribd company logo
1 of 44
Download to read offline
Hook, Line, and Sinker:
Reeling in ArcGIS
Webhooks
Dan
Minney
FME Form
Tech Support Specialist
Sanae
Mendoza
FME Flow
Tech Support Specialist
Matt
Meeboer
FME Flow
Tech Support Specialist
Welcome to Livestorm.
A few ways to engage with us during the webinar:
Audio issues? Click this for 4 simple
troubleshooting steps.
Agenda
1 An Introduction to Safe & FME
2 An Introduction to Webhooks
3 Flash Demo
4 A demonstration of Survey123 Webhooks
5 A demonstration of Field Maps Webhooks
6 Resources & conclusion
7 Q&A
Agenda
1
Introduction to
Safe & FME
29+
27K+
128
190
20K+
years of solving data
challenges
FME Community
members
countries with
FME customers
organizations worldwide
global partners with
FME services
29+
29K+
128
140+
25K+
years of solving data
challenges
FME Community
members
countries with
FME customers
organizations worldwide
global partners with
FME services
FME Form
(was FME Desktop)
FME Flow
(was FME Server)
FME Flow Hosted
(was FME Cloud)
FME Enterprise Integration Platform
What Esri Web Apps are
you currently using?
2
Introduction to
Webhooks
Enrich, manipulate and
sync your ArcGIS Online
data in near real-time,
so you can do more
with your data.
Using webhooks, FME Flow
can run an automation within
moments of an event
occurring in ArcGIS Online.
Flash
Demo
Webhooks are a lightweight integration tool for systems and users. Allowing us to
exchange and transform data in real-time.
● Automate workflows between applications
● Respond to events in real-time
● Synchronize data across all systems
● Build simple, secure, easy to maintain integrations
● Enrich, transform, and deliver data
Why use Webhooks?
Webhooks vs. REST API
● Webhooks communicate over the web
via HTTP, like a REST API.
● Webhooks can watch for specific
events, then sent event information to a
URL.
● REST API requires us to poll an
application for new data.
● Webhooks deliver that data, as soon as
it is available.
A Webhook Trigger provides a URL
The URL is given to another application
Whenever an event happens in
that application….
….the automation receives a
message
Working with JSON
JSON (JavaScript Object Notation) is a
common format for exchanging information
between applications.
Example webhook message:
{
"surveyInfo": {
"formItemId": "752764383a374belksjdflj234e42216a”…
"eventType": "addData",
"feature": {
"attributes": {
"Name": "FME Lizard",
"Tree_Found": "norway_maple"..}}
FME Workbench
ArcGIS Online & ArcGIS Portal can send webhook message to FME Flow when
specified “events” occur. Webhooks can monitor for activity on items, users,
groups or administrative updates*.
Webhooks in ArcGIS
*Webhook configuration and availability may vary depending on the type of
event, application, or platform.
4
Survey123
Webhooks
One Image and Copy
ArcGIS Survey123 is a platform for creating,
sharing, and analyzing surveys. This allows for
the easy collection of data via the web or a
mobile device.
Survey123
Sync data
submitted through
the Survey123 App
to SQL Server &
Tableau
Goal Block Key
Survey123 Webhooks & FME Flow
Result
No direct way to
connect Survey123
to our data
destinations
Use FME Flow
automations to
retrieve a webhook
message and sync
it to SQL Server
and Tableau
An always
up-to-date dataset
& dashboard for all
the data submitted
through the
Survey123 App
Utilities Reporting App
FME Flow
Automation
Connecting Survey123 & FME
Server
● Survey123 webhook capabilities allow
FME Server to retrieve data every time
survey submitted
● In FME Server Automations, Webhook
Trigger can pick up webhook message
and expose for further transformations
and translations down line
● Fully automated approach
Processing the Webhook Response
● Extract attributes from the webhook response using the JSONFragmenter + more
● ImageFetcher can be used to retrieve the images - for storage we will need to encode this
as a blob
● Write our cleaned up data to two locations: SQL Server table & Google Sheets table
{"result":{"success":true,"globalId":"{A331B27D-2F2D-4019-8C06-CB80F8B8F737}","objectId":5,"uniqueId":5},"attachments":{"please_take_a_photo
_of_the_issu":[{"size":1143448,"keywords":"please_take_a_photo_of_the_issu","name":"cracked-concrete.jpeg","globalId":"{09843F7A-0123-47E0-8
656-12DD452CCA44}","id":5,"contentType":"image/jpeg","parentGlobalId":"{A331B27D-2F2D-4019-8C06-CB80F8B8F737}","url":"https://services1.
arcgis.com/nhT990CtK0zKxwbC/arcgis/rest/services/survey123_5818ab57e76940cf89d4bf7b133717cc_fieldworker/FeatureServer/0/5/attachments/
5"}]},"attributes":{"urgency_of_the_issue":"Low","please_describe_the_observed_is":"Sidewalk
cracked","globalid":"{A331B27D-2F2D-4019-8C06-CB80F8B8F737}","date_of_observation":1658257200000,"your_name":"Jason
David","objectid":5},"geometry":{"x":-123.07532363275533,"y":49.02262264094539,"spatialReference":{"wkid":4326},"geometryType":"esriGeometr
yPoint"},"layerInfo":{"relationships":[],"objectIdField":"objectid","name":"survey","globalIdField":"globalid","id":0,"type":"Feature Layer"}}
name urgency description date objectid globalid attachment Longitude Latitude
1 Jason David Low Sidewalk
cracked
2022-07-22 5 {A331B2... FFD8F… -123.075… 49.0226…
Webhook JSON Message [Before]
Post-FME Processing [After]
Tips & Tricks
● JSONFragmenter makes it easy to extract attributes and their values from webhook
responses
● Remember to use the ParameterFetcher to retrieve the webhook message
● Enable Authentication with an ArcGIS Online Web Connection in the ImageFetcher
Completing the Automation
● Create a Workspace Action that connects to the
Webhook Trigger
Integrating with BI tools
● We can extend our data to
other platforms as well such
as Tableau
● Data Destination: a format
that is digestible and instantly
accessible by our BI tool
○ Google Sheets
5
ArcGIS Field
Maps
From mobile apps and workstations, those in
the field can collect and edit features using
ArcGIS applications.
● Instant Apps
● Quick Capture
● Collector
● REST API
● Field Maps
Field Maps (and other
applications)
● Feature Services: host map features
online with symbology & relates
● End-users: view & interact from anywhere
● A Feature Service Webhook: send
event data for any change (e.g. inserts,
updates, deletions, attachments)
Event data is sent to FME Flow, instantly.
ArcGIS Feature Service
Webhooks
Tools for Feature Service Webhooks
The ArcGISOnlineWebhookDataGetter is
custom transformer designed to process
ArcGIS Webhook payloads.
Available for download on the FME Hub
Updated feature data is accessed
through a “changesURL” provided in the
webhook message.
Slide Title
Employees must
be notified as soon
as they’ve been
assigned new work
orders.
Goal Block Key
Instant Updates from the Field
Result
Work order
information is
collected, stored,
and assigned by
separate
employees and
applications.
Use Feature
Service webhooks
to integrate ArcGIS
data with the work
management
applications.
Work management
is more efficient
when employees
have access to the
most up-to-date
information.
Demo
Tips & Tricks
● The AGOL account must have permissions to Admin settings.
● Ensure the Feature Service settings allows for edits to be tracked.
● The ArcGISOnlineWebhookDataGetter extracts data from the Feature Service webhook
payload.
● We can listen for kinds of events on AGOL and Portal. (Click the platform for available
Webhook events.)
6
Resources &
Conclusion
Summary Points
FME Server Automations make it easy to process Survey123 and Feature Service webhook
responses in real-time. This allows you transform your ArcGIS data and extend it to other
platforms.
Feature updates are just one example of event types webhooks can watch for. ArcGIS Online and
ArcGIS Portal support webhooks for other kinds of events, like user or administrative activity.
1 2 3
Contact us
We would love to chat with
you about anything data
info@safe.com
Download FME
Download the latest version &
the webinar workspaces
Free Trial | Upgrade
Apply
The workspaces to your own
data to manage changes
Next Steps
● Video: Automate Integrations with Survey123
and ArcGIS Field Maps using FME and
Webhooks
● Automating Workflows from Survey123 to
ArcGIS using FME Server
● Push Data from an ArcGIS Online Feature
Service to an Application in Real-time
● Automating Workflows from ArcGIS Field Maps
● Connect to APIs and Webhooks in No Time
Resources
Free 90-min Workshop
on FME
safe.com/accelerator
Get our Ebook
Spatial Data for the
Enterprise
fme.ly/gzc
More Webinars
Upcoming & on-demand
webinars
safe.com/webinars
FME Accelerator
ClaimYour Community Badge
● Get community badges for watching
webinars!
● fme.ly/WebinarBadge
● Today’s code: FBACS
Join the Community today!
Our largest
FME user
conference
yet.
Sept 5-7 | 100+ sessions
co-hosted by Safe Software & con terra
7
Q&A
ThankYou
Please fill out our webinar survey

More Related Content

Similar to Hook, Line, and Sinker: Reeling in ArcGIS Webhooks

A Microsoft Silverlight User Group Starter Kit Made Available for Everyone to...
A Microsoft Silverlight User Group Starter Kit Made Available for Everyone to...A Microsoft Silverlight User Group Starter Kit Made Available for Everyone to...
A Microsoft Silverlight User Group Starter Kit Made Available for Everyone to...
DataLeader.io
 
N01 cloud computing_and_gae
N01 cloud computing_and_gaeN01 cloud computing_and_gae
N01 cloud computing_and_gae
Sun-Jin Jang
 
Desarrollo con AIR para Playbook
Desarrollo con AIR para PlaybookDesarrollo con AIR para Playbook
Desarrollo con AIR para Playbook
Software Guru
 
Fixing the mobile web - Internet World Romania
Fixing the mobile web - Internet World RomaniaFixing the mobile web - Internet World Romania
Fixing the mobile web - Internet World Romania
Christian Heilmann
 

Similar to Hook, Line, and Sinker: Reeling in ArcGIS Webhooks (20)

Firefox OS Presentation
Firefox OS PresentationFirefox OS Presentation
Firefox OS Presentation
 
Automated Application Integration with FME & Cityworks Webinar
Automated Application Integration with FME & Cityworks WebinarAutomated Application Integration with FME & Cityworks Webinar
Automated Application Integration with FME & Cityworks Webinar
 
mago3D Technical Workshop Material
mago3D Technical Workshop Material mago3D Technical Workshop Material
mago3D Technical Workshop Material
 
Technology Overview
Technology OverviewTechnology Overview
Technology Overview
 
Spirent: Datum User Experience Analytics System
Spirent: Datum User Experience Analytics SystemSpirent: Datum User Experience Analytics System
Spirent: Datum User Experience Analytics System
 
OneTeam Media Server
OneTeam Media ServerOneTeam Media Server
OneTeam Media Server
 
Web engineering
Web engineeringWeb engineering
Web engineering
 
A Microsoft Silverlight User Group Starter Kit Made Available for Everyone to...
A Microsoft Silverlight User Group Starter Kit Made Available for Everyone to...A Microsoft Silverlight User Group Starter Kit Made Available for Everyone to...
A Microsoft Silverlight User Group Starter Kit Made Available for Everyone to...
 
iguazio - nuclio Meetup Nov 30th
iguazio - nuclio Meetup Nov 30thiguazio - nuclio Meetup Nov 30th
iguazio - nuclio Meetup Nov 30th
 
ITPROCEED_WorkplaceMobility_Creating a seamless experience with ue v and wind...
ITPROCEED_WorkplaceMobility_Creating a seamless experience with ue v and wind...ITPROCEED_WorkplaceMobility_Creating a seamless experience with ue v and wind...
ITPROCEED_WorkplaceMobility_Creating a seamless experience with ue v and wind...
 
N01 cloud computing_and_gae
N01 cloud computing_and_gaeN01 cloud computing_and_gae
N01 cloud computing_and_gae
 
Essay On It 260 Quiz 1-5
Essay On It 260 Quiz 1-5Essay On It 260 Quiz 1-5
Essay On It 260 Quiz 1-5
 
Desarrollo con AIR para Playbook
Desarrollo con AIR para PlaybookDesarrollo con AIR para Playbook
Desarrollo con AIR para Playbook
 
SplunkLive! Frankfurt 2018 - Data Onboarding Overview
SplunkLive! Frankfurt 2018 - Data Onboarding OverviewSplunkLive! Frankfurt 2018 - Data Onboarding Overview
SplunkLive! Frankfurt 2018 - Data Onboarding Overview
 
Ensure Optimal Performance and Scalability: Implementing a Robust and Reliabl...
Ensure Optimal Performance and Scalability: Implementing a Robust and Reliabl...Ensure Optimal Performance and Scalability: Implementing a Robust and Reliabl...
Ensure Optimal Performance and Scalability: Implementing a Robust and Reliabl...
 
The current status of html5 technology and standard
The current status of html5 technology and standardThe current status of html5 technology and standard
The current status of html5 technology and standard
 
[Webinar] Camunda Optimize Release 3.0
[Webinar] Camunda Optimize Release 3.0[Webinar] Camunda Optimize Release 3.0
[Webinar] Camunda Optimize Release 3.0
 
Final paper
Final paperFinal paper
Final paper
 
Fixing the mobile web - Internet World Romania
Fixing the mobile web - Internet World RomaniaFixing the mobile web - Internet World Romania
Fixing the mobile web - Internet World Romania
 
Daniel Egan Msdn Tech Days Oc
Daniel Egan Msdn Tech Days OcDaniel Egan Msdn Tech Days Oc
Daniel Egan Msdn Tech Days Oc
 

More from Safe Software

Cloud Revolution: Exploring the New Wave of Serverless Spatial Data
Cloud Revolution: Exploring the New Wave of Serverless Spatial DataCloud Revolution: Exploring the New Wave of Serverless Spatial Data
Cloud Revolution: Exploring the New Wave of Serverless Spatial Data
Safe Software
 
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
Safe Software
 
Introducing the New FME Community Webinar - Feb 21, 2024 (2).pdf
Introducing the New FME Community Webinar - Feb 21, 2024 (2).pdfIntroducing the New FME Community Webinar - Feb 21, 2024 (2).pdf
Introducing the New FME Community Webinar - Feb 21, 2024 (2).pdf
Safe Software
 
Cloud Revolution: Exploring the New Wave of Serverless Spatial Data
Cloud Revolution: Exploring the New Wave of Serverless Spatial DataCloud Revolution: Exploring the New Wave of Serverless Spatial Data
Cloud Revolution: Exploring the New Wave of Serverless Spatial Data
Safe Software
 
Taking Off with FME: Elevating Airport Operations to New Heights
Taking Off with FME: Elevating Airport Operations to New HeightsTaking Off with FME: Elevating Airport Operations to New Heights
Taking Off with FME: Elevating Airport Operations to New Heights
Safe Software
 
Initiating and Advancing Your Strategic GIS Governance Strategy
Initiating and Advancing Your Strategic GIS Governance StrategyInitiating and Advancing Your Strategic GIS Governance Strategy
Initiating and Advancing Your Strategic GIS Governance Strategy
Safe Software
 
Igniting Next Level Productivity with AI-Infused Data Integration Workflows
Igniting Next Level Productivity with AI-Infused Data Integration Workflows Igniting Next Level Productivity with AI-Infused Data Integration Workflows
Igniting Next Level Productivity with AI-Infused Data Integration Workflows
Safe Software
 
Geospatial Synergy: Amplifying Efficiency with FME & Esri ft. Peak Guest Spea...
Geospatial Synergy: Amplifying Efficiency with FME & Esri ft. Peak Guest Spea...Geospatial Synergy: Amplifying Efficiency with FME & Esri ft. Peak Guest Spea...
Geospatial Synergy: Amplifying Efficiency with FME & Esri ft. Peak Guest Spea...
Safe Software
 

More from Safe Software (20)

From Event to Action: Accelerate Your Decision Making with Real-Time Automation
From Event to Action: Accelerate Your Decision Making with Real-Time AutomationFrom Event to Action: Accelerate Your Decision Making with Real-Time Automation
From Event to Action: Accelerate Your Decision Making with Real-Time Automation
 
From Event to Action: Accelerate Your Decision Making with Real-Time Automation
From Event to Action:  Accelerate Your Decision Making with Real-Time AutomationFrom Event to Action:  Accelerate Your Decision Making with Real-Time Automation
From Event to Action: Accelerate Your Decision Making with Real-Time Automation
 
Beyond Boundaries: Leveraging No-Code Solutions for Industry Innovation
Beyond Boundaries: Leveraging No-Code Solutions for Industry InnovationBeyond Boundaries: Leveraging No-Code Solutions for Industry Innovation
Beyond Boundaries: Leveraging No-Code Solutions for Industry Innovation
 
Powering Real-Time Decisions with Continuous Data Streams
Powering Real-Time Decisions with Continuous Data StreamsPowering Real-Time Decisions with Continuous Data Streams
Powering Real-Time Decisions with Continuous Data Streams
 
The Critical Role of Spatial Data in Today's Data Ecosystem
The Critical Role of Spatial Data in Today's Data EcosystemThe Critical Role of Spatial Data in Today's Data Ecosystem
The Critical Role of Spatial Data in Today's Data Ecosystem
 
Cloud Revolution: Exploring the New Wave of Serverless Spatial Data
Cloud Revolution: Exploring the New Wave of Serverless Spatial DataCloud Revolution: Exploring the New Wave of Serverless Spatial Data
Cloud Revolution: Exploring the New Wave of Serverless Spatial Data
 
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
 
The Zero-ETL Approach: Enhancing Data Agility and Insight
The Zero-ETL Approach: Enhancing Data Agility and InsightThe Zero-ETL Approach: Enhancing Data Agility and Insight
The Zero-ETL Approach: Enhancing Data Agility and Insight
 
Mastering MicroStation DGN: How to Integrate CAD and GIS
Mastering MicroStation DGN: How to Integrate CAD and GISMastering MicroStation DGN: How to Integrate CAD and GIS
Mastering MicroStation DGN: How to Integrate CAD and GIS
 
Geospatial Synergy: Amplifying Efficiency with FME & Esri
Geospatial Synergy: Amplifying Efficiency with FME & EsriGeospatial Synergy: Amplifying Efficiency with FME & Esri
Geospatial Synergy: Amplifying Efficiency with FME & Esri
 
Introducing the New FME Community Webinar - Feb 21, 2024 (2).pdf
Introducing the New FME Community Webinar - Feb 21, 2024 (2).pdfIntroducing the New FME Community Webinar - Feb 21, 2024 (2).pdf
Introducing the New FME Community Webinar - Feb 21, 2024 (2).pdf
 
Breaking Barriers & Leveraging the Latest Developments in AI Technology
Breaking Barriers & Leveraging the Latest Developments in AI TechnologyBreaking Barriers & Leveraging the Latest Developments in AI Technology
Breaking Barriers & Leveraging the Latest Developments in AI Technology
 
Best Practices to Navigating Data and Application Integration for the Enterpr...
Best Practices to Navigating Data and Application Integration for the Enterpr...Best Practices to Navigating Data and Application Integration for the Enterpr...
Best Practices to Navigating Data and Application Integration for the Enterpr...
 
Cloud Revolution: Exploring the New Wave of Serverless Spatial Data
Cloud Revolution: Exploring the New Wave of Serverless Spatial DataCloud Revolution: Exploring the New Wave of Serverless Spatial Data
Cloud Revolution: Exploring the New Wave of Serverless Spatial Data
 
New Year's Fireside Chat with Safe Software’s Founders
New Year's Fireside Chat with Safe Software’s FoundersNew Year's Fireside Chat with Safe Software’s Founders
New Year's Fireside Chat with Safe Software’s Founders
 
Taking Off with FME: Elevating Airport Operations to New Heights
Taking Off with FME: Elevating Airport Operations to New HeightsTaking Off with FME: Elevating Airport Operations to New Heights
Taking Off with FME: Elevating Airport Operations to New Heights
 
Initiating and Advancing Your Strategic GIS Governance Strategy
Initiating and Advancing Your Strategic GIS Governance StrategyInitiating and Advancing Your Strategic GIS Governance Strategy
Initiating and Advancing Your Strategic GIS Governance Strategy
 
Igniting Next Level Productivity with AI-Infused Data Integration Workflows
Igniting Next Level Productivity with AI-Infused Data Integration Workflows Igniting Next Level Productivity with AI-Infused Data Integration Workflows
Igniting Next Level Productivity with AI-Infused Data Integration Workflows
 
Geospatial Synergy: Amplifying Efficiency with FME & Esri ft. Peak Guest Spea...
Geospatial Synergy: Amplifying Efficiency with FME & Esri ft. Peak Guest Spea...Geospatial Synergy: Amplifying Efficiency with FME & Esri ft. Peak Guest Spea...
Geospatial Synergy: Amplifying Efficiency with FME & Esri ft. Peak Guest Spea...
 
Mastering DevOps-Driven Data Integration with FME
Mastering DevOps-Driven Data Integration with FMEMastering DevOps-Driven Data Integration with FME
Mastering DevOps-Driven Data Integration with FME
 

Recently uploaded

EIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptx
EIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptxEIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptx
EIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptx
Earley Information Science
 

Recently uploaded (20)

Finology Group – Insurtech Innovation Award 2024
Finology Group – Insurtech Innovation Award 2024Finology Group – Insurtech Innovation Award 2024
Finology Group – Insurtech Innovation Award 2024
 
A Domino Admins Adventures (Engage 2024)
A Domino Admins Adventures (Engage 2024)A Domino Admins Adventures (Engage 2024)
A Domino Admins Adventures (Engage 2024)
 
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
 
EIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptx
EIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptxEIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptx
EIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptx
 
Factors to Consider When Choosing Accounts Payable Services Providers.pptx
Factors to Consider When Choosing Accounts Payable Services Providers.pptxFactors to Consider When Choosing Accounts Payable Services Providers.pptx
Factors to Consider When Choosing Accounts Payable Services Providers.pptx
 
Automating Google Workspace (GWS) & more with Apps Script
Automating Google Workspace (GWS) & more with Apps ScriptAutomating Google Workspace (GWS) & more with Apps Script
Automating Google Workspace (GWS) & more with Apps Script
 
Boost PC performance: How more available memory can improve productivity
Boost PC performance: How more available memory can improve productivityBoost PC performance: How more available memory can improve productivity
Boost PC performance: How more available memory can improve productivity
 
🐬 The future of MySQL is Postgres 🐘
🐬  The future of MySQL is Postgres   🐘🐬  The future of MySQL is Postgres   🐘
🐬 The future of MySQL is Postgres 🐘
 
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
 
Boost Fertility New Invention Ups Success Rates.pdf
Boost Fertility New Invention Ups Success Rates.pdfBoost Fertility New Invention Ups Success Rates.pdf
Boost Fertility New Invention Ups Success Rates.pdf
 
Powerful Google developer tools for immediate impact! (2023-24 C)
Powerful Google developer tools for immediate impact! (2023-24 C)Powerful Google developer tools for immediate impact! (2023-24 C)
Powerful Google developer tools for immediate impact! (2023-24 C)
 
Handwritten Text Recognition for manuscripts and early printed texts
Handwritten Text Recognition for manuscripts and early printed textsHandwritten Text Recognition for manuscripts and early printed texts
Handwritten Text Recognition for manuscripts and early printed texts
 
Breaking the Kubernetes Kill Chain: Host Path Mount
Breaking the Kubernetes Kill Chain: Host Path MountBreaking the Kubernetes Kill Chain: Host Path Mount
Breaking the Kubernetes Kill Chain: Host Path Mount
 
Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024
Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024
Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024
 
Presentation on how to chat with PDF using ChatGPT code interpreter
Presentation on how to chat with PDF using ChatGPT code interpreterPresentation on how to chat with PDF using ChatGPT code interpreter
Presentation on how to chat with PDF using ChatGPT code interpreter
 
Scaling API-first – The story of a global engineering organization
Scaling API-first – The story of a global engineering organizationScaling API-first – The story of a global engineering organization
Scaling API-first – The story of a global engineering organization
 
Understanding Discord NSFW Servers A Guide for Responsible Users.pdf
Understanding Discord NSFW Servers A Guide for Responsible Users.pdfUnderstanding Discord NSFW Servers A Guide for Responsible Users.pdf
Understanding Discord NSFW Servers A Guide for Responsible Users.pdf
 
A Year of the Servo Reboot: Where Are We Now?
A Year of the Servo Reboot: Where Are We Now?A Year of the Servo Reboot: Where Are We Now?
A Year of the Servo Reboot: Where Are We Now?
 
Slack Application Development 101 Slides
Slack Application Development 101 SlidesSlack Application Development 101 Slides
Slack Application Development 101 Slides
 
08448380779 Call Girls In Civil Lines Women Seeking Men
08448380779 Call Girls In Civil Lines Women Seeking Men08448380779 Call Girls In Civil Lines Women Seeking Men
08448380779 Call Girls In Civil Lines Women Seeking Men
 

Hook, Line, and Sinker: Reeling in ArcGIS Webhooks