Mijn eerste dagen als front-end apprentice

Inge foto eerste werkdag

Inge Ceux Front-end Apprentice Mijn doel is om mensen het leven gemakkelijk te maken met gebruiksvriendelijke, goed ontworpen software. Ik voel me thuis in de wereld van UI/UX design EN software development. Deze complementaire skillset heeft me al enorm geholpen bij projecten in het verleden, waar ik doeltreffende beslissingen kon maken vanuit zowel het perspectief […]

Discogs and Java

Discogs logo

Never would I have imagined I would say this, but Covid-19 is not all bad. During these uncertain times new things came alive. Because what else is there to do than killing time with some software development?  Sitting cosy and comfortable behind my computer screen, with a cup of coffee, eager as a beaver, carefully […]

Sending STOMP messages over a WebSocket in Spring Boot 2

Sending STOMP messages over a WebSocket in Spring Boot 2 Sey Vaneerdewegh

Sey Vaneerdewegh Java Crafter Sey Vaneerdewegh is an enthusiastic JAVA software crafter at Continuum Consulting NV with experience in Java and JavaScript. Sey is passionate about software architecture, automatization and continuous learning and improvement. He is currently working as a consultant – full stack developer at TrendMiner (Hasselt, Belgium), a company, where he focuses on […]

A gentle introduction to Monads

Monads Kristof Slechten

def unit: A → F[A] We need Map functionality, that allows us to apply A → B on the A type inside box F def map: F[A] → (A → B) → F[B] We need a Flatten functionality that allows us to unpack a type A inside 2 boxes F. def flatten: F With these […]

The ins and outs of GraphQL: with Java and Spring

Kopie van Kopie van Kopie van Introduction to reactive programming with spring

com.graphql-java graphql-spring-boot-starter 5.0.2 com.graphql-java graphql-java-tools 5.2.4 Besides that, we need to add at least one GraphQL schema file (with the .graphqls file extension). This will be picked up automatically by the Spring Boot starter, as long as the file or files are part of the classpath. Next, we need to define one or more Spring beans […]

Domain-Driven Design

Domain Driven Design

Stefan Borghys Rol Stefan Borghys is reeds enige tijd actief als Java Software Crafter. Hij heeft een stevige passie voor technologie en techniek, full Stack software development en software architectuur.

Through the F.I.R.E. and the flames: a look at future web development

Through the fire and the flames

{ “short_name”: “PWA demo”, “name”: “Continuum PWA demo”, “icons”: [{ “src”: “/images/icon-192.png”, “type”: “image/png”, “sizes”: “192×192” } ], “start_url”: “/”, “display”: “standalone” } short_name & name: The name of the application, used for the shortcut on the home screen and the eventual title bar when installed. If there is not enough space to fit the name (as […]

The ins and outs of GraphQL: Syntax

Kopie van Kopie van Kopie van Introduction to reactive programming with spring

type Query { students: [Person] student(id:ID!): Person } type Person { id:ID! firstName: String lastName: String fullName: String, dateOfBirth: Date, picture: Url, address: Address } type Address { city: String street: String postalCode: String zipCode: String @deprecated(reason: “Use ’postalCode’.”) } scalar Date scalar Url Let’s start by unpacking the first part of that: Type Query represents the […]

To pair or not to pair…

Kopie van Introduction to reactive programming with spring

Is pair development the new way to do development, is it the goose with the golden eggs, or is it just another way to write software…