排序
Builder Pattern, a first step to DSL
Builder Pattern, a first step to DSL,When you are looking for an explanation of Builder pattern, you will probably find some articles all showing a class dedicated to creating an o...
Digest of papers: Why Functional Programming Matters
Digest of papers: Why Functional Programming Matters, Digest of papers (3 Part Series) 1 Digest of papers: Why Functional Programming Matters 2 Digest of Papers: Monads For Functio...
Should you migrate an existing enterprise Java application to serverless architecture?
Should you migrate an existing enterprise Java application to serverless architecture?,Last week Marek Sadowski and I presented Introduction to Serverless with IBM Cloud Functions:...
Advent of Code 2018 – Solving the first day’s challenge
Advent of Code 2018 - Solving the first day's challenge, 原文链接:Advent of Code 2018 - Solving the first day's challenge
@OneToMany relations in Hibernate and its perils
@OneToMany relations in Hibernate and its perils,Recently, I had trouble persisting an object with Hibernate. I would like to depict my journey along the well-known example of docu...
Repasando Artículos: Monads For Functional Programming
Repasando Artículos: Monads For Functional Programming, Repasando Artículos (4 Part Series) 1 Repasando Artículos: Why Functional Programming Matters 2 Repasando Artículos: Mon...
Checking your project dependencies for vulnerabilites
Checking your project dependencies for vulnerabilites,In the light of the recent case of introducing malicious code through a popular JavaScript module on npm, I like to mention sn...
How to use PowerMockito whenNew
How to use PowerMockito whenNew,PowerMockito.whenNew is a powerful function to stub a constructor. This article will demonstrate some scenario when we use whenNew and some gotchas ...
Useful Keyboard Shortcuts Eclipse, IntelliJ, Win, Browser
Useful Keyboard Shortcuts Eclipse, IntelliJ, Win, Browser, The very powerful weapon for improving productivity and speed of work during any work on the computer. This is some of ke...
Selection Sort Algorithm In Java
Selection Sort Algorithm In Java,Selection sort is a sorting algorithm, specifically an in-place comparison sort and is used for sorting an array of integers. The algorithm divides...
Insertion Sort in Java
Insertion Sort in Java,Insertion sort is a sorting algorithm that builds the final sorted array (or list) one item at a time. The algorithm iterates over the list and removes the c...
Insertion Sort Algorithm in Java
Insertion Sort Algorithm in Java,Insertion sort is a sorting algorithm that builds the final sorted array (or list) one item at a time. The algorithm iterates over the list and rem...