SlideShare a Scribd company logo
TheHumble&Mighty
SharePointURLQueryString
?author=Patrick%20Doran
Or,
Dadalwayssaid
usetherightWebPart
FortherightJob
Fig1.
Whenyoupickthe
wrongtoolin
SharePoint
yourPresenter: PatrickDoran
● 15 Years as a Front-end Developer & UX Designer
● 6 Years in SharePoint, 2007, 2010 & 2013 & Online
● At work, builds public facing SharePoint sites
yourPresenter: PatrickDoran
Where I’m at:
● Twitter: @SwearPointJS
● LinkedIn: linkedin.com/in/patrickdoran
● And: patrickdoran.com
This presentation:
And: github.com/patd
HowmuchDoyouSharePoint?
★ What a list/library is and what
metadata columns are
★ Web parts: Putting them on a page
★ Calculated column?
★ A little HTML?
WhyareYouhere?
Because not everything is a
React-WebPack-SharePoint-Framework-Hybrid-Azure-Framework.js
Full Trust Solution
Continuous-Integration AWS Powered
solution for THE CLOUD™
WhyareYouhere?
Sometimes all you have is
talent/time for web parts.
This is OK.
Whereweendedup
Whereweendedup
★ All out of the
box web parts
★ Content approval
on list items
WhatIs.aspx?QueryString
★ Hangs on to the end of the URL, after the file name:
★ Usually ?key=value
Morethanonewayto filterwithqueryStrings
★ Question mark is always first one ?=
★ Ampersand are the rest (can be multiple) &=
page.aspx?game=thrones&winter=coming&knowsnothing=jonsnow
WhatIs.aspx?QueryString&k=searchtoo
WhatcanaSharePointQueryStringdoforme?
★ Share a link to a filtered view
★ Bookmark search results
★ Filter 50 web parts on a single page!
WhatcanaSharePointQueryStringdoforme?
★ Show your users just what they want by leveraging
SharePoint metadata and Search.
★ Create a knowledge base with a single list and 1
page (we’ll do this today)
★ Maybe Make a dashboard with just web parts
(if we have time)
https://css-tricks.com/snippets/javascript/get-url-variables/
ButwhataboutJavaScript?
QueryStringURL Worship
★ Web parts can be
loyal to the Query
String
★ When the query string
changes its
teachings, so do its
followers
Fig 1. Web Parts be like
4queryString
Thingswe’llTalk
about
1. Built in
[Search, List/Library]
1. Built in
[Search, List/Library]
2. Query String [URL] Web Part
[For web parts on a page]
4queryString
Thingswe’llTalk
about
1. Built in
[Search, List/Library]
3. Content Query Web Part
[For not-tables of content]
2. Query String [URL] Web Part
[For web parts on a page]
4queryString
Thingswe’llTalk
about
1. Built in
[Search, List/Library]
4. Mixed all together
[Some of each]
2. Query String [URL] Web Part
[For web parts on a page]
3. Content Query Web Part
[For not-tables of content]
4queryString
Thingswe’llTalk
about
Butmaybenot
ContentSearchWebParts
#sorry
FYI:
There’sQueryStringswith
DataViewWebPartsin
SharePointDesigner,too.
1. Hand-Typed
Built-In
Filtering
2kinds
1) Search
2) List/Library View
Builtin:
Search
Change the k= value
http://www.cityoflondon.gov.uk/searc
h/results.aspx?k=Parks
http://www.cityoflondon.gov.uk/searc
h/results.aspx?k=Recreation
k= Search term
results.aspx?k=Parks
k= Multiple Terms
results.aspx?k=Parks%20Recreation
u= Restrict by domain
results.aspx?k=Parks&u=https://cityoflondon.gov.uk
BuiltInSharePointSearchQueryStringsInAction!
Builtin:
List/Library
A regular old list:
https://connect.ncdot.gov/Lists/CDR
Example: Filtered by Division col
https://connect.ncdot.gov/Lists/CDR?
FilterField1=Division&FilterValue1=0
6
What’sthis?FilterField1=Division&FilterValue1=06
2 things to do here:
★ Specify the field to filter on
★ Specify the value to filter on
?FilterField1=Division
&FilterValue1=06
Filter 2 (or more) things
https://connect.ncdot.gov/Lists/CDR?FilterField1=Division&FilterValue1=06&F
ilterField2=County&FilterValue2=Columbus
Filter all (list view) web parts on a page!
https://patrickdoran.sharepoint.com/query-strings/Pages/Query-Strings-One-F
ilter-Many-Web-Parts.aspx?FilterField1=Name1&FilterValue1=Boston%20Red%20So
x
Sort on a field!
https://patrickdoran.sharepoint.com/query-strings/Lists/Baseball/Baseball.a
spx?SortField=yearID&SortDir=Asc
Demo 0
BuiltInSharePointQueryStringsInAction!
BuiltIn:Pros
★ Fast to set up.
★ Bookmarkable.
★ No web parts needed
★ Works w/anonymous permissions
★ List/Library: Up to 10!
BuiltIn:Cons
★ Must know internal field name of column (Though
this is good, too)
★ URL is weird to read
★ Only one sort field
★ Not permanent, unless you bookmark it or add it
as a link
InternalFieldNames
★ First name the field has when you create a column.
★ SharePoint controls this. Tricky to change after it’s made.
★ Hover over the column name in list settings to find it
2. QueryString
(URL)
WebPart
UsethisWebPart:QueryString(URL)Filter
Enableitifit’snotthere
If you don’t see the web parts, activate
Standard Site Collection Features
What’sitlooklike?
What’sitlooklike?
More control
★ Pick Your query
string key, like
?Year=
?Cheese=
Demo1
Makingtheconnection
01. Add Query String (URL)
Filter web part.
02. Click ‘Open the tool
pane’ to configure
Makingtheconnection
Configure
Filter Name = Just to help
you remember.
Query String Parameter
Name = What’s in the URL,
like: page.aspx?year=2013
Makingtheconnection
03. In List View Web Part,
edit, pick Connections
and then Get Filter
Values From and finally
Query String (URL)
Filter
You’re telling this web
part to obey the Query
string web part
Makingtheconnection
Specify Column
What list column should
your Query String URL
filter on? In this
case, Year.
Pro Tip: Your browser’s
popup blocker will
block this popup
window.
Makingtheconnection
04. Confirm and Test.
Query String URL Filter
web part will list any
other web parts it’s
connected to.
Now try your ?year= query
string!
Demo1Review
01. SharePoint List* with useful column (Year)
02. Added List View Web Part
03. Added Query String [URL] Filter Web Part
04. Connected them!
05. Changed URL = updated list view on this page
* Libraries work too!
Demo2:MultipleValues
Demo2:MultipleValues Review
01. List View Web Part
02. Added Query String Web Part, connected to Year Column
03. Added 2nd Query String Web Part, connected to Team
Name Column
04. Changed URL query string values for both Year and Team
Name = updated list view on this page
Demo3:Onefilter, ManyWebParts
The beginning of a Dashboard….
Demo3:Onefilter, ManyWebParts:Review
01. Added 5 List View Web Parts - (all from the same list,
but can be many)
02. Single Query String (URL) Filter Web Part Connected to
all the web parts on the page
03. Changed URL Query string = all web parts respond
QueryString(URL)WebPart: Pros
★ Name your own query key. ?this=awesome
★ Use Multiple filters to filter multiple web
parts.
★ Sorting configured in views
★ Can be mixed w/Content Query Web Parts
QueryString(URL)WebPart: Cons
★ One+ extra web part on a page per query
string.
★ Soooo much configuring
★ Can’t use SharePoint ID column to filter
★ List view Web Parts look like list view
web parts
3. ContentQuery
WebPart’sQuery
StringFilter
cQwP:WhyNotUseListViewWebParts?
★ List View Web Parts look like List View Web Parts.
★ Weigh a lot of KB
★ Depending on your site’s styling, Content Query Web Part
might look better.
* Content Search web parts work this way too, but harder to configure.
ContentQueryConfigure
In CQWP, under Additional
Filters, use this:
[PageQueryString:x]
(Where x is your query string
key, like Year)
Demo4:ContentQueryWebParts
Demo4:ContentQueryWebPartsReview
01. Added a Content Query Web Part to page and
configured it to reference our list
02. No extra web parts. Query string
functionality configured in CQWP itself.
03. URL query string works the same as our other
examples.
ContentQueryWebPartQueryString: Pros
★ Name your own query key. ?this=awesome
★ Combine Multiple filters to multiple web parts.
★ Can be mixed with List View query-string
filtered web parts, and share query strings
★ No extra web parts needed!
ContentQueryWebPartQueryString: Cons
★ Syntax is a little weird
★ CQWPs have only a few formatting options
w/out CSS+XSLT
★ Can’t re-sort without editing web part
4.Alltogethernow
AllTogetherNow
★ Add List View Web Parts
★ Add Query String (URL) Filter Web Parts
★ Add Content Query Web Parts
★ Use the same ?key=value URL
filtering!
Demo5:QueryString AllThethings
Demo5:QueryString AllThethingsReview
01. 1 List and 1 library, same Metadata columns
(Year and Team Name)
02. Add 2 CQWPs and 2 LVWPs
03. Add Query String Web Part each for Year and
Team Name.
04. Configure!
Spruceitupabit
Spruceitupabit+navigation
SameList
+GroupByWebPart
+[calculatedColumn]
=AutomaticNavigation
Figureoutthingsfirst
1. What’s your Query String URL setup?
(Map out columns for ?key=value, or ?key=value&key2=valueX)
2. What Column is the link name text in?
(Does the link say ‘Arizona Diamondbacks’ or ‘1999’ ?)
Makeyourcalculatedcolumn
★ Concatenate!
★ Data type must be number to
render as HTML link
★ Can use most columns, but
not ID
★ Be patient when clicking
[Ok]
Makeyourcalculatedcolumn
Example Syntax:
=CONCATENATE("<a
href='pageName.aspx?TeamName=",[Team
Name],"&Year=",Year,"'>",[Team Name],"</a>")
Makeyourcalculatedcolumn
★ Save your new calculated column
★ Add the column to the view
★ Self-updating clickable link!
Sitback,letContributorsdotheirthing
Sitback,letContributorsdotheirthing
Sitback,letContributorsdotheirthing
recap
Query String-based
techinques we covered
1. Built in
[Search, List/Library]
4. Mixed all together
[Some of each]
2. Query String [URL] Web Part
[For web parts on a page]
3. Content Query Web Part
[For not-tables of content]
BONUS:
JavascriptQuery
StringURL!
Web parts for some stuff,
JavaScript to add some
styling/context
youknowJSandyoulikeChromeDevTools?
What are my Query Strings?
console.log(window.location.search)
AssumesyouJSandyoulikeChromeDevTools
What are the values of my Query Strings?
function getQueryVariable(variable) {
var query = window.location.search.substring(1);
var vars = query.split("&amp;");
for (var i=0;i&lt;vars.length;i++) {
var pair = vars[i].split("=");
if (pair[0] == variable) {
return pair[1];
}
}
alert('Query Variable ' + variable + ' not found');
}
https://patrickdoran.sharepoint.com/query-strings/Pages/Query-String-Demo-Java
script.aspx
https://patrickdoran.sharepoint.com/query-strings/Pages/Query-String-Demo-Java
script.aspx?FilterField1=Name1&FilterValue1=Boston%20Red%20Sox
// Function at gets the value of a query string key-value pair.
// expects the key to be passed to it.
var getQueryVariable = function(variable) {
var query = window.location.search.substring(1);
var vars = query.split("&");
for (var i=0;i<vars.length;i++) {
var pair = vars[i].split("=");
if(pair[0] == variable){return pair[1];}
}
return(false);

More Related Content

What's hot

Search Topology and Optimization
Search Topology and OptimizationSearch Topology and Optimization
Search Topology and Optimization
Mike Maadarani
 
Wordpress & HTML5 by Rob Larsen
Wordpress & HTML5 by Rob LarsenWordpress & HTML5 by Rob Larsen
Wordpress & HTML5 by Rob Larsen
George Mamadashvili
 
Developing Search-driven application in SharePoint 2013
 Developing Search-driven application in SharePoint 2013  Developing Search-driven application in SharePoint 2013
Developing Search-driven application in SharePoint 2013
SPC Adriatics
 
Developing Branding Solutions for 2013
Developing Branding Solutions for 2013Developing Branding Solutions for 2013
Developing Branding Solutions for 2013
Thomas Daly
 
Django 1.10.3 Getting started
Django 1.10.3 Getting startedDjango 1.10.3 Getting started
Django 1.10.3 Getting started
MoniaJ
 
Power Automate Techniques that "Saved Our Bacon"
Power Automate Techniques that "Saved Our Bacon"Power Automate Techniques that "Saved Our Bacon"
Power Automate Techniques that "Saved Our Bacon"
Thomas Duff
 
Developing Branding Solutions for 2013
Developing Branding Solutions for 2013Developing Branding Solutions for 2013
Developing Branding Solutions for 2013
Thomas Daly
 
Power Automate Techniques that "Save
Power Automate Techniques that "SavePower Automate Techniques that "Save
Power Automate Techniques that "Save
Thomas Duff
 
appengine ja night #25 Google App Engine for PHP (English)
appengine ja night #25 Google App Engine for PHP (English)appengine ja night #25 Google App Engine for PHP (English)
appengine ja night #25 Google App Engine for PHP (English)
Ryo Yamasaki
 

What's hot (9)

Search Topology and Optimization
Search Topology and OptimizationSearch Topology and Optimization
Search Topology and Optimization
 
Wordpress & HTML5 by Rob Larsen
Wordpress & HTML5 by Rob LarsenWordpress & HTML5 by Rob Larsen
Wordpress & HTML5 by Rob Larsen
 
Developing Search-driven application in SharePoint 2013
 Developing Search-driven application in SharePoint 2013  Developing Search-driven application in SharePoint 2013
Developing Search-driven application in SharePoint 2013
 
Developing Branding Solutions for 2013
Developing Branding Solutions for 2013Developing Branding Solutions for 2013
Developing Branding Solutions for 2013
 
Django 1.10.3 Getting started
Django 1.10.3 Getting startedDjango 1.10.3 Getting started
Django 1.10.3 Getting started
 
Power Automate Techniques that "Saved Our Bacon"
Power Automate Techniques that "Saved Our Bacon"Power Automate Techniques that "Saved Our Bacon"
Power Automate Techniques that "Saved Our Bacon"
 
Developing Branding Solutions for 2013
Developing Branding Solutions for 2013Developing Branding Solutions for 2013
Developing Branding Solutions for 2013
 
Power Automate Techniques that "Save
Power Automate Techniques that "SavePower Automate Techniques that "Save
Power Automate Techniques that "Save
 
appengine ja night #25 Google App Engine for PHP (English)
appengine ja night #25 Google App Engine for PHP (English)appengine ja night #25 Google App Engine for PHP (English)
appengine ja night #25 Google App Engine for PHP (English)
 

Similar to The Humble & Mighty SharePoint URL Query String

Essentials for the SharePoint Power User - SharePoint Engage Raleigh 2017
Essentials for the SharePoint Power User - SharePoint Engage Raleigh 2017Essentials for the SharePoint Power User - SharePoint Engage Raleigh 2017
Essentials for the SharePoint Power User - SharePoint Engage Raleigh 2017
Drew Madelung
 
SUGUK Cambridge - Display Templates & JSLink for IT Pros
SUGUK Cambridge - Display Templates & JSLink for IT ProsSUGUK Cambridge - Display Templates & JSLink for IT Pros
SUGUK Cambridge - Display Templates & JSLink for IT Pros
Paul Hunt
 
SPSSTHLM - Using JSLink and Display Templates for ITPros
SPSSTHLM - Using JSLink and Display Templates for ITProsSPSSTHLM - Using JSLink and Display Templates for ITPros
SPSSTHLM - Using JSLink and Display Templates for ITPros
Paul Hunt
 
Spsbe using js-linkanddisplaytemplates
Spsbe   using js-linkanddisplaytemplatesSpsbe   using js-linkanddisplaytemplates
Spsbe using js-linkanddisplaytemplates
Paul Hunt
 
SharePoint Saturday Belgium 2014 - Using JSLink and Display Templates with th...
SharePoint Saturday Belgium 2014 - Using JSLink and Display Templates with th...SharePoint Saturday Belgium 2014 - Using JSLink and Display Templates with th...
SharePoint Saturday Belgium 2014 - Using JSLink and Display Templates with th...BIWUG
 
#SPSLondon - Session 2 JSLink for IT Pros
#SPSLondon - Session 2 JSLink for IT Pros#SPSLondon - Session 2 JSLink for IT Pros
#SPSLondon - Session 2 JSLink for IT Pros
Paul Hunt
 
Essentials for the SharePoint Power User - SPTechCon San Francisco 2016
Essentials for the SharePoint Power User - SPTechCon San Francisco 2016Essentials for the SharePoint Power User - SPTechCon San Francisco 2016
Essentials for the SharePoint Power User - SPTechCon San Francisco 2016
Drew Madelung
 
Bringing Zest to SharePoint Sites Using Out-of-the-Box Technology
Bringing Zest to SharePoint Sites Using Out-of-the-Box TechnologyBringing Zest to SharePoint Sites Using Out-of-the-Box Technology
Bringing Zest to SharePoint Sites Using Out-of-the-Box Technologyjoelsef
 
Product Catalog and IT Service Management
Product Catalog and IT Service ManagementProduct Catalog and IT Service Management
Product Catalog and IT Service Management
Drew Madelung
 
Using js link and display templates
Using js link and display templatesUsing js link and display templates
Using js link and display templates
Paul Hunt
 
Content by query web part
Content by query web partContent by query web part
Content by query web partIslamKhattab
 
SPSNYC17 - The Wall: Overcoming SharePoint’s Site Collection Boundary
SPSNYC17 - The Wall: Overcoming SharePoint’s Site Collection BoundarySPSNYC17 - The Wall: Overcoming SharePoint’s Site Collection Boundary
SPSNYC17 - The Wall: Overcoming SharePoint’s Site Collection Boundary
Jonathan Ralton
 
JSLink for ITPros - SharePoint Saturday Jersey
JSLink for ITPros - SharePoint Saturday JerseyJSLink for ITPros - SharePoint Saturday Jersey
JSLink for ITPros - SharePoint Saturday Jersey
Paul Hunt
 
SharePoint 2010 Application Development Overview
SharePoint 2010 Application Development OverviewSharePoint 2010 Application Development Overview
SharePoint 2010 Application Development OverviewRob Windsor
 
Usability AJAX and other ASP.NET Features
Usability AJAX and other ASP.NET FeaturesUsability AJAX and other ASP.NET Features
Usability AJAX and other ASP.NET Features
Peter Gfader
 
Django Introduction & Tutorial
Django Introduction & TutorialDjango Introduction & Tutorial
Django Introduction & Tutorial
之宇 趙
 
SharePoint Designer Workflows - Nuts, Bolts and Examples
SharePoint Designer Workflows - Nuts, Bolts and ExamplesSharePoint Designer Workflows - Nuts, Bolts and Examples
SharePoint Designer Workflows - Nuts, Bolts and Examples
Drew Madelung
 
SPSNE17 - The Wall: Overcoming SharePoint’s Site Collection Boundary
SPSNE17 - The Wall: Overcoming SharePoint’s Site Collection BoundarySPSNE17 - The Wall: Overcoming SharePoint’s Site Collection Boundary
SPSNE17 - The Wall: Overcoming SharePoint’s Site Collection Boundary
Jonathan Ralton
 
SharePoint Branding From Start to Finish
SharePoint Branding From Start to FinishSharePoint Branding From Start to Finish
SharePoint Branding From Start to Finish
Kanwal Khipple
 
Best Practices to SharePoint Architecture Fundamentals NZ & AUS
Best Practices to SharePoint Architecture Fundamentals NZ & AUSBest Practices to SharePoint Architecture Fundamentals NZ & AUS
Best Practices to SharePoint Architecture Fundamentals NZ & AUS
guest7c2e070
 

Similar to The Humble & Mighty SharePoint URL Query String (20)

Essentials for the SharePoint Power User - SharePoint Engage Raleigh 2017
Essentials for the SharePoint Power User - SharePoint Engage Raleigh 2017Essentials for the SharePoint Power User - SharePoint Engage Raleigh 2017
Essentials for the SharePoint Power User - SharePoint Engage Raleigh 2017
 
SUGUK Cambridge - Display Templates & JSLink for IT Pros
SUGUK Cambridge - Display Templates & JSLink for IT ProsSUGUK Cambridge - Display Templates & JSLink for IT Pros
SUGUK Cambridge - Display Templates & JSLink for IT Pros
 
SPSSTHLM - Using JSLink and Display Templates for ITPros
SPSSTHLM - Using JSLink and Display Templates for ITProsSPSSTHLM - Using JSLink and Display Templates for ITPros
SPSSTHLM - Using JSLink and Display Templates for ITPros
 
Spsbe using js-linkanddisplaytemplates
Spsbe   using js-linkanddisplaytemplatesSpsbe   using js-linkanddisplaytemplates
Spsbe using js-linkanddisplaytemplates
 
SharePoint Saturday Belgium 2014 - Using JSLink and Display Templates with th...
SharePoint Saturday Belgium 2014 - Using JSLink and Display Templates with th...SharePoint Saturday Belgium 2014 - Using JSLink and Display Templates with th...
SharePoint Saturday Belgium 2014 - Using JSLink and Display Templates with th...
 
#SPSLondon - Session 2 JSLink for IT Pros
#SPSLondon - Session 2 JSLink for IT Pros#SPSLondon - Session 2 JSLink for IT Pros
#SPSLondon - Session 2 JSLink for IT Pros
 
Essentials for the SharePoint Power User - SPTechCon San Francisco 2016
Essentials for the SharePoint Power User - SPTechCon San Francisco 2016Essentials for the SharePoint Power User - SPTechCon San Francisco 2016
Essentials for the SharePoint Power User - SPTechCon San Francisco 2016
 
Bringing Zest to SharePoint Sites Using Out-of-the-Box Technology
Bringing Zest to SharePoint Sites Using Out-of-the-Box TechnologyBringing Zest to SharePoint Sites Using Out-of-the-Box Technology
Bringing Zest to SharePoint Sites Using Out-of-the-Box Technology
 
Product Catalog and IT Service Management
Product Catalog and IT Service ManagementProduct Catalog and IT Service Management
Product Catalog and IT Service Management
 
Using js link and display templates
Using js link and display templatesUsing js link and display templates
Using js link and display templates
 
Content by query web part
Content by query web partContent by query web part
Content by query web part
 
SPSNYC17 - The Wall: Overcoming SharePoint’s Site Collection Boundary
SPSNYC17 - The Wall: Overcoming SharePoint’s Site Collection BoundarySPSNYC17 - The Wall: Overcoming SharePoint’s Site Collection Boundary
SPSNYC17 - The Wall: Overcoming SharePoint’s Site Collection Boundary
 
JSLink for ITPros - SharePoint Saturday Jersey
JSLink for ITPros - SharePoint Saturday JerseyJSLink for ITPros - SharePoint Saturday Jersey
JSLink for ITPros - SharePoint Saturday Jersey
 
SharePoint 2010 Application Development Overview
SharePoint 2010 Application Development OverviewSharePoint 2010 Application Development Overview
SharePoint 2010 Application Development Overview
 
Usability AJAX and other ASP.NET Features
Usability AJAX and other ASP.NET FeaturesUsability AJAX and other ASP.NET Features
Usability AJAX and other ASP.NET Features
 
Django Introduction & Tutorial
Django Introduction & TutorialDjango Introduction & Tutorial
Django Introduction & Tutorial
 
SharePoint Designer Workflows - Nuts, Bolts and Examples
SharePoint Designer Workflows - Nuts, Bolts and ExamplesSharePoint Designer Workflows - Nuts, Bolts and Examples
SharePoint Designer Workflows - Nuts, Bolts and Examples
 
SPSNE17 - The Wall: Overcoming SharePoint’s Site Collection Boundary
SPSNE17 - The Wall: Overcoming SharePoint’s Site Collection BoundarySPSNE17 - The Wall: Overcoming SharePoint’s Site Collection Boundary
SPSNE17 - The Wall: Overcoming SharePoint’s Site Collection Boundary
 
SharePoint Branding From Start to Finish
SharePoint Branding From Start to FinishSharePoint Branding From Start to Finish
SharePoint Branding From Start to Finish
 
Best Practices to SharePoint Architecture Fundamentals NZ & AUS
Best Practices to SharePoint Architecture Fundamentals NZ & AUSBest Practices to SharePoint Architecture Fundamentals NZ & AUS
Best Practices to SharePoint Architecture Fundamentals NZ & AUS
 

Recently uploaded

Monitoring Java Application Security with JDK Tools and JFR Events
Monitoring Java Application Security with JDK Tools and JFR EventsMonitoring Java Application Security with JDK Tools and JFR Events
Monitoring Java Application Security with JDK Tools and JFR Events
Ana-Maria Mihalceanu
 
Mind map of terminologies used in context of Generative AI
Mind map of terminologies used in context of Generative AIMind map of terminologies used in context of Generative AI
Mind map of terminologies used in context of Generative AI
Kumud Singh
 
Epistemic Interaction - tuning interfaces to provide information for AI support
Epistemic Interaction - tuning interfaces to provide information for AI supportEpistemic Interaction - tuning interfaces to provide information for AI support
Epistemic Interaction - tuning interfaces to provide information for AI support
Alan Dix
 
Secstrike : Reverse Engineering & Pwnable tools for CTF.pptx
Secstrike : Reverse Engineering & Pwnable tools for CTF.pptxSecstrike : Reverse Engineering & Pwnable tools for CTF.pptx
Secstrike : Reverse Engineering & Pwnable tools for CTF.pptx
nkrafacyberclub
 
Enchancing adoption of Open Source Libraries. A case study on Albumentations.AI
Enchancing adoption of Open Source Libraries. A case study on Albumentations.AIEnchancing adoption of Open Source Libraries. A case study on Albumentations.AI
Enchancing adoption of Open Source Libraries. A case study on Albumentations.AI
Vladimir Iglovikov, Ph.D.
 
GraphSummit Singapore | Graphing Success: Revolutionising Organisational Stru...
GraphSummit Singapore | Graphing Success: Revolutionising Organisational Stru...GraphSummit Singapore | Graphing Success: Revolutionising Organisational Stru...
GraphSummit Singapore | Graphing Success: Revolutionising Organisational Stru...
Neo4j
 
Communications Mining Series - Zero to Hero - Session 1
Communications Mining Series - Zero to Hero - Session 1Communications Mining Series - Zero to Hero - Session 1
Communications Mining Series - Zero to Hero - Session 1
DianaGray10
 
みなさんこんにちはこれ何文字まで入るの?40文字以下不可とか本当に意味わからないけどこれ限界文字数書いてないからマジでやばい文字数いけるんじゃないの?えこ...
みなさんこんにちはこれ何文字まで入るの?40文字以下不可とか本当に意味わからないけどこれ限界文字数書いてないからマジでやばい文字数いけるんじゃないの?えこ...みなさんこんにちはこれ何文字まで入るの?40文字以下不可とか本当に意味わからないけどこれ限界文字数書いてないからマジでやばい文字数いけるんじゃないの?えこ...
みなさんこんにちはこれ何文字まで入るの?40文字以下不可とか本当に意味わからないけどこれ限界文字数書いてないからマジでやばい文字数いけるんじゃないの?えこ...
名前 です男
 
zkStudyClub - Reef: Fast Succinct Non-Interactive Zero-Knowledge Regex Proofs
zkStudyClub - Reef: Fast Succinct Non-Interactive Zero-Knowledge Regex ProofszkStudyClub - Reef: Fast Succinct Non-Interactive Zero-Knowledge Regex Proofs
zkStudyClub - Reef: Fast Succinct Non-Interactive Zero-Knowledge Regex Proofs
Alex Pruden
 
Observability Concepts EVERY Developer Should Know -- DeveloperWeek Europe.pdf
Observability Concepts EVERY Developer Should Know -- DeveloperWeek Europe.pdfObservability Concepts EVERY Developer Should Know -- DeveloperWeek Europe.pdf
Observability Concepts EVERY Developer Should Know -- DeveloperWeek Europe.pdf
Paige Cruz
 
Why You Should Replace Windows 11 with Nitrux Linux 3.5.0 for enhanced perfor...
Why You Should Replace Windows 11 with Nitrux Linux 3.5.0 for enhanced perfor...Why You Should Replace Windows 11 with Nitrux Linux 3.5.0 for enhanced perfor...
Why You Should Replace Windows 11 with Nitrux Linux 3.5.0 for enhanced perfor...
SOFTTECHHUB
 
Climate Impact of Software Testing at Nordic Testing Days
Climate Impact of Software Testing at Nordic Testing DaysClimate Impact of Software Testing at Nordic Testing Days
Climate Impact of Software Testing at Nordic Testing Days
Kari Kakkonen
 
A tale of scale & speed: How the US Navy is enabling software delivery from l...
A tale of scale & speed: How the US Navy is enabling software delivery from l...A tale of scale & speed: How the US Navy is enabling software delivery from l...
A tale of scale & speed: How the US Navy is enabling software delivery from l...
sonjaschweigert1
 
Microsoft - Power Platform_G.Aspiotis.pdf
Microsoft - Power Platform_G.Aspiotis.pdfMicrosoft - Power Platform_G.Aspiotis.pdf
Microsoft - Power Platform_G.Aspiotis.pdf
Uni Systems S.M.S.A.
 
Large Language Model (LLM) and it’s Geospatial Applications
Large Language Model (LLM) and it’s Geospatial ApplicationsLarge Language Model (LLM) and it’s Geospatial Applications
Large Language Model (LLM) and it’s Geospatial Applications
Rohit Gautam
 
GraphSummit Singapore | Neo4j Product Vision & Roadmap - Q2 2024
GraphSummit Singapore | Neo4j Product Vision & Roadmap - Q2 2024GraphSummit Singapore | Neo4j Product Vision & Roadmap - Q2 2024
GraphSummit Singapore | Neo4j Product Vision & Roadmap - Q2 2024
Neo4j
 
20240605 QFM017 Machine Intelligence Reading List May 2024
20240605 QFM017 Machine Intelligence Reading List May 202420240605 QFM017 Machine Intelligence Reading List May 2024
20240605 QFM017 Machine Intelligence Reading List May 2024
Matthew Sinclair
 
GridMate - End to end testing is a critical piece to ensure quality and avoid...
GridMate - End to end testing is a critical piece to ensure quality and avoid...GridMate - End to end testing is a critical piece to ensure quality and avoid...
GridMate - End to end testing is a critical piece to ensure quality and avoid...
ThomasParaiso2
 
GraphRAG is All You need? LLM & Knowledge Graph
GraphRAG is All You need? LLM & Knowledge GraphGraphRAG is All You need? LLM & Knowledge Graph
GraphRAG is All You need? LLM & Knowledge Graph
Guy Korland
 
GraphSummit Singapore | Enhancing Changi Airport Group's Passenger Experience...
GraphSummit Singapore | Enhancing Changi Airport Group's Passenger Experience...GraphSummit Singapore | Enhancing Changi Airport Group's Passenger Experience...
GraphSummit Singapore | Enhancing Changi Airport Group's Passenger Experience...
Neo4j
 

Recently uploaded (20)

Monitoring Java Application Security with JDK Tools and JFR Events
Monitoring Java Application Security with JDK Tools and JFR EventsMonitoring Java Application Security with JDK Tools and JFR Events
Monitoring Java Application Security with JDK Tools and JFR Events
 
Mind map of terminologies used in context of Generative AI
Mind map of terminologies used in context of Generative AIMind map of terminologies used in context of Generative AI
Mind map of terminologies used in context of Generative AI
 
Epistemic Interaction - tuning interfaces to provide information for AI support
Epistemic Interaction - tuning interfaces to provide information for AI supportEpistemic Interaction - tuning interfaces to provide information for AI support
Epistemic Interaction - tuning interfaces to provide information for AI support
 
Secstrike : Reverse Engineering & Pwnable tools for CTF.pptx
Secstrike : Reverse Engineering & Pwnable tools for CTF.pptxSecstrike : Reverse Engineering & Pwnable tools for CTF.pptx
Secstrike : Reverse Engineering & Pwnable tools for CTF.pptx
 
Enchancing adoption of Open Source Libraries. A case study on Albumentations.AI
Enchancing adoption of Open Source Libraries. A case study on Albumentations.AIEnchancing adoption of Open Source Libraries. A case study on Albumentations.AI
Enchancing adoption of Open Source Libraries. A case study on Albumentations.AI
 
GraphSummit Singapore | Graphing Success: Revolutionising Organisational Stru...
GraphSummit Singapore | Graphing Success: Revolutionising Organisational Stru...GraphSummit Singapore | Graphing Success: Revolutionising Organisational Stru...
GraphSummit Singapore | Graphing Success: Revolutionising Organisational Stru...
 
Communications Mining Series - Zero to Hero - Session 1
Communications Mining Series - Zero to Hero - Session 1Communications Mining Series - Zero to Hero - Session 1
Communications Mining Series - Zero to Hero - Session 1
 
みなさんこんにちはこれ何文字まで入るの?40文字以下不可とか本当に意味わからないけどこれ限界文字数書いてないからマジでやばい文字数いけるんじゃないの?えこ...
みなさんこんにちはこれ何文字まで入るの?40文字以下不可とか本当に意味わからないけどこれ限界文字数書いてないからマジでやばい文字数いけるんじゃないの?えこ...みなさんこんにちはこれ何文字まで入るの?40文字以下不可とか本当に意味わからないけどこれ限界文字数書いてないからマジでやばい文字数いけるんじゃないの?えこ...
みなさんこんにちはこれ何文字まで入るの?40文字以下不可とか本当に意味わからないけどこれ限界文字数書いてないからマジでやばい文字数いけるんじゃないの?えこ...
 
zkStudyClub - Reef: Fast Succinct Non-Interactive Zero-Knowledge Regex Proofs
zkStudyClub - Reef: Fast Succinct Non-Interactive Zero-Knowledge Regex ProofszkStudyClub - Reef: Fast Succinct Non-Interactive Zero-Knowledge Regex Proofs
zkStudyClub - Reef: Fast Succinct Non-Interactive Zero-Knowledge Regex Proofs
 
Observability Concepts EVERY Developer Should Know -- DeveloperWeek Europe.pdf
Observability Concepts EVERY Developer Should Know -- DeveloperWeek Europe.pdfObservability Concepts EVERY Developer Should Know -- DeveloperWeek Europe.pdf
Observability Concepts EVERY Developer Should Know -- DeveloperWeek Europe.pdf
 
Why You Should Replace Windows 11 with Nitrux Linux 3.5.0 for enhanced perfor...
Why You Should Replace Windows 11 with Nitrux Linux 3.5.0 for enhanced perfor...Why You Should Replace Windows 11 with Nitrux Linux 3.5.0 for enhanced perfor...
Why You Should Replace Windows 11 with Nitrux Linux 3.5.0 for enhanced perfor...
 
Climate Impact of Software Testing at Nordic Testing Days
Climate Impact of Software Testing at Nordic Testing DaysClimate Impact of Software Testing at Nordic Testing Days
Climate Impact of Software Testing at Nordic Testing Days
 
A tale of scale & speed: How the US Navy is enabling software delivery from l...
A tale of scale & speed: How the US Navy is enabling software delivery from l...A tale of scale & speed: How the US Navy is enabling software delivery from l...
A tale of scale & speed: How the US Navy is enabling software delivery from l...
 
Microsoft - Power Platform_G.Aspiotis.pdf
Microsoft - Power Platform_G.Aspiotis.pdfMicrosoft - Power Platform_G.Aspiotis.pdf
Microsoft - Power Platform_G.Aspiotis.pdf
 
Large Language Model (LLM) and it’s Geospatial Applications
Large Language Model (LLM) and it’s Geospatial ApplicationsLarge Language Model (LLM) and it’s Geospatial Applications
Large Language Model (LLM) and it’s Geospatial Applications
 
GraphSummit Singapore | Neo4j Product Vision & Roadmap - Q2 2024
GraphSummit Singapore | Neo4j Product Vision & Roadmap - Q2 2024GraphSummit Singapore | Neo4j Product Vision & Roadmap - Q2 2024
GraphSummit Singapore | Neo4j Product Vision & Roadmap - Q2 2024
 
20240605 QFM017 Machine Intelligence Reading List May 2024
20240605 QFM017 Machine Intelligence Reading List May 202420240605 QFM017 Machine Intelligence Reading List May 2024
20240605 QFM017 Machine Intelligence Reading List May 2024
 
GridMate - End to end testing is a critical piece to ensure quality and avoid...
GridMate - End to end testing is a critical piece to ensure quality and avoid...GridMate - End to end testing is a critical piece to ensure quality and avoid...
GridMate - End to end testing is a critical piece to ensure quality and avoid...
 
GraphRAG is All You need? LLM & Knowledge Graph
GraphRAG is All You need? LLM & Knowledge GraphGraphRAG is All You need? LLM & Knowledge Graph
GraphRAG is All You need? LLM & Knowledge Graph
 
GraphSummit Singapore | Enhancing Changi Airport Group's Passenger Experience...
GraphSummit Singapore | Enhancing Changi Airport Group's Passenger Experience...GraphSummit Singapore | Enhancing Changi Airport Group's Passenger Experience...
GraphSummit Singapore | Enhancing Changi Airport Group's Passenger Experience...
 

The Humble & Mighty SharePoint URL Query String