User contributions for PeterHarding
Jump to navigation
Jump to search
- 07:54, 24 April 2008 diff hist +78 Encoding Schemes
- 07:54, 24 April 2008 diff hist 0 N File:Codes.ppt current
- 07:53, 24 April 2008 diff hist +37 N Encoding Schemes New page: =Hamming and Other Codes= See [here]
- 14:05, 21 April 2008 diff hist +124 Python - XML Processing
- 14:04, 21 April 2008 diff hist 0 N File:0001.xml current
- 13:59, 21 April 2008 diff hist −39 Python - XML Processing
- 13:57, 21 April 2008 diff hist +16,376 N Python - XML Processing New page: =Using XML Module (xml.dom.utils) to Parse XML= Here is a bit of code I used recently for pulling apart a chunk of XML (a SOAP request). <pre> #!/usr/bin/env python #--------------------...
- 13:53, 21 April 2008 diff hist +430 N Python - Regular Expressions New page: =Using the re Module= <pre> #!/usr/bin/env python #-------------------------------------------------------------------------- import re ... if re.match('esb:', node_name): (na... current
- 17:50, 20 April 2008 diff hist +130 N InfoInfo - Phone Numbers New page: =FaxStream= TestFax Service in Melbourne was 03 9640 0999. Theis has been replaced by 1 300 368 999. =Number Check= 125 ????? current
- 21:31, 18 April 2008 diff hist −10 Generating LoadRunner PRM file
- 21:30, 18 April 2008 diff hist +11 Generating LoadRunner PRM file
- 13:33, 17 April 2008 diff hist +12 Performance Analysis
- 13:32, 17 April 2008 diff hist +44 Performance Analysis
- 13:30, 17 April 2008 diff hist +23 Performance Analysis
- 10:35, 17 April 2008 diff hist +187 Registering a WIndows DLL
- 10:34, 17 April 2008 diff hist +53 Registering a WIndows DLL
- 10:33, 17 April 2008 diff hist +528 N Registering a WIndows DLL New page: <pre> regsvr32 c:\windows\system32\dcl.dll </pre> Also see: * http://www.tutorialspoint.com/dll/dll_registering.htm =Notes= You can't use regsvr32 if the DLL is not an Active-X DLL. ...
- 10:12, 17 April 2008 diff hist +63 N Category:Tools New page: Links to resources and references relating to (software) tools. current
- 10:09, 17 April 2008 diff hist +87 N Category:DOS New page: I know DOS is a dinosaur but you never know when some ancient knowledge will be of use! current
- 10:08, 17 April 2008 diff hist +16 DOS Timer current
- 10:07, 17 April 2008 diff hist +38 DOS Timer
- 10:06, 17 April 2008 diff hist +93 DOS Timer
- 10:06, 17 April 2008 diff hist 0 N File:SleepTest.batch current
- 10:05, 17 April 2008 diff hist −2 DOS Timer
- 10:05, 17 April 2008 diff hist +63 DOS Timer
- 10:04, 17 April 2008 diff hist 0 N File:SleepMilliseconds.exe current
- 10:03, 17 April 2008 diff hist +651 N DOS Timer New page: =BAT File= <pre> @ECHO OFF for /F "tokens=2-4 delims=/ " %%a in ('date /t') do (set date=%%c%%b%%a) for /F "tokens=1-3 delims=: " %%a in ('time /t') do (set time=%%a%%b%%c) TaskLIST | FIN...
- 17:12, 16 April 2008 diff hist −7 LoadRunner Code Snippets
- 17:12, 16 April 2008 diff hist +3 LoadRunner Code Snippets
- 17:11, 16 April 2008 diff hist +4 LoadRunner Code Snippets
- 17:11, 16 April 2008 diff hist +2 LoadRunner Code Snippets
- 17:11, 16 April 2008 diff hist +29,176 LoadRunner Code Snippets
- 17:03, 16 April 2008 diff hist +2 LoadRunner Code Snippets
- 17:03, 16 April 2008 diff hist −13 LoadRunner Code Snippets
- 17:02, 16 April 2008 diff hist +2,278 LoadRunner Code Snippets
- 16:53, 16 April 2008 diff hist +15 LoadRunner Code Snippets
- 16:53, 16 April 2008 diff hist −7 LoadRunner Code Snippets
- 16:52, 16 April 2008 diff hist +2,327 N LoadRunner Code Snippets New page: =Finding Multiple Instances in a Page= Here we are looking for invoices in an invoice list... <pre> //----- At 'Invoice Search Screen' ----------------------------------------- w...
- 16:50, 16 April 2008 diff hist +1 LoadRunner Scripting Notes current
- 12:59, 16 April 2008 diff hist +1 LoadRunner Scripting Notes
- 12:59, 16 April 2008 diff hist +1,383 LoadRunner Scripting Notes →Defining Parameters
- 12:47, 16 April 2008 diff hist +15 Generating LoadRunner PRM file
- 12:46, 16 April 2008 diff hist +26 LoadRunner Scripting Notes
- 12:45, 16 April 2008 diff hist +2,946 N LoadRunner Scripting Notes New page: =Customizing the Script Configuraion File= The .usr file is the primary configuration file for the script. Sample of the internal format is as follows: <pre> [General] Type=QTWeb Recor...
- 12:03, 16 April 2008 diff hist +26 Synthesizing SVT Data →Other Examples
- 12:03, 16 April 2008 diff hist +21 Python - File sorts
- 12:03, 16 April 2008 diff hist +3,141 N Python - File sorts New page: =Example= <pre> #!/usr/bin/env python # # $Id:$ # #------------------------------------------------------------------------------- """ Sort CSV data to generate LoadRunner parameter fil...
- 09:37, 16 April 2008 diff hist −15 Reformat LoadRunner Scripts
- 09:36, 16 April 2008 diff hist +5,219 N Reformat LoadRunner Scripts New page: =Example= The following script is an early draft of a work in progress to reformat LoadRunner scripts to improve their readability. <pre> #!/usr/bin/env python # # $Id:$ # #------------...
- 09:33, 16 April 2008 diff hist +3,476 N Generating LoadRunner PRM file New page: =Script= <pre> #!/usr/bin/env python # # $Id:$ # #------------------------------------------------------------------------------- import os import re #---------------------------------...