Skip to content

Instantly share code, notes, and snippets.

View nicholas0g's full-sized avatar
💭
I may be slow to respond.

Nicholas Giordano nicholas0g

💭
I may be slow to respond.
View GitHub Profile
@nicholas0g
nicholas0g / XStreamTranslator.java
Created June 30, 2017 08:58
JAVA class to XML <3
import java.io.File;
import java.io.FileReader;
import java.io.FileWriter;
import java.io.IOException;
import java.util.Iterator;
import java.util.List;
import com.thoughtworks.xstream.XStream;
public final class XStreamTranslator {
private XStream xstream = null;
@nicholas0g
nicholas0g / sftp.vb
Created May 10, 2017 10:14
SFTP upload in VB.NET
' Important: It is helpful to send the contents of the
' sftp.LastErrorText property when requesting support.
Dim sftp As New Chilkat.SFtp
' Any string automatically begins a fully-functional 30-day trial.
Dim success As Boolean = sftp.UnlockComponent("Anything for 30-day trial")
If (success <> True) Then
Console.WriteLine(sftp.LastErrorText)
Exit Sub