# ejb (blogs) — RSS Amplifier

Recent posts from the 2 feeds in the RSS Amplifier directory that cover ejb.

Page: <https://rssamplifier.com/topics/ejb/blogs>  
Feed: <https://rssamplifier.com/topics/ejb/blogs.md>

---

## [Why Not Fixing the Internet Now?](https://ralph.blog.imixs.com/2026/06/10/why-not-fixing-the-internet-now/)

_2026-06-10 · Ralph Soika · Ralph&#039;s Open Source Blog_

The Internet is broken. Or to be more precisely: the World Wide Web is broken. It is not representing the idea we have had in the year 1990. And I think we should fix it now. And the solution cold be very simple. Why is it broken? Today the Internet is full of unnecessary, unhelpful … Continue reading "Why Not Fixing the Internet Now?"

## [Running OpenTalk in Kubernetes](https://ralph.blog.imixs.com/2026/05/15/running-opentalk-in-kubernetes/)

_2026-05-15 · Ralph Soika · Ralph&#039;s Open Source Blog_

OpenTalk is an open-source video conferencing platform developed in Germany. This guide explains how to deploy OpenTalk v25.4.7 on a Kubernetes cluster step by step. Component Versions Component Version PostgreSQL 16-alpine Redis 8-alpine MinIO RELEASE.2025-06-13T11-33-47Z LiveKit v1.9.11 Controller v0.32.11 Web Frontend v2.7.6 You can find also the release notes and the official admin guide here:…

## [Ghost instead of WordPress – Setup a self-hosted Custom Theme](https://ralph.blog.imixs.com/2026/04/19/ghost-instead-of-wordpress-setup-a-self-hosted-custom-theme/)

_2026-04-19 · Ralph Soika · Ralph&#039;s Open Source Blog_

WordPress is powerful. Maybe too powerful. If all you want is a clean blog or a product landing page, you quickly find yourself fighting plugin sprawl, sluggish load times, and an admin interface designed for agencies – not for people who just want to write. I looked around for alternatives and landed on Ghost. Open … Continue reading "Ghost instead of WordPress – Setup a self-hosted Custom Theme"

## [Keeping AI agents like OpenCode as separate environment (in Docker)](https://piotrnowicki.com/posts/2026-01-11/keeping-ai-agents-like-opencode-as-separate-environment-in-docker/)

_2026-01-10 · Piotr Nowicki&#39;s Blog_

Why should you keep your AI agent in a separate environment? For security!

## [Keeping AI agents like ClaudeCode as separate OS user](https://piotrnowicki.com/posts/2025-12-22/keeping-ai-agents-like-claudecode-as-separate-os-user/)

_2025-12-21 · Piotr Nowicki&#39;s Blog_

Why should you keep your AI agent as a separate OS user? For security!

## [Maven &#8211; Sonatype Central Repository](https://ralph.blog.imixs.com/2025/07/07/maven-sonatype-central-repository/)

_2025-07-07 · Ralph Soika · Ralph&#039;s Open Source Blog_

Since July 2025 the old oss repositories (e.g. https://oss.sonatype.org/content/repositories/snapshots) are deprecated and are no longer accessible. If you have not yet updated your Maven Open Source project you need to change some settings. But most things are now more easy as before. 1. Create a new User Token If you do not have yet generated … Continue reading "Maven – Sonatype Central…

## [How Jakarta EE and OIDC Really Works](https://ralph.blog.imixs.com/2025/06/21/how-jakarta-ee-and-oidc-really-works/)

_2025-06-21 · Ralph Soika · Ralph&#039;s Open Source Blog_

I am developing Java Enterprise applications now for more than 20 years. Security was always an important part in developing enterprise apps. And Jakarta EE (formally known as Java EE) has always provided a perfect platform to do this. But with the new Security API in Jakarta EE 10 – especially in conjunction with OIDC, … Continue reading "How Jakarta EE and OIDC Really Works"

## [Wildfly 29 &#8211; OIDC &#8211; Bearer Token Authentication](https://ralph.blog.imixs.com/2025/03/26/wildfly-29-oidc-bearer-token-authentication/)

_2025-03-26 · Ralph Soika · Ralph&#039;s Open Source Blog_

In this blog post I explain the setup of a application running on Wildfly 29 using the OIDC authentication mechanism. It took me a long time to figure out the correct and necessary configuration steps. My requirement was not only to authenticate a user with Keycloak via OpenID Connect (OIDC), but also enable my backend … Continue reading "Wildfly 29 – OIDC – Bearer Token Authentication"

## [Using GraalVM Script Engine with Wildfly 29](https://ralph.blog.imixs.com/2025/03/19/using-graalvm-script-engine-with-wildfly-29/)

_2025-03-18 · Ralph Soika · Ralph&#039;s Open Source Blog_

During an Upgrade from Wildfly 27.0.1 to Wildfly 29.0.1 I run into a compatibility problem with the GraalVM Script engine which we are using in our Open Source Workflow engine Imixs-Workflow. One reason was that wildfly does no longer support Truffle version below 23.1.1. So our old maven dependencies used in our Web application did … Continue reading "Using GraalVM Script Engine with Wildfly 29"

## [PostgreSQL: Major Upgrade in Kubernetes](https://ralph.blog.imixs.com/2025/03/16/postgresql-major-upgrade-in-kubernetes/)

_2025-03-16 · Ralph Soika · Ralph&#039;s Open Source Blog_

In the following I show an example how you can upgrade an old PostgreSQL server to a new Major version running in a Kubernetes cluster. In this example I upgrade directly from 9.6.1 to 17.4. My deployment runs on Kubernetes and I have external data volumes bound to my servers based on a ceph system. … Continue reading "PostgreSQL: Major Upgrade in Kubernetes"

## [Non-custodial Crypto Payments & Escrow (Sponsored)](https://crawlproof.com/a/oCMG1MdyUVtC)

_2025-03-16 · **Sponsored**_

Accept multi-chain crypto with trustless escrow, instant confirmations, and no KYC

## [EJB =\> CDI Migration](https://ralph.blog.imixs.com/2024/10/31/ejb-cdi-migration/)

_2024-10-31 · Ralph Soika · Ralph&#039;s Open Source Blog_

In this blog post I will try to explain how to replace Jakrata EE EJBs with CDI beans. In onw of the future releases of Jakarta EE (possible version 12) the EJB concepts will be fully replaced by CDI technology. The reason simply is that EJBs become more and more outdated as the technology is … Continue reading "EJB =\> CDI Migration"

## [Finding why &#39;du&#39; and &#39;df&#39; shows different values?](https://piotrnowicki.com/posts/2024-09-11/finding-why-du-and-df-shows-different-values/)

_2024-09-10 · Piotr Nowicki&#39;s Blog_

How to find out what takes disk on your device if &lsquo;du&rsquo; and &lsquo;df&rsquo; shows different values.

## [Finding your device in a network using nmap](https://piotrnowicki.com/posts/2024-09-06/finding-your-device-in-a-network-using-nmap/)

_2024-09-05 · Piotr Nowicki&#39;s Blog_

How to find your device in a network if you don&rsquo;t know what IP it has been assigned?

