Skip to content

Instantly share code, notes, and snippets.

@badslug
badslug / .gitignore
Created October 17, 2011 06:28
Standard git ignore file for maven-based java projects.
.classpath
*.ipr
*.iml
*.iws
.project
.idea/
.settings/
.gradle/
target/
build/
@jedy
jedy / go_scp.go
Last active May 31, 2022 07:20
an example of scp in golang
// https://blogs.oracle.com/janp/entry/how_the_scp_protocol_works
package main
import (
"fmt"
"golang.org/x/crypto/ssh"
)
const privateKey = `content of id_rsa`