What do I use?
I posted a short list of my most used tools at
http://blog.cjvandyk.com/p/essentials.html
This is not an exhaustive list but will be growing over time so be sure to bookmark it and check back every so often. 😎
Code forth
C
The SharePoint Knowledge Collection of Cornelius J. van Dyk, an 9 x SharePoint MVP
I posted a short list of my most used tools at
http://blog.cjvandyk.com/p/essentials.html
This is not an exhaustive list but will be growing over time so be sure to bookmark it and check back every so often. 😎
Code forth
C
Posted in
Using Powershell it's pretty easy to get your thumbprint. To get the list of all certificates in the local machine wide store, use:
Get-ChildItem -Path Cert:LocalMachine\MY
To get the list of all certificates in for the currently logged on user, use:
Get-ChildItem -Path Cert:CurrentUser\MY
Happy coding!
C
Posted in Certificate, ModernAuth, MSAL, Thumbprint
Posted in C#, Mathematics, Prime Numbers
Ever wondered what the new SharePoint Online URLs are all about? Take for example https://cjvandyk.sharepoint.us/:x:/r/sites/Site1...
What exactly does the /:x: and the /r between the domain and the /sites mean? Well wonder no more...
/:b: | |
/:f: | Folder |
/:i: | Image |
/:o: | OneNote |
/:p: | PowerPoint |
/:t: | Text |
/:u: | Undefined |
/:v: | Video |
/:w: | Word |
/:x: | Excel |
Posted in SharePoint Online
Posted in C#, Extensions, GitHub, New Release, NuGet
" string truth = \"https://blog.cjvandyk.com ROCKS !!! \"".RemoveExtraSpace()
will return
"string truth = \"https://blog.cjvandyk.com ROCKS !!! \""
Posted in C#, Extensions, GitHub, NuGet
The .IsVowel() method was added to the System.Char, System.String and System.Text.StringBuilder objects. It allows the developer the ability to check a substring for a vowel e.g.
"https://blog.cjvandyk.com ROCKS!!!".SubString(10, 1).IsVowel()
will return True because it's checking the "o" while
"https://blog.cjvandyk.com ROCKS!!!".SubString(11, 1).IsVowel()
Posted in C#, Extensions, GitHub, NuGet
The .IsZipCode() method was added to both the System.String and System.Text.StringBuilder objects. It allows the developer the ability to quickly check if a string is in valid US zip code format e.g.
"12345".IsZipCode()
will return True as will
"12345-6789".IsZipCode()
"12345678".IsZipCode()
Posted in C#, Extensions, GitHub, NuGet
The .IsStrong() method was added to both the System.String and System.Text.StringBuilder objects. It allows the developer the ability to quickly check if a string is a valid strong password e.g.
"blog.cjvandyk.com Rocks!".IsStrong()
will return True. You can limit the number of aspect matches thus:
"blog.cjvandyk.com rocks!".IsStrong(3)
"blog.cjvandyk.com rocks!".IsStrong()
Posted in C#, Extensions, GitHub, NuGet
The .HasSymbol() method was added to both the System.String and System.Text.StringBuilder objects. It allows the developer the ability to quickly check if a string contains symbols or special characters e.g.
"blog.cjvandyk.com Rocks!".HasSymbol()
will return True whereas:
"blogcjvandykcom".HasSymbol()
Posted in C#, Extensions, GitHub, NuGet
ChocoTheme by .css{mayo} | Blogger Templates by Blogger Template Place | supported by One-4-All | powered by Blogger