-
How much does a pushup weigh?
http://www.fit36.com/archives/how-much-does-a-pushup-weigh/ Given that I’m doing the 100 Pushups Challenge, this is an interesting question. The answer in the article is 65-75%. Interestingly enough, the Flying Pig in Cincinnati has an associated event (for the 5k, 10, half and full) Pump and Run. The benchmark weight for a 19-39 year old male is 75% of body…
-
Day 3, Week 1: Hundred Pushup Program
Third day of week 1 of the hundred pushup program: Tried to do round robin instead of all sets for each exercise. Not enough rest. Set tally, “-“=2-minute recovery period. “[#]”=max Pushups: 15-13-10-10-[20], 68 total.Situps : 15-13-10-10-[32], 80 total.Curls : 15-13-10-10-[20], 68 total.Lifts : 15-13-10-10-[15], 63 total.
-
VBScript to push files into an array based on a wildcard
Option ExplicitDim gFSODim dirListingDim fileNameset gFSO = CreateObject("Scripting.FileSystemObject")dirListing = ListDir("c:??*d*")If UBound(dirListing) = -1 then Wscript.Echo "No files found."Else For Each fileName in dirListing WScript.Echo FileName NextEnd If’==============================================================================’ List a directory, with the last part of the directory being the path’==============================================================================Function ListDir (ByVal Path) Dim fileRegex Dim searchFolderName Dim searchFolder Dim searchFolderFiles Dim fileName Dim fileArray…