SlideShare a Scribd company logo
1 of 26
Download to read offline
http://www.flickr.com/photos/schill/3513606398/
whoami

Walter Ebert

usability engineer
      gone
    web dev
HTML
   =
HyperText <- This is why we
 Markup       have URLs
Language
World
Wide
Web
Web
„Pretty much the only good reason for a document to
disappear from the Web is that the company which
owned the domain name went out of business or can
no longer afford to keep the server running. Then
why are there so many dangling links in the world?
Part of it is just lack of forethought.“
                                         Tim Berners-Lee



http://www.w3.org/Provider/Style/URI.html
CMS Junk
http:// www.tfgm.com/2009_news.cfm?news_id=9006838?submenuheader=3
http:// www.blackberry.com/btsc/search.do?cmd=displayKC&docType=kc&externalId=KB24960
http:// investor.apple.com/common/download/download.cfm?companyid=AAPL&fileid=461815&
filekey=feebd045-32c3-49de-a9f3-3607a9c14645&filename=
http:// patft.uspto.gov/netacgi/nph-Parser?Sect1=PTO2&Sect2=HITOFF&u=%2Fnetahtml%2FPTO
%2Fsearch-adv.htm&r=1&p=1&f=G&l=50&d=PTXT&S1=7,836,044.PN.&OS=pn/7,836,044&
RS=PN/7,836,044
https:// www.google.com/accounts/ServiceLogin?service=websiteoptimizer&hl=en&continue=https
%3A%2F%2Fwww.google.com%2Fanalytics%2Fsiteopt%2F%3Fet%3Dreset%26hl%3Den&
utm_medium=et&utm_source=us-en-et-bizsol-0-biz1-all&utm_campaign=en
http:// webgrrrl.net//public/slider/addineyeV2.html? strBanner= gEbServerData=’1.0::244213::470804:
:Site- 251/ Type- 11/470804_FE24BF70-4A2B- 4516- 84CD- 43AECF82EAC1.js::ExpBanner::0::
ebLoadScript(“ebPlayScript”,”http: / / ai656.insightexpressai.com/ adServer/ adServer.aspx?bannerID=
18593″)::::0::-1::::0::0::0::37414:: 0′;gEbBannerData= ’59194235810219241182137473531::1::300:: 250::::
webgrrrl.net::0::0::30::false::false::true::0::0 ′;gEbInteractions= ‘[_ eyeblaster,http%3A//
ad.doubleclick.net/ click%253Bh%3Dv8/ 3575/ 3/ 0/ %252a/ d%253B110807295%253B0-
0%253B0%253B16717987%253B4307- 300/ 250%253B21364406/ 21382296/ 1%253B%253B%257Eaopt
%253D2/ 0/ 3d3b/ 0%253B%257Esscs%253D%253f,]‘;ebBSmallS= ‘http%3A/ / ds.serving- sys.com/
BurstingScript/ ebBannerServing.js’;gEbDbgLvl= 0;gEbFlashVer= 9;gEbWMPVer= 10;gEbResolution=
16;gEbTemplateName= ‘ExpBanner’;gEbAdUrl= ‘Site- 251/ Type- 11/ 470804_ FE24BF70- 4A2B- 4516-
84CD- 43AECF82EAC1.js’;gEbDynamicResHost= ‘ds- ll.serving- sys.com’;gfEbUseCompression=
true;gfEbCacheResources= true;gnEbLowBWLimit= 120;gnEbMinZIndex = 10000;
Meaningful URLs
Under the hood

http://www.ftc.gov/index.shtml server side includes
http://www.tfgm.com/index.cfm ColdFusion
http://w3schools.com/default.asp active server pages
http://www.microsoft.com/en-us/default.aspx
                                              asp.net
http://www.eclipse.org/legal/copyright.php PHP
http://java.com/en/download/manual.jsp
                                     java server pages
Content type

Default is HTML


http://farm4.static.flickr.com/3620/3513606398_1f12ecfdc7_o.jpg
http://phpsec.org/php-security-guide.pdf                    JPEG
                                           PDF
http://ftp.akl.lt/Video/Sintel/sintel-1024-surround.mp4
                                                          MPEG-4
http://tools.ietf.org/rfc/rfc1738.txt plain text
State your case

http://en.wikipedia.org/WIKI/DARTHVADER
http://en.wikipedia.org/wiki/darthvader
http://en.wikipedia.org/Wiki/DarthVader
http://en.wikipedia.org/wiki/Darth_Vader
http://en.wikipedia.org/wiki/darth-vader
Make it hackable

http://mozillalabs.com/blog/2011/09/rescuefox-the-
value-of-a-prototype/
http://mozillalabs.com/blog/2011/09/
http://mozillalabs.com/blog/2011/
http://mozillalabs.com/blog/
http://mozillalabs.com/
Vanity URLs
For example:
/downloads
/documentation
/news
/press
/jobs
/about
/contact
/legal
/admin
/account
Namespaces

https://github.com/joindin/joind.in/commits/master
http://stackoverflow.com/questions/7616372/php-
creating-a-new-object-or-use-existing-one-if-isset
http://stackoverflow.com/questions/tagged/php
http://stackoverflow.com/users/220180/gremo
Long URLs
http://www.quora.com/How-do-sites-prevent-vanity-URLs-from-colliding-with-
File structure
File structure
Pretty URLs

RewriteEngine On

# CodeIgniter
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ index.php?/$1 [L]

# WordPress
RewriteRule   ^index.php$ - [L]
RewriteCond   %{REQUEST_FILENAME} !-f
RewriteCond   %{REQUEST_FILENAME} !-d
RewriteRule   . /index.php [L]

# Silex
Options -MultiViews
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^ index.php [L]
Accessing URL data
http://tastywhe.at/urldata.php/path/to/?p=1&q=0

$_SERVER['PATH_INFO']         /path/to/

$_SERVER['QUERY_STRING'] p=1&q=0

$_SERVER['REQUEST_URI']       /urldata.php/path/to/?p=1&q=0

$_GET                         Array
                          (
                                 [p] => 1
                                 [q] => 0
                          )
Routing by convention

/controller/method/argument1/argument2/...

class Videos extends Controller {

//...

  public function comments($vid=null,$cid=null,$action=null) {
    if( !$this->vm->exists($vid) ) {
        show_error('Video not found');
    }


//...
                                          http://codeigniter.com/
Routing by implementation
$app = new SilexApplication();
$app->get('/blog/{id}', function($id) {
    // show blog post
});
$app->post('/blog/create', function () {
    // create blog post
});
$app->post('/blog/{id}/update', function ($id) {
    // update blog post
});
$app->get('/blog/{id}/delete', function ($id) {
    // delete blog post
});
$app->run();
                                    http://silex-project.org/
XML     emacs      CSS3       subversion Webkit
 PHPNW11             applications        conference            PHP
           CVS                       Kate              WTF
   CfP                  programming                      javascript
                  RFC                        William
     Mosaic                            Pippa
web           free as in beer                        mobile
    Manchester United      football          Manchester City
  codecs
                                                            W3C
 Firefox     And yes, it's also good for SEO
         user group            links     git          open source
                    mercurial
 REST                                      HTTP            IANA
       HTML5 BoF                   URL
                                           protocols
JSON     Chromium     resource                               apps
     PHP community CURL OGV free as in speech
                  RTFM vim           software              PHPNW
        web                                       IDE
  LOL       development                                FTW
       URI            HATEOAS         Internet
people look 25% of their time at the URL*




https://duckduckgo.com/?q=manchester
*ftp://ftp.research.microsoft.com/pub/tr/TR-2007-01.pdf
@walterebert
     walterebert.com
slideshare.net/walterebert

      joind.in/3916
Links


http://www.useit.com/alertbox/990321.html
http://www.adaptivepath.com/ideas/e000058
http://warpspire.com/posts/url-design/
http://www.jenitennison.com/blog/node/151
http://adactio.com/journal/4256/
http://adactio.com/journal/4346/
http://www.w3.org/Provider/Style/URI.html
http://www.quora.com/How-do-sites-prevent-vanity-URLs-from-colliding- with-future-features
http://www.joshrussell.com/2009/10/15/list-of-urls-to-reserve-for-your-webapp/
http://tools.ietf.org/html/rfc1738
http://www.w3.org/TR/2010/WD-html5-diff-20101019/#changes-2010-06-24

More Related Content

What's hot

HTML5 is the Future of Mobile, PhoneGap Takes You There Today
HTML5 is the Future of Mobile, PhoneGap Takes You There TodayHTML5 is the Future of Mobile, PhoneGap Takes You There Today
HTML5 is the Future of Mobile, PhoneGap Takes You There Today
davyjones
 
funP 麻吉 開發者俱樂部十月份聚會
funP 麻吉 開發者俱樂部十月份聚會funP 麻吉 開發者俱樂部十月份聚會
funP 麻吉 開發者俱樂部十月份聚會
Nathan Chiu
 

What's hot (19)

Html5 oslo-code-camp
Html5 oslo-code-campHtml5 oslo-code-camp
Html5 oslo-code-camp
 
The Server Side of Responsive Web Design
The Server Side of Responsive Web DesignThe Server Side of Responsive Web Design
The Server Side of Responsive Web Design
 
HTML5 is the Future of Mobile, PhoneGap Takes You There Today
HTML5 is the Future of Mobile, PhoneGap Takes You There TodayHTML5 is the Future of Mobile, PhoneGap Takes You There Today
HTML5 is the Future of Mobile, PhoneGap Takes You There Today
 
So you want to build a Facebook app
So you want to build a Facebook appSo you want to build a Facebook app
So you want to build a Facebook app
 
WordPress Optimization & Security - LAC 2013, London
WordPress Optimization & Security - LAC 2013, LondonWordPress Optimization & Security - LAC 2013, London
WordPress Optimization & Security - LAC 2013, London
 
WordPress Optimization & Security - ThinkVisibility 2012, Leeds
WordPress Optimization & Security - ThinkVisibility 2012, LeedsWordPress Optimization & Security - ThinkVisibility 2012, Leeds
WordPress Optimization & Security - ThinkVisibility 2012, Leeds
 
funP 麻吉 開發者俱樂部十月份聚會
funP 麻吉 開發者俱樂部十月份聚會funP 麻吉 開發者俱樂部十月份聚會
funP 麻吉 開發者俱樂部十月份聚會
 
Beginning WordPress Plugin Development
Beginning WordPress Plugin DevelopmentBeginning WordPress Plugin Development
Beginning WordPress Plugin Development
 
Xke - Introduction to Apache Camel
Xke - Introduction to Apache CamelXke - Introduction to Apache Camel
Xke - Introduction to Apache Camel
 
Extending & Scaling | Dallas PHP
Extending & Scaling | Dallas PHPExtending & Scaling | Dallas PHP
Extending & Scaling | Dallas PHP
 
HTTPS + Let's Encrypt
HTTPS + Let's EncryptHTTPS + Let's Encrypt
HTTPS + Let's Encrypt
 
Die .htaccess richtig nutzen
Die .htaccess richtig nutzenDie .htaccess richtig nutzen
Die .htaccess richtig nutzen
 
Html5 features: location, history and offline apps
Html5 features: location, history and offline appsHtml5 features: location, history and offline apps
Html5 features: location, history and offline apps
 
Transforming WebSockets
Transforming WebSocketsTransforming WebSockets
Transforming WebSockets
 
Building the Media Block in ReactJS
Building the Media Block in ReactJS Building the Media Block in ReactJS
Building the Media Block in ReactJS
 
REST in peace @ IPC 2012 in Mainz
REST in peace @ IPC 2012 in MainzREST in peace @ IPC 2012 in Mainz
REST in peace @ IPC 2012 in Mainz
 
Building a Single Page Application using Ember.js ... for fun and profit
Building a Single Page Application using Ember.js ... for fun and profitBuilding a Single Page Application using Ember.js ... for fun and profit
Building a Single Page Application using Ember.js ... for fun and profit
 
Structured Data in WordPress
Structured Data in WordPressStructured Data in WordPress
Structured Data in WordPress
 
Creating Your First WordPress Plugin
Creating Your First WordPress PluginCreating Your First WordPress Plugin
Creating Your First WordPress Plugin
 

Viewers also liked (8)

(Responsive) Video
(Responsive) Video(Responsive) Video
(Responsive) Video
 
Fotoalbum Vrijwilligersdag Bos En Lommer 2009
Fotoalbum Vrijwilligersdag Bos En Lommer 2009Fotoalbum Vrijwilligersdag Bos En Lommer 2009
Fotoalbum Vrijwilligersdag Bos En Lommer 2009
 
Web Performance Optimierung - DWX13
Web Performance Optimierung - DWX13Web Performance Optimierung - DWX13
Web Performance Optimierung - DWX13
 
Überblick Solr
Überblick SolrÜberblick Solr
Überblick Solr
 
Mark Robinson, GOLF GREATS
Mark Robinson, GOLF GREATSMark Robinson, GOLF GREATS
Mark Robinson, GOLF GREATS
 
Chisholm Gallery, Golf Commissions, Mark Robinson
Chisholm Gallery, Golf Commissions, Mark RobinsonChisholm Gallery, Golf Commissions, Mark Robinson
Chisholm Gallery, Golf Commissions, Mark Robinson
 
Sinn und Unsinn von SSL
Sinn und Unsinn von SSLSinn und Unsinn von SSL
Sinn und Unsinn von SSL
 
Rapportconferentiemeedoen10maart2007versie2004071[1]
Rapportconferentiemeedoen10maart2007versie2004071[1]Rapportconferentiemeedoen10maart2007versie2004071[1]
Rapportconferentiemeedoen10maart2007versie2004071[1]
 

Similar to URL Design

ITCamp 2012 - Alessandro Pilotti - Web API, web sockets and RSignal
ITCamp 2012 - Alessandro Pilotti - Web API, web sockets and RSignalITCamp 2012 - Alessandro Pilotti - Web API, web sockets and RSignal
ITCamp 2012 - Alessandro Pilotti - Web API, web sockets and RSignal
ITCamp
 
Web app and more
Web app and moreWeb app and more
Web app and more
faming su
 
[convergese] Adaptive Images in Responsive Web Design
[convergese] Adaptive Images in Responsive Web Design[convergese] Adaptive Images in Responsive Web Design
[convergese] Adaptive Images in Responsive Web Design
Christopher Schmitt
 
Http/2 - What's it all about?
Http/2  - What's it all about?Http/2  - What's it all about?
Http/2 - What's it all about?
Andy Davies
 

Similar to URL Design (20)

HTML5 and Beyond
HTML5 and BeyondHTML5 and Beyond
HTML5 and Beyond
 
Keypoints html5
Keypoints html5Keypoints html5
Keypoints html5
 
Change by HTML5
Change by HTML5Change by HTML5
Change by HTML5
 
HTML5 Introduction
HTML5 IntroductionHTML5 Introduction
HTML5 Introduction
 
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を考える
 
Simplify your professional web development with symfony
Simplify your professional web development with symfonySimplify your professional web development with symfony
Simplify your professional web development with symfony
 
Creating an Effective Mobile API
Creating an Effective Mobile API Creating an Effective Mobile API
Creating an Effective Mobile API
 
HTML5 for Rich User Experience
HTML5 for Rich User ExperienceHTML5 for Rich User Experience
HTML5 for Rich User Experience
 
Moving from Web 1.0 to Web 2.0
Moving from Web 1.0 to Web 2.0Moving from Web 1.0 to Web 2.0
Moving from Web 1.0 to Web 2.0
 
Introduction to Alfresco Surf Platform
Introduction to Alfresco Surf PlatformIntroduction to Alfresco Surf Platform
Introduction to Alfresco Surf Platform
 
20090925 HTML5の過去、現在、未来
20090925 HTML5の過去、現在、未来20090925 HTML5の過去、現在、未来
20090925 HTML5の過去、現在、未来
 
Familiar HTML5 - 事例とサンプルコードから学ぶ 身近で普通に使わているHTML5
Familiar HTML5 - 事例とサンプルコードから学ぶ 身近で普通に使わているHTML5Familiar HTML5 - 事例とサンプルコードから学ぶ 身近で普通に使わているHTML5
Familiar HTML5 - 事例とサンプルコードから学ぶ 身近で普通に使わているHTML5
 
PHP on Windows
PHP on WindowsPHP on Windows
PHP on Windows
 
PHP on Windows
PHP on WindowsPHP on Windows
PHP on Windows
 
ITCamp 2012 - Alessandro Pilotti - Web API, web sockets and RSignal
ITCamp 2012 - Alessandro Pilotti - Web API, web sockets and RSignalITCamp 2012 - Alessandro Pilotti - Web API, web sockets and RSignal
ITCamp 2012 - Alessandro Pilotti - Web API, web sockets and RSignal
 
Building modern web sites with ASP .Net Web API, WebSockets and RSignal
Building modern web sites with ASP .Net Web API, WebSockets and RSignalBuilding modern web sites with ASP .Net Web API, WebSockets and RSignal
Building modern web sites with ASP .Net Web API, WebSockets and RSignal
 
Opera and the Open Web platform
Opera and the Open Web platformOpera and the Open Web platform
Opera and the Open Web platform
 
Web app and more
Web app and moreWeb app and more
Web app and more
 
[convergese] Adaptive Images in Responsive Web Design
[convergese] Adaptive Images in Responsive Web Design[convergese] Adaptive Images in Responsive Web Design
[convergese] Adaptive Images in Responsive Web Design
 
Http/2 - What's it all about?
Http/2  - What's it all about?Http/2  - What's it all about?
Http/2 - What's it all about?
 

More from Walter Ebert

More from Walter Ebert (20)

FrOSCon 2023: WordPress als ActivityPub-Instanz
FrOSCon 2023: WordPress als ActivityPub-InstanzFrOSCon 2023: WordPress als ActivityPub-Instanz
FrOSCon 2023: WordPress als ActivityPub-Instanz
 
Hero Video Performance - DrupalCamp Ruhr
Hero Video Performance - DrupalCamp RuhrHero Video Performance - DrupalCamp Ruhr
Hero Video Performance - DrupalCamp Ruhr
 
Sicherheit für WordPress
Sicherheit für WordPressSicherheit für WordPress
Sicherheit für WordPress
 
WordPress aufräumen - WordCamp Stuttgart
WordPress aufräumen - WordCamp StuttgartWordPress aufräumen - WordCamp Stuttgart
WordPress aufräumen - WordCamp Stuttgart
 
WordPress aufräumen
WordPress aufräumenWordPress aufräumen
WordPress aufräumen
 
Hero Video Performance
Hero Video PerformanceHero Video Performance
Hero Video Performance
 
WordPress-Webseiten umziehen / online stellen
WordPress-Webseiten umziehen / online stellenWordPress-Webseiten umziehen / online stellen
WordPress-Webseiten umziehen / online stellen
 
Using browser settings for performance
Using browser settings for performanceUsing browser settings for performance
Using browser settings for performance
 
Das richtige WordPress-Theme finden
Das richtige WordPress-Theme findenDas richtige WordPress-Theme finden
Das richtige WordPress-Theme finden
 
WordPress Health Check - WordCamp Würzburg
WordPress Health Check - WordCamp WürzburgWordPress Health Check - WordCamp Würzburg
WordPress Health Check - WordCamp Würzburg
 
WordPress Health Check
WordPress Health CheckWordPress Health Check
WordPress Health Check
 
Making WordPress fast(er)
Making WordPress fast(er)Making WordPress fast(er)
Making WordPress fast(er)
 
Testumgebungen für WordPress
Testumgebungen für WordPressTestumgebungen für WordPress
Testumgebungen für WordPress
 
Modernism in Web Design
Modernism in Web DesignModernism in Web Design
Modernism in Web Design
 
WordPress Multisite
WordPress MultisiteWordPress Multisite
WordPress Multisite
 
Weniger aus Bilder holen
Weniger aus Bilder holenWeniger aus Bilder holen
Weniger aus Bilder holen
 
WordPress mit Composer und Git verwalten
WordPress mit Composer und Git verwaltenWordPress mit Composer und Git verwalten
WordPress mit Composer und Git verwalten
 
High Performance Images
High Performance ImagesHigh Performance Images
High Performance Images
 
WordPress-Templates mit Twig erstellen - PHPUGFFM
WordPress-Templates mit Twig erstellen - PHPUGFFMWordPress-Templates mit Twig erstellen - PHPUGFFM
WordPress-Templates mit Twig erstellen - PHPUGFFM
 
Bilder usw...
Bilder usw...Bilder usw...
Bilder usw...
 

Recently uploaded

Cloud Frontiers: A Deep Dive into Serverless Spatial Data and FME
Cloud Frontiers:  A Deep Dive into Serverless Spatial Data and FMECloud Frontiers:  A Deep Dive into Serverless Spatial Data and FME
Cloud Frontiers: A Deep Dive into Serverless Spatial Data and FME
Safe Software
 
Modular Monolith - a Practical Alternative to Microservices @ Devoxx UK 2024
Modular Monolith - a Practical Alternative to Microservices @ Devoxx UK 2024Modular Monolith - a Practical Alternative to Microservices @ Devoxx UK 2024
Modular Monolith - a Practical Alternative to Microservices @ Devoxx UK 2024
Victor Rentea
 

Recently uploaded (20)

Repurposing LNG terminals for Hydrogen Ammonia: Feasibility and Cost Saving
Repurposing LNG terminals for Hydrogen Ammonia: Feasibility and Cost SavingRepurposing LNG terminals for Hydrogen Ammonia: Feasibility and Cost Saving
Repurposing LNG terminals for Hydrogen Ammonia: Feasibility and Cost Saving
 
TEST BANK For Principles of Anatomy and Physiology, 16th Edition by Gerard J....
TEST BANK For Principles of Anatomy and Physiology, 16th Edition by Gerard J....TEST BANK For Principles of Anatomy and Physiology, 16th Edition by Gerard J....
TEST BANK For Principles of Anatomy and Physiology, 16th Edition by Gerard J....
 
Understanding the FAA Part 107 License ..
Understanding the FAA Part 107 License ..Understanding the FAA Part 107 License ..
Understanding the FAA Part 107 License ..
 
Stronger Together: Developing an Organizational Strategy for Accessible Desig...
Stronger Together: Developing an Organizational Strategy for Accessible Desig...Stronger Together: Developing an Organizational Strategy for Accessible Desig...
Stronger Together: Developing an Organizational Strategy for Accessible Desig...
 
Quantum Leap in Next-Generation Computing
Quantum Leap in Next-Generation ComputingQuantum Leap in Next-Generation Computing
Quantum Leap in Next-Generation Computing
 
Cloud Frontiers: A Deep Dive into Serverless Spatial Data and FME
Cloud Frontiers:  A Deep Dive into Serverless Spatial Data and FMECloud Frontiers:  A Deep Dive into Serverless Spatial Data and FME
Cloud Frontiers: A Deep Dive into Serverless Spatial Data and FME
 
Rising Above_ Dubai Floods and the Fortitude of Dubai International Airport.pdf
Rising Above_ Dubai Floods and the Fortitude of Dubai International Airport.pdfRising Above_ Dubai Floods and the Fortitude of Dubai International Airport.pdf
Rising Above_ Dubai Floods and the Fortitude of Dubai International Airport.pdf
 
Simplifying Mobile A11y Presentation.pptx
Simplifying Mobile A11y Presentation.pptxSimplifying Mobile A11y Presentation.pptx
Simplifying Mobile A11y Presentation.pptx
 
"I see eyes in my soup": How Delivery Hero implemented the safety system for ...
"I see eyes in my soup": How Delivery Hero implemented the safety system for ..."I see eyes in my soup": How Delivery Hero implemented the safety system for ...
"I see eyes in my soup": How Delivery Hero implemented the safety system for ...
 
AWS Community Day CPH - Three problems of Terraform
AWS Community Day CPH - Three problems of TerraformAWS Community Day CPH - Three problems of Terraform
AWS Community Day CPH - Three problems of Terraform
 
Modular Monolith - a Practical Alternative to Microservices @ Devoxx UK 2024
Modular Monolith - a Practical Alternative to Microservices @ Devoxx UK 2024Modular Monolith - a Practical Alternative to Microservices @ Devoxx UK 2024
Modular Monolith - a Practical Alternative to Microservices @ Devoxx UK 2024
 
API Governance and Monetization - The evolution of API governance
API Governance and Monetization -  The evolution of API governanceAPI Governance and Monetization -  The evolution of API governance
API Governance and Monetization - The evolution of API governance
 
Connector Corner: Accelerate revenue generation using UiPath API-centric busi...
Connector Corner: Accelerate revenue generation using UiPath API-centric busi...Connector Corner: Accelerate revenue generation using UiPath API-centric busi...
Connector Corner: Accelerate revenue generation using UiPath API-centric busi...
 
AI+A11Y 11MAY2024 HYDERBAD GAAD 2024 - HelloA11Y (11 May 2024)
AI+A11Y 11MAY2024 HYDERBAD GAAD 2024 - HelloA11Y (11 May 2024)AI+A11Y 11MAY2024 HYDERBAD GAAD 2024 - HelloA11Y (11 May 2024)
AI+A11Y 11MAY2024 HYDERBAD GAAD 2024 - HelloA11Y (11 May 2024)
 
CNIC Information System with Pakdata Cf In Pakistan
CNIC Information System with Pakdata Cf In PakistanCNIC Information System with Pakdata Cf In Pakistan
CNIC Information System with Pakdata Cf In Pakistan
 
MINDCTI Revenue Release Quarter One 2024
MINDCTI Revenue Release Quarter One 2024MINDCTI Revenue Release Quarter One 2024
MINDCTI Revenue Release Quarter One 2024
 
Exploring Multimodal Embeddings with Milvus
Exploring Multimodal Embeddings with MilvusExploring Multimodal Embeddings with Milvus
Exploring Multimodal Embeddings with Milvus
 
Introduction to use of FHIR Documents in ABDM
Introduction to use of FHIR Documents in ABDMIntroduction to use of FHIR Documents in ABDM
Introduction to use of FHIR Documents in ABDM
 
Corporate and higher education May webinar.pptx
Corporate and higher education May webinar.pptxCorporate and higher education May webinar.pptx
Corporate and higher education May webinar.pptx
 
DEV meet-up UiPath Document Understanding May 7 2024 Amsterdam
DEV meet-up UiPath Document Understanding May 7 2024 AmsterdamDEV meet-up UiPath Document Understanding May 7 2024 Amsterdam
DEV meet-up UiPath Document Understanding May 7 2024 Amsterdam
 

URL Design