Skip to content

Instantly share code, notes, and snippets.

@mholcer
mholcer / ssh.cs
Created November 2, 2016 15:40 — forked from 0xF1o/ssh.cs
ssh.net Example - Keybased Authentication, File Upload, Shell Commands
/*
get SSH.NET (BSD License: http://sshnet.codeplex.com/license)
with NuGet:
>Install-Package SSH.NET -Version 2013.4.7
or just get the dll from here: http://j.mp/sshNet
*/
using System;
@mholcer
mholcer / ExcelDataReader.cs
Created July 12, 2016 17:13 — forked from Munawwar/ExcelDataReader.cs
C# - Excel Data Reader Library - Convert Excel (XLSX or XLS) to CSV
/*
* Dependency : Excel Data Reader from http://exceldatareader.codeplex.com/
* You must add the references to the Dlls (downloaded from the link above) with Visual Studio.
*/
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using Excel;