(C-x means ctrl+x, M-x means alt+x)
The default prefix is C-b. If you (or your muscle memory) prefer C-a, you need to add this to ~/.tmux.conf:
| /* | |
| * Include this file into main build.gradle of the project. | |
| * Replace the task connectedPlaystoreDebugAndroidTest with | |
| * parallelInstrumentationRun to run test in parallel | |
| */ | |
| configurations.create('spoonTest').transitive(false) | |
| dependencies { | |
| spoonTest group:'com.squareup.spoon', name:'spoon-runner', version:'1.7.1', classifier: 'jar-with-dependencies', ext: 'jar' | |
| } |
| """ | |
| Simple Script to inform you when the website is up and automatically starts a new session in default browser | |
| This script assumes the url entered is valid. | |
| Author:alphaguy4 | |
| """ | |
| import requests | |
| import sys | |
| import time | |
| import webbrowser |
| import email, getpass, imaplib, os | |
| detach_dir = '.' # directory where to save attachments (default: current) | |
| user = raw_input("Enter your GMail username:") | |
| pwd = getpass.getpass("Enter your password: ") | |
| # connecting to the gmail imap server | |
| m = imaplib.IMAP4_SSL("imap.gmail.com") | |
| m.login(user,pwd) | |
| m.select("cs2043") # here you a can choose a mail box like INBOX instead |