| Delivery | Primary contact | Secondary contact | Tertiary contact |
|---|---|---|---|
| Site fuel (diesel, petrol) | power rangers | power lead | site lead |
| Theme camp fuel | relevant person in camp (not on radio) | theme camp lead | malfare shift lead (accio Nomad) |
| Ice | Ice camper on duty | No Info | Malfare shift lead |
| Water | Theme camp lead | Any briefed volunteer (need to handle money) | Site Lead |
| Deliveries | if specific camp, them (not on radio) | multiple camps: ?production | site lead |
| Tow-Trucks | Malfare Shift Lead (accio Nomads) | ||
| Police | Site lead | Malfare shift lead | Board lead |
| Fire | Site lead | Malfare shift lead | Board lead |
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
| =QUERY(IMPORTRANGE("https://docs.google.com/spreadsheets/d/1PQe7nPK97toYYocbqMX7qn2_6F6w2FpW7Bf4waOLucw/edit#gid=1402173896", "Form Responses 1!A1:H500"), "SELECT Col2, Col7, Col3, Col4, Col5, Col6, Col8 where Col5 CONTAINS 'Decor'",1) | |
| =QUERY(IMPORTRANGE(" | |
| https://docs.google.com/spreadsheets/d/1PQe7nPK97toYYocbqMX7qn2_6F6w2FpW7Bf4waOLucw/edit#gid=1402173896", // LINK TO SHEET | |
| "Form Responses 1!A1:H500" // RANGE TO SELECT FROM | |
| ), | |
| "SELECT Col2, Col7, Col3, Col4, Col5, Col6, Col8 WHERE Col5 CONTAINS 'Decor'",1) // NOTE, here, we can't use B, G, C, D etc -- convert to Col# |
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
| find_member githubgists@no2id.net | while read L | |
| do | |
| bin/withlist -r last_post ${L} 2>&1 | grep Last | |
| done | column -t | awk '{print $9, $6, $7, $1}' | sort -h | column -t |
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
| <?php | |
| class cpvg_hyperlink_mailto{ | |
| public function adminProperties() { | |
| return array('cpvg_hyperlink_mailto' => array('label'=>'Hiperlink (Mailto)')); | |
| } | |
| public function processValue($value='NOT_SET',$output_options='',$additional_data) { | |
| if($value=='NOT_SET'){ | |
| //show something in the preview |
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
| To close the serial console, you would typically type three characters in quick succession: | |
| ~ (tilde) | |
| . (full-stop / period) | |
| ENTER |
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
| | # | C | D | G | | |
| | 3 | Arrival Date | Departure Date | 2015-07-01 | 2015-07-02 | 2015-07-03 | | |
| | 5 | 2015-07-03 | 2015-07-15 | 0 | 0 | 1 | | |
| =IF(AND(G$3>=$C5,G$3<=$D5), 1, 0) |
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 F in `ls *.fodg`; do | |
| f="${F}-filter" | |
| sed -n '/<\/office:automatic-styles>/,$p' "${F}" > ${f} | |
| # styles.fodg contains the xml shite upto </office:automatic-styles> | |
| # from a doc containing the styles sought/wanted to replicate | |
| cat ../../styles.fodg ${f} > ${f}.out | |
| mv "${f}.out" "${F}" | |
| 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
| list_lists --bare | perl -ne 'chomp; print qq^<li><a href="/listinfo/$_">$_</a></li>\n^;' >> /path/to/index.inc |
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
| gin | market | tonic | slice | |
| --------------------|---------------------|----------------------------|-------- | |
| Beefeater | Domestic | Fever Tree Indian | Lemon | |
| Beefeater | Imported | Indi | Lemon | |
| Beeferater 24 | Domestic | Fever Tree Mediterranean | Lemon | |
| Beeferater 24 | Imported | Indi | Lemon | |
| Bloom | Domestic | Fever Tree Indian | Lemon | |
| Bloom | Imported | Indi | Lime | |
| Bombay Saphire | Domestic | Fever Tree Mediterranean | Lime | |
| Bombay Saphire | Imported | Abbondio | Lime |
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
| =IF(B5<>"", GOOGLETRANSLATE(B5, "EN", "ES"), "") |