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
| __author__ = 'Matthew' | |
| import re | |
| import urllib | |
| def parse_reportlist(filename): | |
| counter = 999 | |
| urls = [] | |
| with open(filename, 'r') as f: |
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 telnetlib | |
| import re | |
| import time | |
| class TPW8961N(object): | |
| def __init__(self, host): | |
| self.host = host |
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
| options: | |
| parameters: | |
| author: '' | |
| catch_exceptions: 'True' | |
| category: '[GRC Hier Blocks]' | |
| cmake_opt: '' | |
| comment: '' | |
| copyright: '' | |
| description: '' | |
| gen_cmake: 'On' |
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
| 'Power dbm/watts conversion program for MMBasic | |
| sub Wait_For_Enter () | |
| INPUT "Press enter to return to menu..."; DUMMY$ | |
| end sub | |
| Sub Dbm_To_Watts() |
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
| ' draw basic gradient for picocalc MMBasic | |
| sub Draw() | |
| local x | |
| local y | |
| local width = 320 | |
| local height = 320 | |
| for x = 0 to width-1 | |
| for y = 0 to height-1 |
OlderNewer