Moving from Travis CI to GitHub actions
Category: dummyCategory
GitHub tempts enterprises with Semmle, security enhancements
GitHub hopes to tantalize enterprise development teams with enhanced security after the acquisition of Semmle and its semantic code analysis engine. The company also added a freebie enterprise cloud offering to let enterprise developers try the technology.
HTTP/2 Server Push Via Java 11 HTTP Client API – DZone Java
Do you remember HttpUrlConnection? Well, JDK 11 comes up with the HTTP Client API as a reinvention of HttpUrlConnection. Check it out!
How Curve is getting ahead with Golang – JAXenter
Golang was created for achieving maximum user efficiency and coding productivity. Programmers who are already familiar with Java or PHP can learn Go.
Pluralsight vs Codecademy – Which is the Best Online Learning Platform for Programmers to Level Up their Skills?
A blog about Java, Programming, Algorithms, Data Structure, SQL, Linux, Database, Interview questions, and my personal experience.
Top 5 Programming Languages Beginners Can Learn in 2019
A blog about Java, Programming, Algorithms, Data Structure, SQL, Linux, Database, Interview questions, and my personal experience.
Migrating the ServiceLoader to the Java 9 module system
A long long (long?) time ago, I wrote a post about the ServiceLoader. In short, the Service Loader allows to separate an API and its implementations in different JARs. The client code depends on the API only, while at runtime, the implementation(s) that is (are) on the classpath will be used. This is great way to decouple the client code from the implementing one. For example, the ServiceLoader is used by SLF4J: one adds the slf4j-api on the classpath at compilation time, while any single impl
7 Experts – 7 Opinions: What do you want to see in Java 14? – JAXenter
In the final part of our interview series, the experts look towards the future and discuss what features they would love to see in Java 14.
Become a Master of Java Streams – Part 1: Creating Streams
A blog about Java
From G1 to Shenandoah and ZGC: Java in the new Age of concurrent Garbage Collectors – JAXenter
Monica Beckwith in an interview at JAX London 2019. Microsoft’s JVM performance expert talks about innovations in the domain of Java Garbage Collection. What are the advantages of concurrent garbage collectors like Shenandoha and ZGC?
A Guide to Java HashMap | Baeldung
A quick and practical overview of Java HashMap.
7 Experts – 7 Opinions: What is the highlight of Java 13? – JAXenter
Java 13 is here! In the first part of our interview series, experts weigh in on their highlights and favorite new features of Java 13.
Parsing double values using Double vs BigDecimal in Java
I’m an experienced developer but not a math expert. I know enough about the IEEE floating point specification to be afraid of making assumptions about parsing, printing, and comparing them.I know…
The Trouble with Memory
Kirk Pepperdine takes a look at the telltale signs that a JVM based application is in the 60% memory inefficiency area, and demonstrates the steps one can take to attack this problem.