Visit my blog or connect with me on Twitter
git init
or
Visit my blog or connect with me on Twitter
git init
or
| # Modify this file accordingly for your specific requirement. | |
| # http://www.thegeekstuff.com | |
| # 1. Delete all existing rules | |
| iptables -F | |
| # 2. Set default chain policies | |
| iptables -P INPUT DROP | |
| iptables -P FORWARD DROP | |
| iptables -P OUTPUT DROP |
| <# | |
| .SYNOPSIS | |
| Find all files excluded from a Visual Studio solution with options to delete. | |
| .DESCRIPTION | |
| Finds all excluded files in all projects in the provided Visual Studio solution with options to delete the files. | |
| .PARAMETER Solution | |
| The path to the .sln file |
| namespace Lib | |
| { | |
| public interface Counter { int Count(string s); } | |
| public abstract class AbstractClass : AbstractParent | |
| { | |
| public abstract int Foo(int x); | |
| public virtual int Foo(string s) { return Foo(Counter.Count(s)); } | |
| } |
| public class MeasuredInput | |
| { | |
| public string Identifier { get; set; } | |
| public int MeasuredValue { get; set; } | |
| public double Confidence { get; set; } | |
| } | |
| public class Measurement | |
| { | |
| public Measurement(string primaryId, string secondaryId, int value, double adjustedMeasurement) |