This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Windows Registry Editor Version 5.00 | |
[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows Search\Gathering Manager\Plugins] | |
[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows Search\Gathering Manager\Plugins\.pdf] | |
"ProgId"="AcroIFilter.AcroIFilter" | |
"CLSID"="{E8978DA6-047F-4E3D-9C78-CDBE46041603}" | |
"DefaultDisabled"=dword:00000000 | |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$popplerPath = ".\poppler\bin\pdftotext.exe" | |
$maxDocs = 1000 | |
$inputPath = ".\source" | |
$outputPath = ".\dest" | |
function Convert-FilesToMarkdown { | |
param( | |
[string]$inputFolderPath, | |
[string]$outputFolderPath | |
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# authored @alirobe for @sopewebtech 2022-06-17 | |
# pnp-list-copy.ps1 : https://gist.githubusercontent.com/alirobe/4187b0f073dc2eba5207f312a01ddab6/ | |
# this copies list values from source to target | |
# before using this script, create a new list 'from existing list' in the same site | |
# then, plug values in below and run. should work for most field types. any issues let me know. | |
# todo: add batching, add field types | |
# licensed under GPL V2 | |
$Site = "https://notproduction.sharepoint.com/sites/not-sproket-4/" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using Microsoft.AspNetCore.Mvc; | |
using Umbraco.Cms.Core.Services; | |
using MimeKit; | |
using Umbraco.Cms.Core.Models; | |
using Umbraco.Cms.Core.IO; | |
namespace UmbracoProject.Controllers | |
{ | |
public class SecureMediaController : Controller | |
{ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
SELECT replace(umbracoRedirectUrl.url, '1075/', '') as url | |
,umbracoNode.id | |
,umbracoRedirectUrl.contentKey | |
FROM umbracoRedirectUrl | |
INNER JOIN umbracoNode on umbracoRedirectUrl.contentKey = umbracoNode.uniqueID | |
# Run in SSMS, right click results and export to CSV. Import CSV to SEOChecker. | |
# NB replace 1075 with your root node ID |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using Newtonsoft.Json; | |
using System; | |
using System.Collections.Generic; | |
using System.Collections.Specialized; | |
using System.Dynamic; | |
using System.Net; | |
using System.Text.RegularExpressions; | |
using Umbraco.Core.Logging; | |
using Umbraco.Forms.Core; | |
using Umbraco.Forms.Core.Attributes; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!-- | |
via: https://www.linkedin.com/pulse/play-video-file-from-sharepoint-document-library-mobile-hai-nguyen | |
alt: https://threewill.com/sharepoint-videos-in-ios-safari-iphone-ipad-unforgiving/ | |
--> | |
<video controls="true" style="min-height:360px;width:100%;"> | |
<source src="/PublishingImages/your-video.mp4"> | |
Sorry, your browser does not support playback of this video. | |
</video> | |
<script> | |
if (/iPhone|iPad|iPod/i.test(navigator.userAgent) || document.location.search.indexOf('video-ios-test') != -1) { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"recommendations": [ | |
"eg2.tslint", | |
"rbbit.typescript-hero", | |
"pmneo.tsimporter", | |
"esbenp.prettier-vscode", | |
"christian-kohler.path-intellisense", | |
"CoenraadS.bracket-pair-colorizer", | |
"eamodio.gitlens", | |
"ryu1kn.partial-diff", |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
if(!window.parent.document.querySelector('style#v9removepadding')) { | |
var style = window.parent.document.createElement('style'); | |
style.id = "v9removepadding"; | |
style.innerText = ".acwallEmailView .emailexpandedaccordion { margin:0; width:100% } TABLE.ms-crm-FormSection td { padding: 4px 1px 1px 16px !important; min-height: 26px; }"; | |
window.parent.document.body.appendChild(style); | |
} |
NewerOlder