Skip to content

Instantly share code, notes, and snippets.

@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
@rdmueller
rdmueller / .gitignore
Created January 5, 2021 20:57 — forked from capsulecorplab/.gitignore
plantuml template for specifying stakeholder concerns & user stories
# Asciidoctor
.asciidoctor/
  • 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:

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 {
@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

Greach 2019 awesome list

What is this?

A compilation of all the links to slides and repositories used in workshops or shown by the speakers.

Why

It can be difficult to retrieve all that material on twitter after the conference.

Contents

Keybase proof

I hereby claim:

  • I am rdmueller on github.
  • I am rdmueller (https://keybase.io/rdmueller) on keybase.
  • I have a public key ASAY4wvXpm578bImazg2bLOZarkCW4L2qjpDpTEUNgv_uAo

To claim this, I am signing this object:

this is how you get a good grails starter application with social login up and running

first create a basic app with the web-profile:

grails create-app myStarter
cd myStarter
div#test { border: 1px solid red; } div#test dl { } div#test dt { border: 1px solid green; }