Mac users: when setting up JDK, make sure you choose the right JDK for your machine's architecture.
Category: development
Get started with cloud-native decision automation on Quarkus
A free getting started guide for those willing to try out Kogito technologies and who seek to learn more about decision automation with DMN
Bootstrapping Kafka and managing topics in 2 minutes
How to start Kafka locally, create topics, publish and consume events easily, all in less than two minutes.
Converting AsciiDoc to Markdown
A quick way to convert asciidoc files to markdown, and tips on how to comfortably and easily work with markdown files without memorizing the whole sintax.
[jBPM7 QuickTips] Timers
The timer is an event activity, which asynchronously triggers subsequent activities based on a predetermined agenda. It can be used as: a start event (i.e. start this process instance after 30 days from now), as an intermediate catching event (wait 5 minutes before starting the next task) ,as a boundary catching event for tasks or subprocesses (if a user… Continue reading [jBPM7 QuickTips] Timers
ISO-8601 Time Standard
ISO-8601 standard was created with the objective of elaborating a crystal clear language to talk about dates and periods and avoid misinterpretation. Here are some tips on possible pattern usage: Dates can be defined in format YYYY-MM-DD, with a specific Day, Month and Year. Ex: 2019-04-12, means 12th April from 2019.It is also possible to use for example, YYYY-MM, necessarily with "-" in between… Continue reading ISO-8601 Time Standard
[jBPM7 QuickTips] Adding users
Quick guide on how to add users to jBPM running on WildFly.
Run and access PostgreSQL DB in 30 seconds [4steps]
Quick and simple, as should every technology be. Here's a quick step-by-step to bootstrap and access a local PSQL Database without needing to install it: Pre-req: Docker #TLDR; Ready... Set... Go: mkdir -p $HOME/docker/opt/db/psql docker run --rm --name psql-jbpm -e POSTGRES_PASSWORD=psql@123 -d -p 6543:5432 -v $HOME/docker/opt/db/psql:/var/lib/postgresql/data postgres:9.4 That's it, now you have a local psql… Continue reading Run and access PostgreSQL DB in 30 seconds [4steps]