Current events: Difference between revisions
From David's Notebook
Jump to navigationJump to search
(→2018) |
No edit summary |
||
| (200 intermediate revisions by 6 users not shown) | |||
| Line 1: | Line 1: | ||
== Weekly Games == |
== Weekly Games == |
||
| ⚫ | |||
;31 Jan |
|||
:Emma's birthday so I might be late -dm |
|||
| ⚫ | |||
;07 Feb |
|||
:Pamela's birthday: Dinner date. [[User:Bert|Bert]] ([[User talk:Bert|talk]]) |
|||
; |
;12 Aug |
||
| ⚫ | |||
:Valentine's Day: Henry booked by Sarah |
|||
:Bert also out for dinner |
|||
; |
;19 Aug |
||
: Delphine definitely on holidays |
|||
| ⚫ | |||
; |
;26 Aug |
||
:Delphine late because first evening with the kids in 10 days |
|||
:Henry likely to be a bit late (working night shift in Singapore) - don't wait for me to start. |
|||
; |
;02 Sep |
||
:Andy away |
|||
:Henry in Singapore but hoping to play. |
|||
; |
;09 Sep |
||
:No Henry (sorry) |
|||
; |
;16 Sep |
||
:Delphine in NL |
|||
; |
;23 Sep |
||
:No Henry - holiday |
|||
; |
;30 Sep |
||
; |
;07 Oct |
||
; |
;14 Oct |
||
* Delphine in Berlin |
|||
* Henry in Singapore - "maybe" |
|||
; |
;21 Oct |
||
* Henry in Singapore - "maybe" |
|||
; |
;28 Oct |
||
* Henry in Singapore - "maybe" |
|||
; |
;04 Nov |
||
* Henry on holiday - not playing |
|||
; |
;11 Nov |
||
* Henry on holiday - not playing |
|||
; |
;18 Nov |
||
* Henry on holiday - not playing |
|||
; |
;25 Nov |
||
* Delphine somewhere but not here |
|||
; |
;02 Dec |
||
* No Craig |
|||
; |
;09 Dec |
||
* No Craig |
|||
* Probably no Henry |
|||
; |
;16 Dec |
||
; |
;23 Dec |
||
* Henry maybe away |
|||
; |
;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 |
||
;10 Oct |
|||
;17 Oct |
|||
;24 Oct |
|||
;31 Oct |
|||
;07 Nov |
|||
;14 Nov |
|||
;21 Nov |
|||
;28 Nov |
|||
;05 Dec |
|||
;12 Dec |
|||
;19 Dec |
|||
;26 Dec |
|||
;02 Jan |
|||
;09 Jan |
|||
;16 Jan |
|||
;23 Jan |
|||
;30 Jan |
|||
;06 Feb |
|||
== Other Events == |
== Other Events == |
||
| Line 137: | Line 77: | ||
Meet - [[Meeting]] |
Meet - [[Meeting]] |
||
Anyone fancy trying a quick game of Everyone Is John: |
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]]) |
||
== |
== Date output script == |
||
<code> |
<code> |
||
| Line 148: | 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
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.