Drupal 8 - How to Theme Form and its Fields with reordering fields
Introduction In this post, we will see how to theme form and its fields…
August 14, 2019
Assuming you have a java project and is using Visual Studio Code as IDE. All of your programs were running perfectly fine. Suddenly, you ran a main class and you encountered with this error:
Could not find or load main class
And, there is no compilation errors. No error in problems tab in IDE. Only warnings may exists.
This solution assumes your java project/program is having no compilation error.
This issue happens most of the time when you have moved/renamed multiple files or folders in your project. The issue exists with Visual Studio Code as its registry becomes out of sync with these bulk files rename operation.
The solution is to remove the workspace directory. You may find the locations:
Windows : %APPDATA%\Code\User\workspaceStorage\
MacOS : $HOME/Library/Application Support/Code/User/workspaceStorage/
Linux : $HOME/.config/Code/User/workspaceStorage/
You may need to restart your Visual Studio Code. And, try to run now. It should work.
Introduction In this post, we will see how to theme form and its fields…
Listing down the commonly used Elastic Search queries. You can get search…
This post some useful tips of using strings, and some issues while dealing with…
Introduction Lets assume we have a csv something similar to following: Python…
Pylint is an excellent tool to have good quality code. This post is not about…
Introduction In this post we will see following: How to schedule a job on cron…
Introduction There are some cases, where I need another git repository while…
Introduction In this post, we will see how to fetch multiple credentials and…
Introduction I have an automation script, that I want to run on different…
Introduction I had to write a CICD system for one of our project. I had to…
Introduction Java log4j has many ways to initialize and append the desired…