- Upload the script attached to your vps with its name as
modmail.sh. - Run
chmod +x ./modmail.sh - Then run
sudo ./modmail.sh(Ignore sudo if logged in as a root user) - After the script has been completed successfully, just run
pipenv run python3 modmail/bot.pyandpipenv run python3 logviewer/app.pyto start the logviewer and the bot!
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
| FROM alpine:3.10 | |
| WORKDIR /usr/src/modmail | |
| COPY . . | |
| ENV LC_ALL=en_US.UTF-8 \ | |
| LANG=en_US.UTF-8 | |
| RUN apk update \ |
- The Below Configuration is for current stable ratelimited.me. However If You Want RLMEv3's config, just scrool down a bit!
-
Copy/paste the config into a text editor of your choice
-
Modify the values (especially YOUR_KEY_HERE with your uploader token)
-
Save as
rlme.uploaderin youruploadersfolder in your KShare config folder (usually~/.config/KShare)
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
| #include <iostream> | |
| #include <conio.h> | |
| using namespace std; | |
| int main() | |
| { | |
| int a,d , fib1 = 0, fib2 = 1, fib3 = 1; | |
| cout << "Enter number"; |
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
| // | |
| // Created by Lab on 12/3/2018. | |
| #include <conio.h> | |
| #include <iostream> | |
| using namespace std; | |
| int main(){ | |
| int i,j,a[2][2]; | |
| cout << " Enter Matrix"; |
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
| #include <conio.h> | |
| #include <iostream> | |
| using namespace std; | |
| int main(){ | |
| int i,j,a[2][2],b[2][2],c[2][2]; | |
| cout << " Enter Matrix"; | |
| for(i=0 ; i < 2 ; i++){ |
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
| #include <iostream> | |
| using namespace std; | |
| int main(){ | |
| int sum=0,a[5]; | |
| cout << "Enter Numbers!"; | |
| for(int i =0; i<5;i++){ | |
| cin >> a[i]; | |
| } |
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
| #include <iostream> | |
| using namespace std; | |
| int main(){ | |
| int a[5],max=0,min; | |
| for(int i=0;i<5;i++){ | |
| cin >> a[i]; | |
| } |
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
| [ | |
| { | |
| "text": "Everyone", | |
| "type": "WATCHING" | |
| }, | |
| { | |
| "text": "When Will Tournament Start", | |
| "type": "WATCHING" | |
| }, |
NewerOlder