grep -rnw '/path/to/somewhere/' -e 'pattern'
There's an oficial documentation with the paths where all files are stored, but not enough: https://www.jetbrains.com/help/idea/tuning-the-ide.html?_ga=2.212787218.746653765.1596784189-1872990392.1561121338#logs-directory
Complete list of commands to clean all previous IntelliJ IDEAs:
rm -rf ~/Library/Application\ Support/JetBrains/Idea*
rm -rf ~/Library/Application\ Support/IdeaIC*
Credit to Christian Perez (https://github.com/chris-zen)
brew install pyenv
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public class HelloWorld { | |
public static void main(String[] args) throws Exception { | |
if(System.out.getClass().getMethod("println", String.class).invoke(System.out, "HELLO WORLD!") == null) {} | |
} | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
user www-data; | |
worker_processes 1; | |
events { | |
worker_connections 1024; | |
} | |
http { | |
# include mime.types; | |
default_type application/octet-stream; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
## PEM Format | |
# Base64 encoded ASCII files and contain "-----BEGIN CERTIFICATE-----" | |
# and "-----END CERTIFICATE-----" statements. | |
## DER Format | |
# Binary from a certificate | |
## Convert from hex to binary | |
# xxd Concerts from binary to hex. | |
# Option "-r" reverts the conversion (from hex to binary) |