Skip to content

Instantly share code, notes, and snippets.

@rdmueller
rdmueller / AsciiDocInsideTable.adoc
Last active June 1, 2023 22:05
This gist shows how to use AsciiDoc formatting inside a table

Sometimes you need to write AsciiDoc within a table, but the standard is that most AsciiDoc formattings don’t work inside a table, onyl the basic syntax:

Col1

Col2

Basic fomatting like bold works

advanced formatting like

* bullet * lists

import com.sun.net.httpserver.HttpExchange
import com.sun.net.httpserver.HttpHandler
import com.sun.net.httpserver.HttpServer
import groovy.transform.CompileStatic
import groovy.transform.TypeChecked
@CompileStatic
@TypeChecked
class GroovyHttpServer {
  • when you setup wifi:

    • the indentation of your file is correct - the example is wrong

    • change the network-config before you boot for the first time

    • boot a second time to see your raspberry coming up on the network

    • the arp command does not work (for me on windows). Take a look at your fritz box to see the IP of your raspberry

Install jitsi:

@rdmueller
rdmueller / .gitignore
Created January 5, 2021 20:57 — forked from capsulecorplab/.gitignore
plantuml template for specifying stakeholder concerns & user stories
# Asciidoctor
.asciidoctor/
@rdmueller
rdmueller / install-openjdk-8.sh
Created February 11, 2021 17:31 — forked from phillipsj/install-openjdk-8.sh
Quick little installation script for installing AdoptOpenJDK on Ubuntu 16.04.
wget -q https://github.com/AdoptOpenJDK/openjdk8-releases/releases/download/jdk8u172-b11/OpenJDK8_x64_Linux_jdk8u172-b11.tar.gz
tar -xf OpenJDK8_x64_Linux_jdk8u172-b11.tar.gz
sudo mkdir /usr/lib/jvm && sudo mv jdk8u172-b11 /usr/lib/jvm/jdk8u172-b11
export JAVA_HOME=/usr/lib/jvm/jdk8u172-b11
export PATH=/usr/lib/jvm/jdk8u172-b11/bin
java -version