bin/kafka-topics.sh --zookeeper localhost:2181 --list
bin/kafka-topics.sh --zookeeper localhost:2181 --describe --topic mytopic
bin/kafka-topics.sh --zookeeper localhost:2181 --alter --topic mytopic --config retention.ms=1000
... wait a minute ...
# basic makefile for D language - made by darkstalker | |
DCC = dmd | |
DFLAGS = -w | |
LIBS = | |
SRC = $(wildcard *.d) | |
OBJ = $(SRC:.d=.o) | |
OUT = $(shell basename `pwd`) | |
.PHONY: all debug release profile clean |
FROM debian:jessie | |
ENV USER=boatswain USER_ID=1000 USER_GID=1000 | |
# now creating user | |
RUN groupadd --gid "${USER_GID}" "${USER}" && \ | |
useradd \ | |
--uid ${USER_ID} \ | |
--gid ${USER_GID} \ | |
--create-home \ |
// reference : https://gist.github.com/satoruhiga/1687325 | |
#pragma once | |
static int WIDTH = 300; | |
static int HEIGHT = 300; | |
#include "ofMain.h" | |
#include "Poco/Base64Encoder.h" |
bin/kafka-topics.sh --zookeeper localhost:2181 --list
bin/kafka-topics.sh --zookeeper localhost:2181 --describe --topic mytopic
bin/kafka-topics.sh --zookeeper localhost:2181 --alter --topic mytopic --config retention.ms=1000
... wait a minute ...
Due to the license issues with docker desktop and the fact that you don't really need this buggy bit of software, this guide will walk you through the steps to use VSCode+remote-containers in combination with WSL2 without using docker desktop.
Only if you have docker desktop currently installed of course