| Time | Date | Opponent | Location |
|---|---|---|---|
| 12:00 PM | April 2 | @Twin Boro | Creekside Park |
| 10:15 AM | April 16 | @North Hills | Reis Run Park & Athletic Complex Field 1 |
| 10:30 AM | April 23 | Shaler | Moskala Field |
| 6:15 PM | April 29 | Hampton | Moskala Field |
| 9:00 AM | April 30 | @North Hills | Reis Run Park & Athletic Complex Field 2 |
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
| for i in `ls -t boo*.txt | sed '1,5d'`; do rm -f $i; done |
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
| public static DateTime GetDateOfMostRecent(this DayOfWeek dayOfWeek, DateTime date) { | |
| return date.DayOfWeek.Equals(dayOfWeek) ? date.Date : GetDateOfMostRecent(dayOfWeek, date.AddDays(-1)); | |
| } |
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
| (function () { | |
| 'use strict'; | |
| var _setTimeout = setTimeout; | |
| setTimeout = function (fn/*, delay, callbackParm1, callbackParm2, etc. */) { | |
| var delay, callbackParameters; | |
| delay = arguments[1] || 0; | |
| callbackParameters = Array.prototype.slice.call(arguments, 2); |
OlderNewer