Setup
bin/kafka-topics.sh \
--zookeeper zookeeper.example.com:2181 \
--create \
### WARNING: READ CAREFULLY BEFORE ATTEMPTING ### | |
# | |
# Officially, this is not recommended. YMMV | |
# https://www.raspberrypi.com/news/bookworm-the-new-version-of-raspberry-pi-os/ | |
# | |
# This mostly works if you are on 64bit. You are on your own if you are on 32bit or mixed 64/32bit | |
# | |
# Credit to anfractuosity and fgimenezm for figuring out additional details for kernels | |
# |
### WARNING: READ CAREFULLY BEFORE ATTEMPTING ### | |
# | |
# Officially, this is not recommended. YMMV | |
# https://www.raspberrypi.com/news/bookworm-the-new-version-of-raspberry-pi-os/ | |
# | |
# This mostly works if you are on 64bit. You are on your own if you are on 32bit or mixed 64/32bit | |
# | |
# Credit to anfractuosity and fgimenezm for figuring out additional details for kernels | |
# |
CC ?= gcc | |
PKGCONFIG = $(shell which pkg-config) | |
CFLAGS = $(shell $(PKGCONFIG) --cflags gtk4) | |
LIBS = $(shell $(PKGCONFIG) --libs gtk4) | |
GLIB_COMPILE_RESOURCES = $(shell $(PKGCONFIG) --variable=glib_compile_resources gio-2.0) | |
GLIB_COMPILE_SCHEMAS = $(shell $(PKGCONFIG) --variable=glib_compile_schemas gio-2.0) | |
SRC = exampleapp.c exampleappwin.c exampleappprefs.c main.c | |
BUILT_SRC = resources.c |
package main | |
import ( | |
"io" | |
"log" | |
"net/http" | |
) | |
func main() { |