|
You are here |
danielcompton.net | ||
| | | | |
ask.clojure.org
|
|
| | | | | Interop with `clojure.lang.Compiler/demunge` occurs in several libraries like clojure.spec.alpha. ... `clojure.spec.alpha` source-compatible with it | |
| | | | |
www.deps.co
|
|
| | | | | Leiningen 2.8.0 and 2.8.1 came out in October of 2017. The previous release was in September 2016 so 2.8.0 and 2.8.1 contain a lot of new features and bugfixes. 2.8.1 is a bugfix release for 2.8.0, so you should update to 2.8.1 over 2.8.0. This post will outline the major new features of these releases. Java 9 support The biggest reason for upgrading Leiningen is Java 9 support. Leiningen 2.8.0 removes its use of the BootClassPath, as this caused problems in Java 9 with Clojure 1. | |
| | | | |
www.mkammerer.de
|
|
| | | | | Recently I blogged about Kotlin and SnakeYAML. I didn't find a satisfying solution, so I tried another library for YAML parsing. Turns out that Jackson also supports YAML and even has a Kotlin module. Nice. Let's give it a try! I want to parse this YAML file: # Size of the universeuniverseSize:maxGalaxies:1maxSystems:3maxPlanets:3# Starter planet settingsstarterPlanet:# Starting resourcesresources:crystal:200gas:100energy:800# Round time in secondsroundTime:5into this set of data classes data class Unive... | |
| | | | |
journal.robbi.my
|
|
| | | Assalamualaikum and hello! Spring Boot's streamlined development process makes it a popular choice for many developers. However, configuring it for multiple databases can present challenges. While there are various tutorials available, I've encountered issues with their completeness and clarity. In this tutorial, I'll provide a detailed solution to this problem. Database We require a connection to two databases: an existing MSSQL database and a new PostgreSQL database. The PostgreSQL database will be used for all standard CRUD operations (create, read, update, delete). The MSSQL database will be accessed in a read-only manner to retrieve specific data without making any modifications to its structure or content. | ||