Current events: Difference between revisions

From David's Notebook
Jump to navigationJump to search
No edit summary
 
(212 intermediate revisions by 6 users not shown)
Line 1: Line 1:
== Weekly Games ==
== Weekly Games ==
=== 2018===


=== 2026 ===
;03 Jan
:Delphine not sure


;10 Jan
;12 Aug
:No Game -- DM unavailable
:Henry away - no game
: Henry in Singapore - hopefully available for a short game - may be unconscious so don't wait for me!


;17 Jan
;19 Aug
: Henry in Singapore - hopefully available for a short game - may be unconscious so don't wait for me!


;24 Jan
;26 Aug
: Delphine in SF
: Henry in meetings - unavailable


;31 Jan
;02 Sep
:Andy away
:Emma's birthday so I might be late -dm


;07 Feb
;09 Sep


;14 Feb
;16 Sep


;21 Feb
;23 Sep


;28 Feb
;30 Sep


;07 Mar
;07 Oct


;14 Mar
;14 Oct


;21 Mar
;21 Oct


;28 Mar
;28 Oct


;04 Apr
;04 Nov


;11 Apr
;11 Nov


;18 Apr
;18 Nov


;25 Apr
;25 Nov


;02 May
;02 Dec


;09 May
;09 Dec


;16 May
;16 Dec


;23 May
;23 Dec


;30 May
;30 Dec


;06 Jun
;06 Jan


;13 Jun
;13 Jan


;20 Jun
;20 Jan


;27 Jun
;27 Jan


;04 Jul
;03 Feb


;11 Jul
;10 Feb


;18 Jul
;17 Feb


;25 Jul
;24 Feb


;01 Aug
;03 Mar


;08 Aug
;10 Mar

;17 Mar

;24 Mar

;31 Mar


== Other Events ==
== Other Events ==
Line 77: Line 77:
Meet - [[Meeting]]
Meet - [[Meeting]]


Anyone fancy trying a quick game of Everyone Is John: http://pftdcast.com/resources/EveryoneIsJohn.pdf ?<br />
Anyone fancy trying a quick game of Everyone Is John: https://1d4chan.org/wiki/Everyone_Is_John ?<br />
Summary: John is insane. Each PC is a Voice in John's Head, and you compete with the other Voices to complete your obsessions. -- Henry
Summary: John is insane. Each PC is a Voice in John's Head, and you compete with the other Voices to complete your obsessions. -- Henry
:Looks OK -- [[User:Craig|Craig]] ([[User talk:Craig|talk]])
:Looks OK -- [[User:Craig|Craig]] ([[User talk:Craig|talk]])


== Craig's dodgy date making bash script ==
== Date output script ==


<code>
<code>
Line 88: Line 88:


Where count is the number of days to the next Wednesday.
Where count is the number of days to the next Wednesday.

Feel free to demonstrate the super simple way that you can do this :-)

Latest revision as of 20:56, 5 August 2026

Weekly Games

2026

12 Aug
Henry away - no game
19 Aug
26 Aug
02 Sep
Andy away
09 Sep
16 Sep
23 Sep
30 Sep
07 Oct
14 Oct
21 Oct
28 Oct
04 Nov
11 Nov
18 Nov
25 Nov
02 Dec
09 Dec
16 Dec
23 Dec
30 Dec
06 Jan
13 Jan
20 Jan
27 Jan
03 Feb
10 Feb
17 Feb
24 Feb
03 Mar
10 Mar
17 Mar
24 Mar
31 Mar

Other Events

Meet - Meeting

Anyone fancy trying a quick game of Everyone Is John: https://1d4chan.org/wiki/Everyone_Is_John ?
Summary: John is insane. Each PC is a Voice in John's Head, and you compete with the other Voices to complete your obsessions. -- Henry

Looks OK -- Craig (talk)

Date output script

count=7; for week in {1..52}; do echo -n \; ; date --date="+$count days" "+%d %b"; count=$(expr $count + 7); echo; done

Where count is the number of days to the next Wednesday.