Skip to content

Instantly share code, notes, and snippets.

@vizee
vizee / emailnotifier.go
Created October 1, 2017 03:18
smtp tls connection
package emailnotifier
import (
"crypto/tls"
"fmt"
"net"
"net/smtp"
"strings"
"sync"
)
@vizee
vizee / gensyscall.go
Created August 12, 2017 18:01
generate linux amd64 syscall
package main
import (
"flag"
"fmt"
"go/ast"
"go/parser"
"go/token"
"html/template"
"io/ioutil"
@vizee
vizee / mtrnd.go
Created July 29, 2017 08:12
go thread-safe rand
package mtrnd
import (
"math/rand"
"sync"
"time"
"github.com/vizee/asm/hack"
)
@vizee
vizee / drawtext.cs
Created July 16, 2017 05:39
排版文字生成透明 png
using System;
using System.Collections.Generic;
using System.Drawing;
using System.Drawing.Drawing2D;
using System.Drawing.Imaging;
using System.IO;
namespace drawtext
{
class Program