NISH1001 / myscripts

Scripts that make my experience easy enough

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

myscripts

Scripts that make my experience easy enough

configuration

Just add the folder bin to system path by adding following line to your bashrc:

export PATH=${PATH}:"/home/username/path-to-bin/"

temperature.sh

A bash script to get the temperature info of your cpu

earthquake.py

A python script to view the five recent earthquakes in Nepal

livescore.py

A python script to get the score information

usage

  • for viewing all the available today's scores:

    python3 livescore.py
  • for searching a specific club/team -s or --search

    python3 livescore.py -s teamname

mangascraper.py

A python script to get the chapter list of manga.

usage

python3 mangascraper.py
python3 mangascraper.py manga name with spaces

vianet.py

A python script to get the current status of my vianet plan

paradoxnet.py

A python script to scan and connect to nearby networks.
Uses iwlist to scan the network and nmcli for connecting.

python3 paradoxnet.py

usage

  • scan nearby wifi networks
    python3 paradoxnet.py -s
  • connect to wifi secured networks
    python3 -n net_name -p password_here
  • connect to wifi open networks
    python3 -n net_name

sc.py

A simple soundcloud track downloader. It needs your client id which you should get from the soundcloud api.

scmd

A naive tool to search over my cmd logs.

I usually store every command I type in the terminal at ~/.logs/ direcotory.

Usage

python scmd.py <token1> <token2> ...

The arguments are ANDed. That is, for each line in the log, if all the token are found, it's a match.

More the tokens, more concise is the search.

This script can be put in the system path.

About

Scripts that make my experience easy enough


Languages

Language:Python 97.2%Language:Shell 2.8%