Skip to content

Instantly share code, notes, and snippets.

View debu999's full-sized avatar

Debabrata Patnaik debu999

  • JP MORGAN CHASE N.A.
  • Bengaluru
  • 14:07 (UTC +05:30)
  • X @i_m_debu
View GitHub Profile
@debu999
debu999 / 1.README.MD
Created May 29, 2023 16:52
QUARKUS VSCODE CMDER AKA CONEMU

If using cmder do use a custom shell executable to run tasks else you might find source file not found issue.

"windows": {
    "options": {
      "shell": {
        "executable": "cmd.exe",
        "args": [
          "/d", "/c", "[cmder_root]\\vendor\\init.bat", "&&"
 ]
@debu999
debu999 / docker_commands.ini
Last active February 18, 2022 14:54
Docker and Kubernetes handy commands
New Tutorial
Docker is a on OS-level virtualization software platform that enables developers and IT administrators to create, deploy and run applications
in a Docker Container with all their dependencies....
Docker Advantages: Rapid deployment / Quick and easy configuration / Better efficiency / Portability / Scalability / Security
Docker Image: Instruction Template to create containers. Dockerfile, Multi layered, usually starts with base layer.
COMMANDS
docker --version / docker version
docker run hello-world # to run a image with tag latest
@debu999
debu999 / Mac_intellij_reset_2021.2.sh
Last active January 16, 2022 03:41
Mac IntelliJ reset for 2021.3 and beyond
#!/bin/bash
echo "removing evaluation key..."
# in mac you can look at installed version and then delete the evaluation file. Big Sur OS Version.
rm -rfv ~/Library/Application\ Support/JetBrains/IntelliJIdea2021.2/eval
echo "resetting evalsprt in other.xml ... "
sed -i '' '/evlsprt/d' ~/Library/Application\ Support/JetBrains/IntelliJIdea2021.2/options/other.xml
defaults delete com.apple.java.util.prefs 2> /dev/null
#!/bin/bash
echo "removing evaluation key..."
# in mac you can look at installed version and then delete the evaluation file. Big Sur OS Version.
rm -rfv ~/Library/Application\ Support/JetBrains/IntelliJIdea2021.1/eval
echo "resetting evalsprt in other.xml ... "
sed -i '' '/evlsprt/d' ~/Library/Application\ Support/JetBrains/IntelliJIdea2021.1/options/other.xml
defaults delete com.apple.java.util.prefs 2> /dev/null