Skip to content

Instantly share code, notes, and snippets.

View davengeo's full-sized avatar
🏠
Working from home

David Navarro davengeo

🏠
Working from home
View GitHub Profile
@campoy
campoy / home.tmpl
Last active May 4, 2022 19:19
Electron-like html+golang app
<html>
<head>
<title>Hello, from Go</title>
</head>
<body>
<h1>Hello</h1>
<p>
This is Go code running, {{.}}
</p>
</body>
@davengeo
davengeo / FileTransferScpImpl.java
Last active November 12, 2015 18:07
SFTP transmission of content using apache VFS2 and OpenSSH private key
@Component
public class FileTransferScpImpl {
private final String userName;
private final String hostName;
private final FileSystemOptions opts;
private final StandardFileSystemManager manager;
private final String privateKeyPath;