Java vs Go: Impressive solutions for invented problems
Java vs Go: Impressive solutions for invented problems,Originally published on my personal blog Let's start with the Shadoks Les Shadoks is a cartoon created by Jacques Rouxel whic...
How to Merge Word Documents in Java Application
How to Merge Word Documents in Java Application,In daily work, it is inevitable that you will need to merge multiple Word documents into a single document to reorganize them. In or...
Why I choose to use a mono-repo for a large Gradle project
Why I choose to use a mono-repo for a large Gradle project,First of all, mono-repo doesn’t mean monolithic, even if monolithic means mono-repo ;) And this post didn’t apply for G...
I need suggestions
I need suggestions,Hello Devs I'm a newbie in java programming and I have learnt the basics of Java but I don't know what next.... I like mobile development 原文链接:I need sugges...
Recursion, corecursion and thunks
Recursion, corecursion and thunks,Java does not support tail calls. The usual workaround is a type like the following. class Thunk<A> { boolean isDone(); Thunk step(); A fini...
Processamento Assíncrono e Java
Processamento Assíncrono e Java, Threads Processamento Síncrono Processamento Assíncrono Saber como utilizar todo recurso disponível de uma máquina é importante para que uma ...
How to start preparation for JavaScript interview
How to start preparation for JavaScript interview, What is JavaScript? Javascript is one of the most widely used web programming languages. It is mainly used to build interactive W...
Spring Data JPA | getOne() vs findById() ! Farkları nedir?
Spring Data JPA | getOne() vs findById() ! Farkları nedir?, Spring Data JPA'da getOne() metodu da findById() metodu da bir objeyi getirmek için kullanılabilir. Ancak bu iki meto...
Auditing Spring MVC Application
Auditing Spring MVC Application,Hi i have a requirement where I need to track user actions in the spring MVC web application ,I want to know if there are any libraries avaliable fo...
Let’s code: graphs in java
Let's code: graphs in java,I have been obsessed with graphs for a few years now. This obsession has resulted in three projects: graph-dsl, graphs, and graph-wm. Graphs are excellen...