How to find URLs for live channels of pooq and tving
https://goo.gl/DVgTno
This file contains hidden or 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
| # -*- coding: utf-8 -*- | |
| # Extract sprites | |
| import argparse | |
| import struct | |
| import os | |
| # mode 13h resolution | |
| MONITOR_WIDTH = 320 |
This file contains hidden or 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
| # -*- coding: utf-8 -*- | |
| # Extract sprites | |
| import argparse | |
| import struct | |
| import os | |
| # mode 13h resolution | |
| MONITOR_WIDTH = 320 |
This file contains hidden or 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
| # -*- coding: utf-8 -*- | |
| # Extract sprites | |
| import argparse | |
| import struct | |
| import os | |
| # mode 13h resolution | |
| MONITOR_WIDTH = 320 |
This file contains hidden or 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
| # -*- coding: utf-8 -*- | |
| # Extract sprites | |
| import argparse | |
| import struct | |
| import os | |
| # mode 13h resolution | |
| MONITOR_WIDTH = 320 |
This file contains hidden or 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
| # -*- coding: utf-8 -*- | |
| import argparse | |
| import struct | |
| import os | |
| parser = argparse.ArgumentParser(description='Check integrity of a sprite file.') | |
| parser.add_argument('-f', required=True, help='sprite file', dest='spr') | |
| args = parser.parse_args() |
This file contains hidden or 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
| # -*- coding: utf-8 -*- | |
| import argparse | |
| import struct | |
| import os | |
| parser = argparse.ArgumentParser(description='Check integrity of a sprite file.') | |
| parser.add_argument('-f', required=True, help='sprite file', dest='spr') | |
| args = parser.parse_args() |
This file contains hidden or 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
| # -*- coding: utf-8 -*- | |
| # Extract sprites | |
| import argparse | |
| import struct | |
| import os | |
| # mode 13h resolution | |
| MONITOR_WIDTH = 320 |
This file contains hidden or 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 argparse | |
| import requests | |
| from lxml import html | |
| import sys | |
| def main(): | |
| ap = argparse.ArgumentParser(description="Get cell phone usage from AMobile.") | |
| ap.add_argument("-i", required=True, help="User ID", dest="id") | |
| ap.add_argument("-p", required=True, help="User Password", dest="pw") |
This file contains hidden or 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/sh | |
| # Check usage for AMobile, a.k.a. AnnexTelecom. | |
| show_usage () | |
| { | |
| local name=`basename "$0"` | |
| cat << EOF | |
| Usage: $name [OPTIONS] -i ID -p PASSWORD |