Skip to content

Instantly share code, notes, and snippets.

View jaddie's full-sized avatar

Jaddie jaddie

View GitHub Profile
@jaddie
jaddie / readme.txt
Created May 12, 2015 10:18
Skype - Completely kill adverts
Skype Ad removing tutorial as created by James Dartnell (Jaddie)
First lets remove the access to the adverts themselves:
-- Warning --
This will also stop the Skype home from loading into Skype, although this may be a benefit as its hardly used & simply slows the program down.
Open-up the control panel.
Open-up "Network & Internet" then "Internet Options".
Go to the "Security" tab.
@jaddie
jaddie / invalidfilenamecharremover.cs
Created May 4, 2012 10:36
Remove invalid filename chars from string
string thestring = "test@/2";
foreach(var character in Path.GetInvalidFileNameChars())
{
thestring = thestring.Replace(character.ToString(), "");
}