Skip to content

Commit

Permalink
Update links to https (eugenp#7931)
Browse files Browse the repository at this point in the history
* https added

* https added

* https added

* https added

* https added

* https added

* https added

* https added

* https added

* https added

* https added

* https added

* https added

* Update README.md

* https added

* https added

* Update README.md

* https added

* https added

* https added

* https added

* https added

* https added

* https added

* https added

* https added

* https added

* https added

* https added

* https added

* https added

* https added

* https added

* https added

* https added

* https added

* https added

* https added

* https added

* https added

* https added

* https added

* https added

* https added

* https added

* https added

* https added

* https added

* https added

* https added

* https added

* https added

* https added

* https added

* https added

* https added

* https added

* https added

* https added

* https added

* https added

* https added

* https added

* https added

* https added

* https added

* https added

* https added

* https added

* https added

* https added

* https added

* https added

* https added

* https added

* https added

* https added

* https added

* https added

* https added

* https added

* https added

* https added

* https added

* https added

* https added

* https added

* https added

* https added

* https added

* https added

* https added

* https added

* https added

* https added

* https added

* https added

* https added

* https added

* https added

* https added

* https added

* https added

* https added

* https added

* https added

* https added

* https added

* https added

* https added

* https added

* https added

* https added

* https added

* https added

* https added

* https added

* https added

* https added

* https added

* https added

* https added

* https added

* https added

* https added

* https added

* https added

* https added

* https added

* https added

* https added

* https added

* https added

* https added

* https added

* https added

* https added

* https added

* https added

* https added

* https added

* https added

* https added

* https added

* https added

* https added

* https added

* https added

* https added

* https added

* https added

* https added

* https added

* https added

* https added

* https added

* https added

* https added

* https added

* https added

* https added

* https added

* https added

* https added

* https added

* https added

* https added

* https added

* https added

* https added

* https added

* https added

* https added

* https added

* https added

* https added

* https added

* https added

* https added

* https added

* https added

* https added

* https added

* https added

* https added

* https added

* https added

* https added

* https added

* https added

* https added

* https added

* https added

* https added

* https added

* https added

* https added

* https added

* https added

* https added

* https added

* https added

* https added

* https added

* https added

* https added

* https added

* https added

* https added

* https added

* https added

* https added

* https added

* https added

* https added

* https added

* https added

* https added

* https added

* https added

* https added

* https added

* https added

* https added

* https added

* https added

* https added

* https added

* https added

* https added

* https added

* https added

* https added

* https added

* https added

* https added

* https added

* https added

* https added

* https added

* https added

* https added

* https added

* https added

* https added

* https added

* https added

* https added

* https added

* https added
  • Loading branch information
jzheaux authored and Eugen committed Oct 2, 2019
1 parent e353d6d commit e2f6187
Show file tree
Hide file tree
Showing 269 changed files with 861 additions and 882 deletions.
2 changes: 1 addition & 1 deletion akka-streams/README.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
### Relevant articles

- [Guide to Akka Streams](http://www.baeldung.com/akka-streams)
- [Guide to Akka Streams](https://www.baeldung.com/akka-streams)
4 changes: 2 additions & 2 deletions algorithms-genetic/README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
## Relevant articles:

- [Introduction to Jenetics Library](http://www.baeldung.com/jenetics)
- [Ant Colony Optimization](http://www.baeldung.com/java-ant-colony-optimization)
- [Introduction to Jenetics Library](https://www.baeldung.com/jenetics)
- [Ant Colony Optimization](https://www.baeldung.com/java-ant-colony-optimization)
- [Design a Genetic Algorithm in Java](https://www.baeldung.com/java-genetic-algorithm)
- [The Traveling Salesman Problem in Java](https://www.baeldung.com/java-simulated-annealing-for-traveling-salesman)
6 changes: 3 additions & 3 deletions algorithms-miscellaneous-3/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@

- [Java Two Pointer Technique](https://www.baeldung.com/java-two-pointer-technique)
- [Implementing Simple State Machines with Java Enums](https://www.baeldung.com/java-enum-simple-state-machine)
- [Converting Between Roman and Arabic Numerals in Java](http://www.baeldung.com/java-convert-roman-arabic)
- [Practical Java Examples of the Big O Notation](http://www.baeldung.com/java-algorithm-complexity)
- [Converting Between Roman and Arabic Numerals in Java](https://www.baeldung.com/java-convert-roman-arabic)
- [Practical Java Examples of the Big O Notation](https://www.baeldung.com/java-algorithm-complexity)
- [Checking If a List Is Sorted in Java](https://www.baeldung.com/java-check-if-list-sorted)
- [Checking if a Java Graph has a Cycle](https://www.baeldung.com/java-graph-has-a-cycle)
- [A Guide to the Folding Technique in Java](https://www.baeldung.com/folding-hashing-technique)
- [Creating a Triangle with for Loops in Java](https://www.baeldung.com/java-print-triangle)
- [Efficient Word Frequency Calculator in Java](https://www.baeldung.com/java-word-frequency)
- [Efficient Word Frequency Calculator in Java](https://www.baeldung.com/java-word-frequency)
2 changes: 1 addition & 1 deletion algorithms-sorting/README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
## Relevant articles:

- [Bubble Sort in Java](http://www.baeldung.com/java-bubble-sort)
- [Bubble Sort in Java](https://www.baeldung.com/java-bubble-sort)
- [Merge Sort in Java](https://www.baeldung.com/java-merge-sort)
- [Quicksort Algorithm Implementation in Java](https://www.baeldung.com/java-quicksort)
- [Insertion Sort in Java](https://www.baeldung.com/java-insertion-sort)
Expand Down
2 changes: 1 addition & 1 deletion animal-sniffer-mvn-plugin/README.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
## Relevant articles:

[Introduction to Animal Sniffer Maven Plugin](http://www.baeldung.com/maven-animal-sniffer)
[Introduction to Animal Sniffer Maven Plugin](https://www.baeldung.com/maven-animal-sniffer)
2 changes: 1 addition & 1 deletion annotations/readme.md
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
### Relevant Articles:
- [Java Annotation Processing and Creating a Builder](http://www.baeldung.com/java-annotation-processing-builder)
- [Java Annotation Processing and Creating a Builder](https://www.baeldung.com/java-annotation-processing-builder)
2 changes: 1 addition & 1 deletion antlr/README.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
### Relevant Articles:

- [Java with ANTLR](http://www.baeldung.com/java-antlr)
- [Java with ANTLR](https://www.baeldung.com/java-antlr)
2 changes: 1 addition & 1 deletion apache-avro/README.md
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
### Relevant Articles:
- [Guide to Apache Avro](http://www.baeldung.com/java-apache-avro)
- [Guide to Apache Avro](https://www.baeldung.com/java-apache-avro)
2 changes: 1 addition & 1 deletion apache-bval/README.md
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
### Relevant Articles:
- [Intro to Apache BVal](http://www.baeldung.com/apache-bval)
- [Intro to Apache BVal](https://www.baeldung.com/apache-bval)
2 changes: 1 addition & 1 deletion apache-curator/README.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
### Relevant Articles:

- [Introduction to Apache Curator](http://www.baeldung.com/apache-curator)
- [Introduction to Apache Curator](https://www.baeldung.com/apache-curator)
8 changes: 4 additions & 4 deletions apache-cxf/README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
## Relevant Articles:
- [Introduction to Apache CXF Aegis Data Binding](http://www.baeldung.com/aegis-data-binding-in-apache-cxf)
- [Apache CXF Support for RESTful Web Services](http://www.baeldung.com/apache-cxf-rest-api)
- [A Guide to Apache CXF with Spring](http://www.baeldung.com/apache-cxf-with-spring)
- [Introduction to Apache CXF](http://www.baeldung.com/introduction-to-apache-cxf)
- [Introduction to Apache CXF Aegis Data Binding](https://www.baeldung.com/aegis-data-binding-in-apache-cxf)
- [Apache CXF Support for RESTful Web Services](https://www.baeldung.com/apache-cxf-rest-api)
- [A Guide to Apache CXF with Spring](https://www.baeldung.com/apache-cxf-with-spring)
- [Introduction to Apache CXF](https://www.baeldung.com/introduction-to-apache-cxf)
- [Server-Sent Events (SSE) In JAX-RS](https://www.baeldung.com/java-ee-jax-rs-sse)
2 changes: 1 addition & 1 deletion apache-meecrowave/README.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
### Relevant Articles:
================================
- [Building a Microservice with Apache Meecrowave](http://www.baeldung.com/apache-meecrowave)
- [Building a Microservice with Apache Meecrowave](https://www.baeldung.com/apache-meecrowave)
2 changes: 1 addition & 1 deletion apache-opennlp/README.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
### Relevant Articles

- [Intro to Apache OpenNLP](http://www.baeldung.com/apache-open-nlp)
- [Intro to Apache OpenNLP](https://www.baeldung.com/apache-open-nlp)
6 changes: 3 additions & 3 deletions apache-poi/README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
### Relevant Articles:
- [Microsoft Word Processing in Java with Apache POI](http://www.baeldung.com/java-microsoft-word-with-apache-poi)
- [Working with Microsoft Excel in Java](http://www.baeldung.com/java-microsoft-excel)
- [Creating a MS PowerPoint Presentation in Java](http://www.baeldung.com/apache-poi-slideshow)
- [Microsoft Word Processing in Java with Apache POI](https://www.baeldung.com/java-microsoft-word-with-apache-poi)
- [Working with Microsoft Excel in Java](https://www.baeldung.com/java-microsoft-excel)
- [Creating a MS PowerPoint Presentation in Java](https://www.baeldung.com/apache-poi-slideshow)
2 changes: 1 addition & 1 deletion apache-shiro/README.md
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
### Relevant articles
- [Introduction to Apache Shiro](http://www.baeldung.com/apache-shiro)
- [Introduction to Apache Shiro](https://www.baeldung.com/apache-shiro)
2 changes: 1 addition & 1 deletion apache-solrj/README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
## Apache Solrj Tutorials Project

### Relevant Articles
- [Guide to Solr in Java with Apache Solrj](http://www.baeldung.com/apache-solrj)
- [Guide to Solr in Java with Apache Solrj](https://www.baeldung.com/apache-solrj)
2 changes: 1 addition & 1 deletion apache-spark/README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
### Relevant articles

- [Introduction to Apache Spark](http://www.baeldung.com/apache-spark)
- [Introduction to Apache Spark](https://www.baeldung.com/apache-spark)
- [Building a Data Pipeline with Kafka, Spark Streaming and Cassandra](https://www.baeldung.com/kafka-spark-data-pipeline)
2 changes: 1 addition & 1 deletion apache-thrift/README.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
## Relevant articles:

- [Working with Apache Thrift](http://www.baeldung.com/apache-thrift)
- [Working with Apache Thrift](https://www.baeldung.com/apache-thrift)
2 changes: 1 addition & 1 deletion apache-tika/README.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
## Relevant articles:

- [Content Analysis with Apache Tika](http://www.baeldung.com/apache-tika)
- [Content Analysis with Apache Tika](https://www.baeldung.com/apache-tika)
2 changes: 1 addition & 1 deletion apache-velocity/README.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
## Relevant articles:

- [Introduction to Apache Velocity](http://www.baeldung.com/apache-velocity)
- [Introduction to Apache Velocity](https://www.baeldung.com/apache-velocity)
2 changes: 1 addition & 1 deletion apache-zookeeper/README.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
## Relevant articles:

- [Getting Started with Java and Zookeeper](http://www.baeldung.com/java-zookeeper)
- [Getting Started with Java and Zookeeper](https://www.baeldung.com/java-zookeeper)
4 changes: 2 additions & 2 deletions asciidoctor/README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
### Relevant articles

- [Generating a Book with Asciidoctor](http://www.baeldung.com/asciidoctor-book)
- [Introduction to Asciidoctor in Java](http://www.baeldung.com/asciidoctor)
- [Generating a Book with Asciidoctor](https://www.baeldung.com/asciidoctor-book)
- [Introduction to Asciidoctor in Java](https://www.baeldung.com/asciidoctor)
2 changes: 1 addition & 1 deletion asm/README.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
### Relevant Articles:

- [A Guide to Java Bytecode Manipulation with ASM](http://www.baeldung.com/java-asm)
- [A Guide to Java Bytecode Manipulation with ASM](https://www.baeldung.com/java-asm)
2 changes: 1 addition & 1 deletion atomix/README.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
## Relevant articles:

- [Introduction to Atomix](http://www.baeldung.com/atomix)
- [Introduction to Atomix](https://www.baeldung.com/atomix)
4 changes: 2 additions & 2 deletions autovalue/README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
### Relevant Articles:
- [Introduction to AutoValue](http://www.baeldung.com/introduction-to-autovalue)
- [Introduction to AutoFactory](http://www.baeldung.com/autofactory)
- [Introduction to AutoValue](https://www.baeldung.com/introduction-to-autovalue)
- [Introduction to AutoFactory](https://www.baeldung.com/autofactory)
- [Google AutoService](https://www.baeldung.com/google-autoservice)
4 changes: 2 additions & 2 deletions aws-lambda/README.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
### Relevant Articles:
- [Using AWS Lambda with API Gateway](http://www.baeldung.com/aws-lambda-api-gateway)
- [Introduction to AWS Serverless Application Model](http://www.baeldung.com/aws-serverless)
- [Using AWS Lambda with API Gateway](https://www.baeldung.com/aws-lambda-api-gateway)
- [Introduction to AWS Serverless Application Model](https://www.baeldung.com/aws-serverless)
16 changes: 8 additions & 8 deletions aws/README.md
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
### Relevant articles

- [AWS Lambda Using DynamoDB With Java](http://www.baeldung.com/aws-lambda-dynamodb-java)
- [AWS S3 with Java](http://www.baeldung.com/aws-s3-java)
- [AWS Lambda With Java](http://www.baeldung.com/java-aws-lambda)
- [Managing EC2 Instances in Java](http://www.baeldung.com/ec2-java)
- [Multipart Uploads in Amazon S3 with Java](http://www.baeldung.com/aws-s3-multipart-upload)
- [Integration Testing with a Local DynamoDB Instance](http://www.baeldung.com/dynamodb-local-integration-tests)
- [Using the JetS3t Java Client With Amazon S3](http://www.baeldung.com/jets3t-amazon-s3)
- [Managing Amazon SQS Queues in Java](http://www.baeldung.com/aws-queues-java)
- [AWS Lambda Using DynamoDB With Java](https://www.baeldung.com/aws-lambda-dynamodb-java)
- [AWS S3 with Java](https://www.baeldung.com/aws-s3-java)
- [AWS Lambda With Java](https://www.baeldung.com/java-aws-lambda)
- [Managing EC2 Instances in Java](https://www.baeldung.com/ec2-java)
- [Multipart Uploads in Amazon S3 with Java](https://www.baeldung.com/aws-s3-multipart-upload)
- [Integration Testing with a Local DynamoDB Instance](https://www.baeldung.com/dynamodb-local-integration-tests)
- [Using the JetS3t Java Client With Amazon S3](https://www.baeldung.com/jets3t-amazon-s3)
- [Managing Amazon SQS Queues in Java](https://www.baeldung.com/aws-queues-java)
- [Guide to AWS Aurora RDS with Java](https://www.baeldung.com/aws-aurora-rds-java)
2 changes: 1 addition & 1 deletion axon/README.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
### Relevant articles

- [A Guide to the Axon Framework](http://www.baeldung.com/axon-cqrs-event-sourcing)
- [A Guide to the Axon Framework](https://www.baeldung.com/axon-cqrs-event-sourcing)
2 changes: 1 addition & 1 deletion azure/README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
### Relevant Articles:

- [Deploy a Spring Boot App to Azure](http://www.baeldung.com/spring-boot-azure)
- [Deploy a Spring Boot App to Azure](https://www.baeldung.com/spring-boot-azure)

2 changes: 1 addition & 1 deletion blade/README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
### Relevant Articles:

- [Blade – A Complete Guidebook](http://www.baeldung.com/blade)
- [Blade – A Complete Guidebook](https://www.baeldung.com/blade)

Run Integration Tests with `mvn integration-test`
2 changes: 1 addition & 1 deletion bootique/README.md
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
### Relevant Articles:
- [Introduction to Bootique](http://www.baeldung.com/bootique)
- [Introduction to Bootique](https://www.baeldung.com/bootique)
4 changes: 2 additions & 2 deletions cdi/README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
### Relevant Articles:
- [CDI Interceptor vs Spring AspectJ](http://www.baeldung.com/cdi-interceptor-vs-spring-aspectj)
- [An Introduction to CDI (Contexts and Dependency Injection) in Java](http://www.baeldung.com/java-ee-cdi)
- [CDI Interceptor vs Spring AspectJ](https://www.baeldung.com/cdi-interceptor-vs-spring-aspectj)
- [An Introduction to CDI (Contexts and Dependency Injection) in Java](https://www.baeldung.com/java-ee-cdi)
- [Introduction to the Event Notification Model in CDI 2.0](https://www.baeldung.com/cdi-event-notification)

2 changes: 1 addition & 1 deletion checker-plugin/README.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
### Relevant articles

- [The Checker Framework – Pluggable Type Systems for Java](http://www.baeldung.com/checker-framework)
- [The Checker Framework – Pluggable Type Systems for Java](https://www.baeldung.com/checker-framework)
1 change: 0 additions & 1 deletion core-groovy-2/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@

## Relevant articles:

- [String Matching in Groovy](http://www.baeldung.com/)
- [Template Engines in Groovy](https://www.baeldung.com/groovy-template-engines)
- [Groovy def Keyword](https://www.baeldung.com/groovy-def-keyword)
- [Pattern Matching in Strings in Groovy](https://www.baeldung.com/groovy-pattern-matching)
Expand Down
6 changes: 3 additions & 3 deletions core-groovy/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@

## Relevant articles:

- [JDBC with Groovy](http://www.baeldung.com/jdbc-groovy)
- [Working with JSON in Groovy](http://www.baeldung.com/groovy-json)
- [JDBC with Groovy](https://www.baeldung.com/jdbc-groovy)
- [Working with JSON in Groovy](https://www.baeldung.com/groovy-json)
- [Reading a File in Groovy](https://www.baeldung.com/groovy-file-read)
- [Types of Strings in Groovy](https://www.baeldung.com/groovy-strings)
- [A Quick Guide to Iterating a Map in Groovy](https://www.baeldung.com/groovy-map-iterating)
Expand All @@ -12,4 +12,4 @@
- [Finding Elements in Collections in Groovy](https://www.baeldung.com/groovy-collections-find-elements)
- [Lists in Groovy](https://www.baeldung.com/groovy-lists)
- [Converting a String to a Date in Groovy](https://www.baeldung.com/groovy-string-to-date)
- [Guide to I/O in Groovy](https://www.baeldung.com/groovy-io)
- [Guide to I/O in Groovy](https://www.baeldung.com/groovy-io)
62 changes: 31 additions & 31 deletions core-kotlin/README.md
Original file line number Diff line number Diff line change
@@ -1,36 +1,36 @@
## Relevant articles:

- [Introduction to the Kotlin Language](http://www.baeldung.com/kotlin)
- [Guide to the “when{}” Block in Kotlin](http://www.baeldung.com/kotlin-when)
- [Comprehensive Guide to Null Safety in Kotlin](http://www.baeldung.com/kotlin-null-safety)
- [Kotlin Java Interoperability](http://www.baeldung.com/kotlin-java-interoperability)
- [Difference Between “==” and “===” operators in Kotlin](http://www.baeldung.com/kotlin-equality-operators)
- [Generics in Kotlin](http://www.baeldung.com/kotlin-generics)
- [Introduction to Kotlin Coroutines](http://www.baeldung.com/kotlin-coroutines)
- [Destructuring Declarations in Kotlin](http://www.baeldung.com/kotlin-destructuring-declarations)
- [Lazy Initialization in Kotlin](http://www.baeldung.com/kotlin-lazy-initialization)
- [Overview of Kotlin Collections API](http://www.baeldung.com/kotlin-collections-api)
- [Converting a List to Map in Kotlin](http://www.baeldung.com/kotlin-list-to-map)
- [Data Classes in Kotlin](http://www.baeldung.com/kotlin-data-classes)
- [Delegated Properties in Kotlin](http://www.baeldung.com/kotlin-delegated-properties)
- [Sealed Classes in Kotlin](http://www.baeldung.com/kotlin-sealed-classes)
- [JUnit 5 for Kotlin Developers](http://www.baeldung.com/junit-5-kotlin)
- [Extension Methods in Kotlin](http://www.baeldung.com/kotlin-extension-methods)
- [Infix Functions in Kotlin](http://www.baeldung.com/kotlin-infix-functions)
- [Try-with-resources in Kotlin](http://www.baeldung.com/kotlin-try-with-resources)
- [Regular Expressions in Kotlin](http://www.baeldung.com/kotlin-regular-expressions)
- [Objects in Kotlin](http://www.baeldung.com/kotlin-objects)
- [Reading from a File in Kotlin](http://www.baeldung.com/kotlin-read-file)
- [Guide to Kotlin @JvmField](http://www.baeldung.com/kotlin-jvm-field-annotation)
- [Filtering Kotlin Collections](http://www.baeldung.com/kotlin-filter-collection)
- [Writing to a File in Kotlin](http://www.baeldung.com/kotlin-write-file)
- [Lambda Expressions in Kotlin](http://www.baeldung.com/kotlin-lambda-expressions)
- [Kotlin String Templates](http://www.baeldung.com/kotlin-string-template)
- [Working with Enums in Kotlin](http://www.baeldung.com/kotlin-enum)
- [Create a Java and Kotlin Project with Maven](http://www.baeldung.com/kotlin-maven-java-project)
- [Reflection with Kotlin](http://www.baeldung.com/kotlin-reflection)
- [Get a Random Number in Kotlin](http://www.baeldung.com/kotlin-random-number)
- [Idiomatic Logging in Kotlin](http://www.baeldung.com/kotlin-logging)
- [Introduction to the Kotlin Language](https://www.baeldung.com/kotlin)
- [Guide to the “when{}” Block in Kotlin](https://www.baeldung.com/kotlin-when)
- [Comprehensive Guide to Null Safety in Kotlin](https://www.baeldung.com/kotlin-null-safety)
- [Kotlin Java Interoperability](https://www.baeldung.com/kotlin-java-interoperability)
- [Difference Between “==” and “===” operators in Kotlin](https://www.baeldung.com/kotlin-equality-operators)
- [Generics in Kotlin](https://www.baeldung.com/kotlin-generics)
- [Introduction to Kotlin Coroutines](https://www.baeldung.com/kotlin-coroutines)
- [Destructuring Declarations in Kotlin](https://www.baeldung.com/kotlin-destructuring-declarations)
- [Lazy Initialization in Kotlin](https://www.baeldung.com/kotlin-lazy-initialization)
- [Overview of Kotlin Collections API](https://www.baeldung.com/kotlin-collections-api)
- [Converting a List to Map in Kotlin](https://www.baeldung.com/kotlin-list-to-map)
- [Data Classes in Kotlin](https://www.baeldung.com/kotlin-data-classes)
- [Delegated Properties in Kotlin](https://www.baeldung.com/kotlin-delegated-properties)
- [Sealed Classes in Kotlin](https://www.baeldung.com/kotlin-sealed-classes)
- [JUnit 5 for Kotlin Developers](https://www.baeldung.com/junit-5-kotlin)
- [Extension Methods in Kotlin](https://www.baeldung.com/kotlin-extension-methods)
- [Infix Functions in Kotlin](https://www.baeldung.com/kotlin-infix-functions)
- [Try-with-resources in Kotlin](https://www.baeldung.com/kotlin-try-with-resources)
- [Regular Expressions in Kotlin](https://www.baeldung.com/kotlin-regular-expressions)
- [Objects in Kotlin](https://www.baeldung.com/kotlin-objects)
- [Reading from a File in Kotlin](https://www.baeldung.com/kotlin-read-file)
- [Guide to Kotlin @JvmField](https://www.baeldung.com/kotlin-jvm-field-annotation)
- [Filtering Kotlin Collections](https://www.baeldung.com/kotlin-filter-collection)
- [Writing to a File in Kotlin](https://www.baeldung.com/kotlin-write-file)
- [Lambda Expressions in Kotlin](https://www.baeldung.com/kotlin-lambda-expressions)
- [Kotlin String Templates](https://www.baeldung.com/kotlin-string-template)
- [Working with Enums in Kotlin](https://www.baeldung.com/kotlin-enum)
- [Create a Java and Kotlin Project with Maven](https://www.baeldung.com/kotlin-maven-java-project)
- [Reflection with Kotlin](https://www.baeldung.com/kotlin-reflection)
- [Get a Random Number in Kotlin](https://www.baeldung.com/kotlin-random-number)
- [Idiomatic Logging in Kotlin](https://www.baeldung.com/kotlin-logging)
- [Kotlin Constructors](https://www.baeldung.com/kotlin-constructors)
- [Creational Design Patterns in Kotlin: Builder](https://www.baeldung.com/kotlin-builder-pattern)
- [Kotlin Nested and Inner Classes](https://www.baeldung.com/kotlin-inner-classes)
Expand Down
10 changes: 5 additions & 5 deletions couchbase/README.md
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
## Couchbase SDK Tutorial Project

### Relevant Articles:
- [Introduction to Couchbase SDK for Java](http://www.baeldung.com/java-couchbase-sdk)
- [Using Couchbase in a Spring Application](http://www.baeldung.com/couchbase-sdk-spring)
- [Asynchronous Batch Operations in Couchbase](http://www.baeldung.com/async-batch-operations-in-couchbase)
- [Querying Couchbase with MapReduce Views](http://www.baeldung.com/couchbase-query-mapreduce-view)
- [Querying Couchbase with N1QL](http://www.baeldung.com/n1ql-couchbase)
- [Introduction to Couchbase SDK for Java](https://www.baeldung.com/java-couchbase-sdk)
- [Using Couchbase in a Spring Application](https://www.baeldung.com/couchbase-sdk-spring)
- [Asynchronous Batch Operations in Couchbase](https://www.baeldung.com/async-batch-operations-in-couchbase)
- [Querying Couchbase with MapReduce Views](https://www.baeldung.com/couchbase-query-mapreduce-view)
- [Querying Couchbase with N1QL](https://www.baeldung.com/n1ql-couchbase)

### Overview
This Maven project contains the Java code for the Couchbase entities and Spring services
Expand Down
2 changes: 1 addition & 1 deletion dagger/README.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
### Relevant articles:

- [Introduction to Dagger 2](http://www.baeldung.com/dagger-2)
- [Introduction to Dagger 2](https://www.baeldung.com/dagger-2)
2 changes: 1 addition & 1 deletion deeplearning4j/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@
This is a sample project for the [deeplearning4j](https://deeplearning4j.org) library.

### Relevant Articles:
- [A Guide to Deeplearning4j](http://www.baeldung.com/deeplearning4j)
- [A Guide to Deeplearning4j](https://www.baeldung.com/deeplearning4j)
2 changes: 1 addition & 1 deletion disruptor/README.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
## Relevant articles:

- [Concurrency with LMAX Disruptor – An Introduction](http://www.baeldung.com/lmax-disruptor-concurrency)
- [Concurrency with LMAX Disruptor – An Introduction](https://www.baeldung.com/lmax-disruptor-concurrency)
Loading

0 comments on commit e2f6187

Please sign in to comment.