Skip to content

Instantly share code, notes, and snippets.

View stevebeauge's full-sized avatar
👌

Steve Beaugé stevebeauge

👌
View GitHub Profile
@stevebeauge
stevebeauge / FileSystemPoller.cs
Created July 4, 2018 13:41
Reliable replacement for FileSystemWatcher
using System;
using System.Threading;
using System.Threading.Tasks;
using System;
using System.Collections.Concurrent;
using System.Collections.Generic;
using System.Diagnostics;
using System.IO;
using System.Threading;
@stevebeauge
stevebeauge / gist:0a40383b95cb130ae10d
Last active August 29, 2015 14:21
Improved "The Ultimate Script to download Microsoft Ignite Videos AND slides!" script
#Script written by Vlad Catrinescu
#Visit my site www.absolute-sharepoint.com
#Twitter: @vladcatrinescu
#Originally Posted here: http://absolute-sharepoint.com/2015/05/the-ultimate-script-to-download-microsoft-ignite-videos-and-slides.html
Param(
[string]$keyword
)
[ToolboxItemAttribute(false)]
public class PowWebPart : WebPart
{
protected TextBox txtX;
protected TextBox txtY;
protected Button btnCalc;
protected Label lblResult;
protected override void CreateChildControls()
{