Skip to content

Instantly share code, notes, and snippets.

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

Túlio Paim tuliopaim

🏠
Working from home
View GitHub Profile
@alexandrebl
alexandrebl / docker-compose.yaml
Last active January 4, 2025 01:51
Kafka And Zookeeper Docker Compose
---
version: '2'
services:
zookeeper:
image: confluentinc/cp-zookeeper:latest
networks:
- net
ports:
- 2181:2181
environment:
@mhingston
mhingston / AES.cs
Last active September 10, 2024 23:16
AES-256-CBC for C# and Node
using System;
using System.IO;
using System.Security.Cryptography;
using System.Text;
class AES
{
public static string Encrypt(string plainText, string keyString)
{
byte[] cipherData;