-
My first powershell
A foreach loop that calls ping with a specific buffer size, and sends output to a ping*.txt file corresponding to the buffer size: foreach ($number in 32, 256, 1024) { ping -n100 -l$number yahoo.com > ping$number.txt }
-
Ran 19 miles in two segments today
Ran with a group today for the first part of my long run with Trent from RunningAhead and a co-worker. Co-worker has a natural 3:30 marathon pace, with a BQ under his belt. Trent led the way, and we managed to keep exactly on my “target” LR/ER pace of 9’18”. Total Time (h:m:s) 1:33:05 (9:18…
-
For when I really can’t get my brain fired up on a given day
Project Euler for programming problems.: "Project Euler is a series of challenging mathematical/computer programming problems that will require more than just mathematical insights to solve. Although mathematics will help you arrive at elegant and efficient methods, the use of a computer and programming skills will be required to solve most problems." I was looking up…