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
# Ensure you have installed PnP Powershell | |
# https://pnp.github.io/powershell/articles/installation.html | |
# Set Variables | |
$SiteURL = "https://{URL}.sharepoint.com/sites/" | |
# ragged array of two or three parameters: | |
# - the name of the site (to be concatenated with the $SiteURL), | |
# - the root folder of the site to prune | |
# - optionally any message to display to the user while the script runs for that folder | |
$Sites = ("{site}","{root folder}"),("{site}","{root folder}","{comment to display}"),("{site}","root folder}") |
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
Verifying that +offbeatmammal is my blockchain ID. https://onename.com/offbeatmammal |
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
package com.offbeatmammal.android.webview; | |
import android.app.Activity; | |
import android.os.Bundle; | |
import android.webkit.WebChromeClient; | |
import android.webkit.WebSettings; | |
import android.webkit.WebView; | |
import android.widget.RelativeLayout; | |
public class WebViewActivity extends Activity { |
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
<! DOCTYPE html> | |
<html> | |
<head> | |
<title>PLS Processor</title> | |
<!-- needed for IE9 to ensure it treats page as HTML5 properly --> | |
<meta http-equiv="X-UA-Compatible" content="IE=9" > | |
</head> | |
<body> | |
<p>Audio PLS processor<p> | |
<audio id="audio" controls="controls"></audio > |