Skip to content

Instantly share code, notes, and snippets.

View Syzygianinfern0's full-sized avatar
:dependabot:
sudo apt-get rekt

S P Sharan Syzygianinfern0

:dependabot:
sudo apt-get rekt
View GitHub Profile

Screen Quick Reference

Basic

Description Command
Start a new session with session name screen -S <session_name>
List running sessions / screens screen -ls
Attach to a running session screen -x
Attach to a running session with name screen -r <session_name>
@Syzygianinfern0
Syzygianinfern0 / clone.py
Created June 19, 2020 16:31
Clone Private Repos on Headless Machines
import os
from getpass import getpass
import urllib
user = input('User name: ')
password = getpass('Password: ')
password = urllib.parse.quote(password) # your password is converted into url format
repo_name = input('Repo url: ').split("https://")[1] # https://github.com/Syzygianinfern0/WAV2TEXT.git
cmd_string = 'git clone https://{0}:{1}@{2}'.format(user, password, repo_name)
@Syzygianinfern0
Syzygianinfern0 / README-Template.md
Created March 4, 2019 15:19 — forked from PurpleBooth/README-Template.md
A template to make good README.md

Project Title

One Paragraph of project description goes here

Getting Started

These instructions will get you a copy of the project up and running on your local machine for development and testing purposes. See deployment for notes on how to deploy the project on a live system.

Prerequisites