Skip to content

Instantly share code, notes, and snippets.

View Vienchau's full-sized avatar
🥺

Vien.Beos Vienchau

🥺
View GitHub Profile
@ayubmalik
ayubmalik / docker-compose.yaml
Last active March 5, 2024 17:24
Kafka REST proxy with Docker compose. Everything required to get Confluent REST proxy docker images working so you can post messages to consumers with curl etc
---
version: '3.5'
networks:
default:
name: kafka-net
services:
zookeeper:
image: confluentinc/cp-zookeeper:4.1.1
hostname: zookeeper
@andelf
andelf / smtp_login_auth.go
Created March 8, 2013 18:40
golang net/smtp SMTP AUTH LOGIN Auth Handler
// MIT license (c) andelf 2013
import (
"net/smtp"
"errors"
)
type loginAuth struct {
username, password string