Skip to content

Instantly share code, notes, and snippets.

View dimitraz's full-sized avatar
🌚
Battery about to die

Dimitra Zuccarelli dimitraz

🌚
Battery about to die
View GitHub Profile
@dimitraz
dimitraz / gsoc-final-results.md
Last active August 29, 2017 18:16
GSoC 2017 Final phase results

GSoC 2017 with RedHat

For the last three months I’ve worked on the UnifiedPush Server alongside fellow gsocer Polina to come up with a proof of concept for using Apache Kafka as the UPS’ internal messaging system. Here is a quick a summary of what we did, what can still be improved on and what still has to be done.

Useful links

Overall Stats

  • 88 total Jira Tasks created
@dimitraz
dimitraz / server.sh
Created June 26, 2017 16:03
Kafka bootstrap servers
#!/bin/bash
if [ -z "$1" ]; then
CONTAINER_PORT="9092"
else
CONTAINER_PORT=$1
fi
# Get the Kafka container IP
if [[ "$OSTYPE" == "linux-gnu" ]]; then
CONTAINER_IP=$(docker inspect --format '{{ .NetworkSettings.IPAddress }}' kafka)