I hereby claim:
- I am frainfreeze on github.
- I am frainfreeze (https://keybase.io/frainfreeze) on keybase.
- I have a public key whose fingerprint is DE0B CF6F F0AB D065 2E3A D460 B705 03F4 E6C8 E67A
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
| /** | |
| * Retrieves all the rows in the active spreadsheet that contain data and logs the | |
| * values for each row. | |
| * For more information on using the Spreadsheet API, see | |
| * https://developers.google.com/apps-script/service_spreadsheet | |
| */ | |
| function readRows() { | |
| var sheet = SpreadsheetApp.getActiveSheet(); | |
| var rows = sheet.getDataRange(); | |
| var numRows = rows.getNumRows(); |
| :: 13.08.2011 | |
| :: Dxdiag Miner 1.1 by Morrolan, made for #Minecrafthelp at EsperNet. | |
| :: Feel free to redistribute and/or modify the file at will, but it'd be nice if you were to give the author credit. | |
| :: Turn off echoing commands to the console, set colour to light green. | |
| @echo off | |
| Color 0A | |
| echo Dxdiag Miner v1.1 |
| title tinyGet | |
| @echo off | |
| echo image scrap/file dl/web mirror (img/dl/mir) | |
| set /p option= | |
| IF /i "%option%"=="img" goto imgScrap | |
| IF /i "%option%"=="dl" goto dlFile | |
| IF /i "%option%"=="mir" goto mirror | |
| echo Not found. | |
| goto commonexit |
| import wx | |
| import wx.html2 | |
| class MyBrowser(wx.Dialog): | |
| def __init__(self, *args, **kwds): | |
| wx.Dialog.__init__(self, *args, **kwds) | |
| sizer = wx.BoxSizer(wx.VERTICAL) | |
| self.browser = wx.html2.WebView.New(self) | |
| sizer.Add(self.browser, 1, wx.EXPAND, 10) | |
| self.SetSizer(sizer) |
| <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> | |
| <html> | |
| <head> | |
| <script type="text/javascript" src="/static/js/analytics.js"></script> | |
| <script type="text/javascript">archive_analytics.values.server_name="wwwb-app13.us.archive.org";archive_analytics.values.server_ms=151;</script> | |
| <link type="text/css" rel="stylesheet" href="/static/css/banner-styles.css"/> | |
| import subprocess | |
| import datetime | |
| today = datetime.datetime.now() | |
| dump_file = ('dumped/' + today + '.txt') | |
| def write_dump(): | |
| try: | |
| a = subprocess.check_output(['tcpdump']) | |
| dump = open(dump_file 'w') |