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
| ISS (ZARYA) | |
| 1 25544U 98067A 26123.29655904 .00006490 00000+0 12550-3 0 9998 | |
| 2 25544 51.6307 162.3031 0007275 18.2147 341.9100 15.49074480564795 |
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
| true && true | |
| # true | |
| true & true | |
| # true | |
| true & false | |
| # false | |
| true && false |
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
| #!/usr/bin/env/python | |
| # -*- coding: utf-8 -*- | |
| import sys | |
| import os | |
| import BaseHTTPServer | |
| from SimpleHTTPServer import SimpleHTTPRequestHandler | |
| os.chdir("/") |