package selftuts;
import java.util.HashMap;
class Selftuts{
public static void main(String[] args) {
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
import requests | |
import datetime | |
import pytz | |
import smtplib, ssl | |
from email.mime.multipart import MIMEMultipart | |
from email.mime.text import MIMEText | |
import time | |
smtp_server = "smtp.gmail.com" | |
port = 587 |
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
sudo snap install docker | |
sudo chmod 666 /var/run/docker.sock |
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
import java.util.ArrayList; | |
import java.util.Arrays; | |
import java.util.List; | |
class Edge { | |
int src; | |
int dest; | |
public Edge(int src,int dest) { | |
this.src = src; |
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
{ | |
"plugins": { | |
"node": {} | |
} | |
} |
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
"############################################################################### | |
" Genreal settings | |
"############################################################################### | |
set backspace=2 | |
syntax on | |
set autoindent | |
set shiftwidth=4 | |
set softtabstop=4 | |
set expandtab | |
set 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
./configure --with-features=huge \ | |
--enable-multibyte \ | |
--enable-python3interp=yes \ | |
--with-python3-config-dir=/usr/bin/python3-config \ | |
--enable-gui=gtk2 \ | |
--enable-cscope \ | |
--enable-fail-if-missing \ | |
--prefix=/usr/local |