排序
Improving a snippet of code
Improving a snippet of code,While working on an Open Source project, I came across this piece of code: public void clear() { Object[] items = this.items; for (int i = 0, n = size; ...
My Career as a Software Developer
My Career as a Software Developer,For my first post on Dev.to, I want to talk about my experience over the last 4 years and how I came to be the developer that I am today. I'm goin...
Simple WearOS App using Java
Simple WearOS App using Java,Let's get started. Things you'll need Android Studio installed and configured. Android Wear emulator configured (Either square or rounded). Basic knowl...
Quick Tip – How to have an EditText which takes only numbers ?
Quick Tip – How to have an EditText which takes only numbers ?,Hello ! I’m Xavier Jouvenot and in this small post, I am going to explain how to create an EditText which takes onl...
Caching & IOStrategy @ SwayDB
Caching & IOStrategy @ SwayDB,We all know that Memory IO is 50-200 times faster than Disk IO! Caching plays a decent role in boosting read and compaction performance but some machi...
Locating jar files containing a given class in the command line
Locating jar files containing a given class in the command line,Have you ever been in a situation where you need to check whether a given Java class is present or not in some jar l...
How we do automated testing on our backend
How we do automated testing on our backend,After sharing how we do automated testing on our fronted in my previous post I wanted to share too how we test our backend services using...
How to easily add sentiment analysis to any Java application
How to easily add sentiment analysis to any Java application,You probably want your bot to look as human as possible. And a key characteristic of (many) humans is their empathy, i....
MicroProfile Config in Azure Kubernetes Service
MicroProfile Config in Azure Kubernetes Service, 1. MicroProfile Config in Azure Kubernetes Service The application should separates the external system configuration such like the...
Specialization
Specialization,Hello guys, What do you think about Specialization? In my case, I'm so confused,i don't know if i should learn some of advanced things in web development, desktop ap...
Java Server Build your own HTTP server in Java in less than one hour (only GET method)
Java Server Build your own HTTP server in Java in less than one hour (only GET method), One of the most frequency used protocol in the whole Internet * * In OSI model, layer 7 Ever...