Command Palette
Search for a command to run...
Comments
Join the discussionNo comments yet. Be the first to comment.
More from this blog
Docker
Copy a file to a docker container docker cp fileName.json mongodb1:/fileName.json Connect on the container terminal docker exec -it mongodb1 /bin/sh
Regex. [] - {}^$*+?() |
. (dot) It's going to search for any character inside your string. You can see that the regex found 48 occurrences on the string provided. If you want to find the .(dot) itself, you need to use the \ escape character. Like \.If you want to use any k...
SDK Man Commands
sdk install java // Install java sdk list java //See versions for java //Install an specific version sdk install java 8.0.292.j9-adpt sdk install java 11.0.2-open sdk install java 17.0.1-open sdk install java 17.0.1-open sdk install java 17.0.2-tem...
Java Collections
List ArrayList It internally uses an array Fast to access the elements by index Slower if you want to do operations in the middle LinkedList Based on a Double Linked Very fast for deleting or adding elements in the middle Vector It belon...