Skip to content
View PasanAbeysekara's full-sized avatar
🛠️
Gotcha ;-)
🛠️
Gotcha ;-)

Organizations

@MoonCraze

Block or report PasanAbeysekara

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse
PasanAbeysekara/README.md

Profile Views

Metrics

Pinned Loading

  1. vagrant ssh doesn't work for mobaXte... vagrant ssh doesn't work for mobaXterm solution
    1
    vagrant ssh-config > vagrant-ssh
    2
    cat vagrant-ssh ------------------> To Find HOST_NAME
    3
    ssh -F vagrant-ssh <<HOST_NAME>
  2. Run MV package from commandline Run MV package from commandline
    1
    mvn -v
    2
    mvn compile
    3
    mvn test (optional)
    4
    mvn package
    5
    mvn exec:java -Dexec.mainClass="com.example.MainClass"
  3. Install Maven Install Maven
    1
    wget https://dlcdn.apache.org/maven/maven-3/3.9.6/binaries/apache-maven-3.9.6-bin.tar.gz -P /tmp
    2
    
                  
    3
    sudo tar xf /tmp/apache-maven-*.tar.gz -C /opt
    4
    
                  
    5
    sudo nano /etc/profile.d/maven.sh
  4. Get the discord channel's messages u... Get the discord channel's messages using the web app access tokens
    1
    curl --location --request GET 'https://discord.com/api/v9/channels/[[channelid]]/messages?limit=50' 
    2
    
                  
    3
    --header 'accept-language: en-US,en;q=0.9,it;q=0.8,de;q=0.7,es;q=0.6,pt;q=0.5' \
    4
    
                  
    5
    --header 'authorization: [[authtoken]]' \