This file contains 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
# Bindings {{{ | |
# Remap prefix | |
unbind C-b | |
#set -g prefix C-Space | |
set -g prefix C-a | |
# Quick key for moving back to the previous window | |
bind-key L last-window | |
# Vim style bindings for pane movement |
This file contains 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
docker run -ti --rm kalilinux/kali-rolling:latest bash | |
apt update && apt -y install git python3.9 python3-pip | |
pip3 install virtualenv | |
virtualenv --python=python3.9 py39 | |
cd py39 | |
source bin/activate | |
pip3 install --upgrade -e git+https://github.com/twintproject/twint.git@origin/master#egg=twint; | |
twint -u vladimircicovic --user-full |
This file contains 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 tweepy | |
# tweepy version 4.10.0 | |
# This script remove all tweets | |
# go to https://developer.twitter.com/en/portal/projects-and-apps | |
# Add app, then click on app name, find Keys and Tokens | |
# Generate Access Token and Secret | |
# Replace all information with proper in <> and USERNAME of your developer account that using this tokens and keys | |
# reminder: you need to run more times bcs of Twitter limits |