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
# Credits: https://www.hackster.io/thatiotguy/enable-monitor-mode-in-tp-link-tl-wn722n-v2-v3-128fc6 | |
# Tested on Kali Linux 2020.3 | |
# Commands used to Setup the Adapter from aircrack repository | |
sudo apt update | |
sudo apt install bc -y | |
sudo rmmod r8188eu.ko | |
git clone https://github.com/aircrack-ng/rtl8188eus | |
cd rtl8188eus | |
sudo -i | |
echo "blacklist r8188eu" > "/etc/modprobe.d/realtek.conf" |
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
{ | |
"Afghanistan" : "ps", | |
"Albania" : "sq", | |
"Algeria" : "ar", | |
"Argentina" : "es", | |
"Armenia" : "hy", | |
"Australia" : "en", | |
"Austria" : "de", | |
"Azerbaijan" : "az", | |
"Bahrain" : "ar", |
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
{ | |
"workbench.colorTheme": "Default Dark Modern" | |
} |
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 java.io.*; | |
import java.util.InputMismatchException; | |
/** | |
* Created by Shreyans on $DATE at $TIME using IntelliJ IDEA (Fast IO Template) | |
*/ | |
class $NAME | |
{ | |
public static void main(String[] args) throws Exception |
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
#!/bin/bash | |
Speed() { | |
local anu=$(ping google.com -c 1 | grep -o "time=[0-9]*") | |
local NUMBER=$(echo ${anu//[^0-9]/}) | |
echo $NUMBER | |
} | |
echo -e "Enter Number of Test Case : \c" | |
read n |