Home
Khuong Dev
Cancel

What's the difference between implementation, api and compile in Gradle?

Gradle What’s the difference between implementation, api and compile (compileOnly, runtimeOnly, testImplementation, testCompileOnly, testRuntimeOnly) in Gradle? Name Role ...

Create a multi-project with Gradle/Maven

Gradle (Groovy) . ├── app │ ... │ └── build.gradle └── settings.gradle rootProject.name = 'basic-multiproject' include 'app' plugins { id 'application' } application { mainClass ...

How to write a New Post in the Chirpy template

This tutorial will guide you how to write a post in the Chirpy template, and it’s worth reading even if you’ve used Jekyll before, as many features require specific variables to be set. Naming and...

Some helpful websites for Java Developer

Whichjdk Introduce JDK, OpenJDK and some openjdk distributions. And some recommendations for using the right distributions

AWS CLI for EC2

Examples Example 1: List All instances from Default Region aws ec2 describe-instances Example 2: List All instances with query With all informations aws ec2 describe-instances \ --region ...

Deploy a Docker container with SSH access

Prepare Dockerfile, image, container and IP address Dockerfile FROM ubuntu:22.10 RUN apt update && apt install -y openssh-server nano RUN mkdir /var/run/sshd # [email protected] is root pa...

NodeJS memory usage check

NodeJS Checking memory usage const makeReadable = (value: number): string => `${Math.round((value / 1024 / 1024) * 100) / 100} MB`; export const memoryUsage = (): string => { const use...

Installing, uninstalling or updating the latest version of the AWS CLI

Linux Install or update the AWS CLI *Linux x86 (64-bit): curl "https://awscli.amazonaws.com/awscli-exe-linux-x86_64.zip" -o "awscliv2.zip" unzip awscliv2.zip sudo ./aws/install *Linux ARM cur...

Useful Linux and Unix commands

Debian/Ubuntu Useful Commands Check OS version cat /etc/os-release Search text from terminal grep -rnwi '/path/file.js' -e 'keyword_not_case_sensitive' Show some logs, contents from line X t...

Git Tips

Tips Everyday Git in twenty commands or so git help everyday Show helpful guides that come with Git git help -g Search change by content git log -S'<a term in the source>' Show chan...