Skip to content

Instantly share code, notes, and snippets.

View bamboo2panda's full-sized avatar
🥑

Pavel Vasilyev bamboo2panda

🥑
View GitHub Profile
@bamboo2panda
bamboo2panda / sender.go
Created January 29, 2023 20:15 — forked from douglasmakey/sender.go
Golang - send an email with attachments.
package main
import (
"bytes"
"encoding/base64"
"fmt"
"io/ioutil"
"mime/multipart"
"net/smtp"
"os"
@bamboo2panda
bamboo2panda / gitcom.md
Created October 12, 2022 08:52 — forked from jednano/gitcom.md
Common git commands in a day-to-day workflow

Git Cheat Sheet

Initial Setup

Create an empty git repo or reinitialize an existing one

git init