A place to cache linked articles (think custom and personal wayback machine)
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

index.html 33KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533
  1. <!doctype html><!-- This is a valid HTML5 document. -->
  2. <!-- Screen readers, SEO, extensions and so on. -->
  3. <html lang="en">
  4. <!-- Has to be within the first 1024 bytes, hence before the `title` element
  5. See: https://www.w3.org/TR/2012/CR-html5-20121217/document-metadata.html#charset -->
  6. <meta charset="utf-8">
  7. <!-- Why no `X-UA-Compatible` meta: https://stackoverflow.com/a/6771584 -->
  8. <!-- The viewport meta is quite crowded and we are responsible for that.
  9. See: https://codepen.io/tigt/post/meta-viewport-for-2015 -->
  10. <meta name="viewport" content="width=device-width,initial-scale=1">
  11. <!-- Required to make a valid HTML5 document. -->
  12. <title>Redeployment Part One (archive) — David Larlet</title>
  13. <meta name="description" content="Publication mise en cache pour en conserver une trace.">
  14. <!-- That good ol' feed, subscribe :). -->
  15. <link rel="alternate" type="application/atom+xml" title="Feed" href="/david/log/">
  16. <!-- Generated from https://realfavicongenerator.net/ such a mess. -->
  17. <link rel="apple-touch-icon" sizes="180x180" href="/static/david/icons2/apple-touch-icon.png">
  18. <link rel="icon" type="image/png" sizes="32x32" href="/static/david/icons2/favicon-32x32.png">
  19. <link rel="icon" type="image/png" sizes="16x16" href="/static/david/icons2/favicon-16x16.png">
  20. <link rel="manifest" href="/static/david/icons2/site.webmanifest">
  21. <link rel="mask-icon" href="/static/david/icons2/safari-pinned-tab.svg" color="#07486c">
  22. <link rel="shortcut icon" href="/static/david/icons2/favicon.ico">
  23. <meta name="msapplication-TileColor" content="#f7f7f7">
  24. <meta name="msapplication-config" content="/static/david/icons2/browserconfig.xml">
  25. <meta name="theme-color" content="#f7f7f7" media="(prefers-color-scheme: light)">
  26. <meta name="theme-color" content="#272727" media="(prefers-color-scheme: dark)">
  27. <!-- Is that even respected? Retrospectively? What a shAItshow…
  28. https://neil-clarke.com/block-the-bots-that-feed-ai-models-by-scraping-your-website/ -->
  29. <meta name="robots" content="noai, noimageai">
  30. <!-- Documented, feel free to shoot an email. -->
  31. <link rel="stylesheet" href="/static/david/css/style_2021-01-20.css">
  32. <!-- See https://www.zachleat.com/web/comprehensive-webfonts/ for the trade-off. -->
  33. <link rel="preload" href="/static/david/css/fonts/triplicate_t4_poly_regular.woff2" as="font" type="font/woff2" media="(prefers-color-scheme: light), (prefers-color-scheme: no-preference)" crossorigin>
  34. <link rel="preload" href="/static/david/css/fonts/triplicate_t4_poly_bold.woff2" as="font" type="font/woff2" media="(prefers-color-scheme: light), (prefers-color-scheme: no-preference)" crossorigin>
  35. <link rel="preload" href="/static/david/css/fonts/triplicate_t4_poly_italic.woff2" as="font" type="font/woff2" media="(prefers-color-scheme: light), (prefers-color-scheme: no-preference)" crossorigin>
  36. <link rel="preload" href="/static/david/css/fonts/triplicate_t3_regular.woff2" as="font" type="font/woff2" media="(prefers-color-scheme: dark)" crossorigin>
  37. <link rel="preload" href="/static/david/css/fonts/triplicate_t3_bold.woff2" as="font" type="font/woff2" media="(prefers-color-scheme: dark)" crossorigin>
  38. <link rel="preload" href="/static/david/css/fonts/triplicate_t3_italic.woff2" as="font" type="font/woff2" media="(prefers-color-scheme: dark)" crossorigin>
  39. <script>
  40. function toggleTheme(themeName) {
  41. document.documentElement.classList.toggle(
  42. 'forced-dark',
  43. themeName === 'dark'
  44. )
  45. document.documentElement.classList.toggle(
  46. 'forced-light',
  47. themeName === 'light'
  48. )
  49. }
  50. const selectedTheme = localStorage.getItem('theme')
  51. if (selectedTheme !== 'undefined') {
  52. toggleTheme(selectedTheme)
  53. }
  54. </script>
  55. <meta name="robots" content="noindex, nofollow">
  56. <meta content="origin-when-cross-origin" name="referrer">
  57. <!-- Canonical URL for SEO purposes -->
  58. <link rel="canonical" href="https://brr.fyi/posts/redeployment-part-one">
  59. <body class="remarkdown h1-underline h2-underline h3-underline em-underscore hr-center ul-star pre-tick" data-instant-intensity="viewport-all">
  60. <article>
  61. <header>
  62. <h1>Redeployment Part One</h1>
  63. </header>
  64. <nav>
  65. <p class="center">
  66. <a href="/david/" title="Aller à l’accueil"><svg class="icon icon-home">
  67. <use xlink:href="/static/david/icons2/symbol-defs-2021-12.svg#icon-home"></use>
  68. </svg> Accueil</a> •
  69. <a href="https://brr.fyi/posts/redeployment-part-one" title="Lien vers le contenu original">Source originale</a>
  70. <br>
  71. Mis en cache le 2024-01-21
  72. </p>
  73. </nav>
  74. <hr>
  75. <p><em>This is part one of a multi-part series. Check out
  76. <a href="https://brr.fyi/posts/redeployment-part-two">part two</a> and
  77. <a href="https://brr.fyi/posts/redeployment-part-three">part three</a> next!</em></p>
  78. <hr>
  79. <p>Hello everyone! Thank you all for your patience, and thank you to everyone who reached out to make sure I was
  80. OK.</p>
  81. <p>I’m free! I left Antarctica in mid-November 2023. A bit behind schedule, but well within the typical delays
  82. experienced by departing winterover personnel.</p>
  83. <p>
  84. <a href="https://brr.fyi/media/redeployment-part-one/walking-to-plane-mcmurdo-01.jpg">
  85. <picture>
  86. <source srcset="https://brr.fyi/media/redeployment-part-one/walking-to-plane-mcmurdo-01-small.webp" type="image/webp"></source>
  87. <source srcset="https://brr.fyi/media/redeployment-part-one/walking-to-plane-mcmurdo-01-small.jpg" type="image/jpg"></source>
  88. <img src="https://brr.fyi/media/redeployment-part-one/walking-to-plane-mcmurdo-01-small.jpg" alt="Walking to Plane McMurdo 01">
  89. </picture>
  90. <em>Walking to the final plane, about to depart McMurdo and travel to Christchurch!</em>
  91. </a>
  92. </p>
  93. <p>In this series of posts, I will catch you all up on the process for
  94. “redeploying”, aka “getting the heck out of Antarctica”. This roughly covers the time period
  95. from September 2023 through November 2023.</p>
  96. <p>This series will take me 8,300 miles, from the dark depths of South Pole winter, all the way through sitting
  97. on my couch back in San Francisco. Thanks again for your patience, and I hope these next several posts
  98. will be worth the wait.</p>
  99. <p>Sitting here now, looking back at 14 months in Antarctica, it all seems so very, very far away. Not just physically,
  100. but mentally as well. I’m completely re-integrated back into real life, going about my normal day-to-day activities.</p>
  101. <h1 id="overview">Overview</h1>
  102. <p>At one point, shortly after redeploying to Christchurch, I found myself
  103. sitting outdoors on a beautiful, warm, sunny afternoon. I was in
  104. <a href="https://en.wikipedia.org/wiki/Arthur%27s_Pass">Arthur’s Pass, New Zealand</a>,
  105. and the contrast could not have been more stark from where I was just a few days earlier.</p>
  106. <p>
  107. <a href="https://brr.fyi/media/redeployment-part-one/arthurs-pass-mobile-office-01.jpg">
  108. <picture>
  109. <source srcset="https://brr.fyi/media/redeployment-part-one/arthurs-pass-mobile-office-01-small.webp" type="image/webp"></source>
  110. <source srcset="https://brr.fyi/media/redeployment-part-one/arthurs-pass-mobile-office-01-small.jpg" type="image/jpg"></source>
  111. <img src="https://brr.fyi/media/redeployment-part-one/arthurs-pass-mobile-office-01-small.jpg" alt="Arthur's Pass Mobile Office 01">
  112. </picture>
  113. <em>A beautiful day for blogging, in warm, sunny New Zealand.</em>
  114. </a>
  115. </p>
  116. <p>Everything was <em>alive</em>, everything was <em>vibrant</em>. The natural world was <em>vast</em> and <em>full of wonders</em>.</p>
  117. <p>It’s now January 2024, and I’m settled back into my Real Life™. I’m reconnecting with friends and family,
  118. re-learning old habits, and, unfortunately, remembering that I have to pay for food once again.</p>
  119. <p>Just two short months ago, I was trudging through the snow in -70°F weather, living in small group isolation
  120. at the bottom of the world, and soaking up every precious second of our limited Internet connectivity.</p>
  121. <p>Now I’m strolling around town, wearing a light jacket, shopping for groceries, catching up on medical appointments,
  122. and going through 14 months of accumulated postal mail. I’m once again engaging with the world through near-ubiquitous,
  123. fast Internet at my fingertips.</p>
  124. <p>So – how did I get here? How does one start off geeking out about
  125. <a href="https://brr.fyi/posts/south-pole-electrical-infrastructure">South Pole Electrical Infrastructure</a>,
  126. in the depths of winter, and end up back home after <a href="https://brr.fyi/posts/travel-begins">16 months</a> away?</p>
  127. <h1 id="sunrise">Sunrise</h1>
  128. <p>The journey began with our slow climb out of <a href="https://brr.fyi/posts/polar-night">Polar Night</a>.
  129. Recall that the South Pole experiences six months of
  130. 24x7 darkness, and six months of 24x7 daylight. We experience one very long sunset, and one very long sunrise,
  131. each year. For a refresher on this, check out my previous post about <a href="https://brr.fyi/posts/sunset">Sunset</a> at the South Pole.</p>
  132. <p>Faint light appeared on the horizon several weeks prior to sunrise, as expected. It was
  133. subtle at first – so subtle in fact that we weren’t sure if we were seeing light from the sun, or
  134. light from lingering auroras. But by early September, it was clear that we were approaching sunrise.</p>
  135. <p>Here’s a photo from fellow winterover Jeff Capps (<a href="https://www.instagram.com/thejeffcapps/">Instagram</a>)
  136. that captures the emerging sun against the snow:</p>
  137. <p>
  138. <a href="https://brr.fyi/media/redeployment-part-one/jeff-sunrise-01.jpg">
  139. <picture>
  140. <source srcset="https://brr.fyi/media/redeployment-part-one/jeff-sunrise-01-small.webp" type="image/webp"></source>
  141. <source srcset="https://brr.fyi/media/redeployment-part-one/jeff-sunrise-01-small.jpg" type="image/jpg"></source>
  142. <img src="https://brr.fyi/media/redeployment-part-one/jeff-sunrise-01-small.jpg" alt="Jeff Sunrise 01">
  143. </picture>
  144. <em>Sun reflecting off the snow, from September 4, 2023. Photo credit: Jeff Capps</em>
  145. </a>
  146. </p>
  147. <p>Lest you be fooled into thinking we had a clear view as the sunrise progressed – the weather was <em>especially</em>
  148. temperamental this year. Most days in September were overcast, which meant fewer beautiful sunrise photos
  149. and more… gray.</p>
  150. <p>We were vaguely aware of where the sun was in the sky, as its perfect
  151. counter-clockwise circles got closer and closer to the horizon. However, we mostly observed a steady increase in
  152. overall diffuse light, filtered through clouds and haze.</p>
  153. <p>
  154. <a href="https://brr.fyi/media/redeployment-part-one/overcast-01.jpg">
  155. <picture>
  156. <source srcset="https://brr.fyi/media/redeployment-part-one/overcast-01-small.webp" type="image/webp"></source>
  157. <source srcset="https://brr.fyi/media/redeployment-part-one/overcast-01-small.jpg" type="image/jpg"></source>
  158. <img src="https://brr.fyi/media/redeployment-part-one/overcast-01-small.jpg" alt="Overcast 01">
  159. </picture>
  160. <em>Perfect, featureless overcast gray, from September 12, 2023. Note the drifts that formed
  161. around these buildings! Recall that this was all flat last summer.</em>
  162. </a>
  163. </p>
  164. <p>
  165. <a href="https://brr.fyi/media/redeployment-part-one/overcast-02.jpg">
  166. <picture>
  167. <source srcset="https://brr.fyi/media/redeployment-part-one/overcast-02-small.webp" type="image/webp"></source>
  168. <source srcset="https://brr.fyi/media/redeployment-part-one/overcast-02-small.jpg" type="image/jpg"></source>
  169. <img src="https://brr.fyi/media/redeployment-part-one/overcast-02-small.jpg" alt="Overcast 02">
  170. </picture>
  171. <em>More overcast scenes as it got lighter outside. These are our emergency surface fuel tanks.</em>
  172. </a>
  173. </p>
  174. <p>
  175. <a href="https://brr.fyi/media/redeployment-part-one/overcast-03.jpg">
  176. <picture>
  177. <source srcset="https://brr.fyi/media/redeployment-part-one/overcast-03-small.webp" type="image/webp"></source>
  178. <source srcset="https://brr.fyi/media/redeployment-part-one/overcast-03-small.jpg" type="image/jpg"></source>
  179. <img src="https://brr.fyi/media/redeployment-part-one/overcast-03-small.jpg" alt="Overcast 03">
  180. </picture>
  181. <em>More overcast scenes as it got lighter outside. Heavy equipment, parked outside and covered with snow.</em>
  182. </a>
  183. </p>
  184. <p>With the increasing light from the sun, our dark-sky science projects were switched off for the summer.</p>
  185. <p>This meant we could finally uncover our windows! Recall from <a href="https://brr.fyi/posts/polar-night">Polar Night</a> that we
  186. took great care to avoid any stray light pollution outside during the night. This ensured that we could collect
  187. scientific data that depended on the absence of visible light.</p>
  188. <p>
  189. <a href="https://brr.fyi/media/redeployment-part-one/window-covering-01.jpg">
  190. <picture>
  191. <source srcset="https://brr.fyi/media/redeployment-part-one/window-covering-01-small.webp" type="image/webp"></source>
  192. <source srcset="https://brr.fyi/media/redeployment-part-one/window-covering-01-small.jpg" type="image/jpg"></source>
  193. <img src="https://brr.fyi/media/redeployment-part-one/window-covering-01-small.jpg" alt="Windows Covering 01">
  194. </picture>
  195. <em>Window coverings removed, and light from outside reaching the galley for the first time in months!</em>
  196. </a>
  197. </p>
  198. <p>
  199. <a href="https://brr.fyi/media/redeployment-part-one/overcast-04.jpg">
  200. <picture>
  201. <source srcset="https://brr.fyi/media/redeployment-part-one/overcast-04-small.webp" type="image/webp"></source>
  202. <source srcset="https://brr.fyi/media/redeployment-part-one/overcast-04-small.jpg" type="image/jpg"></source>
  203. <img src="https://brr.fyi/media/redeployment-part-one/overcast-04-small.jpg" alt="Overcast 04">
  204. </picture>
  205. <em>The vehicle entrance to our arches. On the left, lit up, is the logistics arch. On the right is
  206. the vehicle maintenance facility.</em>
  207. </a>
  208. </p>
  209. <p>
  210. <a href="https://brr.fyi/media/redeployment-part-one/overcast-05.jpg">
  211. <picture>
  212. <source srcset="https://brr.fyi/media/redeployment-part-one/overcast-05-small.webp" type="image/webp"></source>
  213. <source srcset="https://brr.fyi/media/redeployment-part-one/overcast-05-small.jpg" type="image/jpg"></source>
  214. <img src="https://brr.fyi/media/redeployment-part-one/overcast-05-small.jpg" alt="Overcast 05">
  215. </picture>
  216. <em>The elevated station, from afar. Note the absence of window covers, and visible light shining
  217. out from the building.</em>
  218. </a>
  219. </p>
  220. <p>Sunrise itself was a subdued affair. Technically, it occurred right on schedule
  221. (September 21, 2023 at 3:39pm New Zealand Time), but we were enveloped by cloud
  222. cover. It’s so gradual anyway, occurring over the course of several days, that we wouldn’t have noticed the
  223. exact event even if we did have a clear view.</p>
  224. <p>Fortunately the clouds cleared up later, and we got our first real glimpse of the sun around
  225. September 26, 2023:</p>
  226. <p>
  227. <a href="https://brr.fyi/media/redeployment-part-one/sunrise-01.jpg">
  228. <picture>
  229. <source srcset="https://brr.fyi/media/redeployment-part-one/sunrise-01-small.webp" type="image/webp"></source>
  230. <source srcset="https://brr.fyi/media/redeployment-part-one/sunrise-01-small.jpg" type="image/jpg"></source>
  231. <img src="https://brr.fyi/media/redeployment-part-one/sunrise-01-small.jpg" alt="Overcast 01">
  232. </picture>
  233. <em>September 26, 2023, a few days after sunrise, once we finally got a break in the clouds!</em>
  234. </a>
  235. </p>
  236. <p>The sun continued to rise, and daylight gradually returned to the South Pole. By early October, we were
  237. treated to a beautiful glow reflecting off our buildings, as the sun continued its rotation and its slow
  238. ascent into the sky. Just like during <a href="https://brr.fyi/posts/sunset">Sunset</a>,
  239. you could witness a sunrise from whatever direction you wanted, just by going outside at different times of day.</p>
  240. <p>
  241. <a href="https://brr.fyi/media/redeployment-part-one/sun-glow-01.jpg">
  242. <picture>
  243. <source srcset="https://brr.fyi/media/redeployment-part-one/sun-glow-01-small.webp" type="image/webp"></source>
  244. <source srcset="https://brr.fyi/media/redeployment-part-one/sun-glow-01-small.jpg" type="image/jpg"></source>
  245. <img src="https://brr.fyi/media/redeployment-part-one/sun-glow-01-small.jpg" alt="Sun Glow 01">
  246. </picture>
  247. <em>Sunrise reflecting off of the station.</em>
  248. </a>
  249. </p>
  250. <p>
  251. <a href="https://brr.fyi/media/redeployment-part-one/sun-glow-02.jpg">
  252. <picture>
  253. <source srcset="https://brr.fyi/media/redeployment-part-one/sun-glow-02-small.webp" type="image/webp"></source>
  254. <source srcset="https://brr.fyi/media/redeployment-part-one/sun-glow-02-small.jpg" type="image/jpg"></source>
  255. <img src="https://brr.fyi/media/redeployment-part-one/sun-glow-02-small.jpg" alt="Sun Glow 02">
  256. </picture>
  257. <em>Another view of the sunrise reflecting off of the station.</em>
  258. </a>
  259. </p>
  260. <h1 id="station-prep">Station Prep</h1>
  261. <p>As the sun rose, and as we approached the late-October arrival of our first flight, we began preparing the
  262. station for “summer mode”.</p>
  263. <p>As I mentioned in <a href="https://brr.fyi/posts/last-flight-out">Last Flight Out</a>, Summer and Winter in
  264. Antarctica are vastly different. Winter is… quiet. The crew size is smaller.
  265. Things are more casual, more laid back. We’re a fixed, stable
  266. population, isolated together for 8.5 months.</p>
  267. <p>It begins to feel less like a place of employment, and more like a large co-living / shared housing community.
  268. Of course, it’s still a federal government property, and subject to the compliance and work obligations
  269. that come along with this. However, given the reduced population, isolation, and change in pace,
  270. it does begin to feel familiar and comfortable.</p>
  271. <p>
  272. <a href="https://brr.fyi/media/redeployment-part-one/quiet-reading-room-01.jpg">
  273. <picture>
  274. <source srcset="https://brr.fyi/media/redeployment-part-one/quiet-reading-room-01-small.webp" type="image/webp"></source>
  275. <source srcset="https://brr.fyi/media/redeployment-part-one/quiet-reading-room-01-small.jpg" type="image/jpg"></source>
  276. <img src="https://brr.fyi/media/redeployment-part-one/quiet-reading-room-01-small.jpg" alt="Quiet Reading Room 01">
  277. </picture>
  278. <em>The quiet reading room, a cozy spot to relax.</em>
  279. </a>
  280. </p>
  281. <p>During the winter, many departments, IT included, are subject to a more casual
  282. daily task schedule. Our goal over the winter is to stay on top of day-to-day upkeep, to execute on
  283. long-running projects, to respond to incidents, and to tackle any larger maintenance items
  284. that can’t be done when the station is “full” over the summer.</p>
  285. <p>It’s important to have expertise on site,
  286. in case of any issues with the facilities, systems, or science. This is true
  287. even if we aren’t always using this expertise on a day-to-day basis.
  288. The majority of the winter, I absolutely did not operate at the cutting edge of my IT experience.
  289. The workload simply did not require it. But –
  290. there were a few times I did, and it was a good thing someone with that experience was readily available.</p>
  291. <p>
  292. <a href="https://brr.fyi/media/redeployment-part-one/it-office-01.jpg">
  293. <picture>
  294. <source srcset="https://brr.fyi/media/redeployment-part-one/it-office-01-small.webp" type="image/webp"></source>
  295. <source srcset="https://brr.fyi/media/redeployment-part-one/it-office-01-small.jpg" type="image/jpg"></source>
  296. <img src="https://brr.fyi/media/redeployment-part-one/it-office-01-small.jpg" alt="IT Office 01">
  297. </picture>
  298. <em>The IT office at Pole, in the process of getting cleaned up and prepared for the incoming summer crew.</em>
  299. </a>
  300. </p>
  301. <p>By contrast, Summer is a short, frantic, hectic, and crowded season. The sun is up, we can fly people and
  302. equipment in and out,
  303. and it’s warm enough to do outdoor work that isn’t feasible during winter.
  304. The population at Pole grows dramatically:
  305. from ~40-50 during the winter, up to ~150 or more during the summer.</p>
  306. <p>During the roughly 3.5-month summer (early November through mid-February), we’re flying down supplies,
  307. doing major projects and construction, training the next batch of winterover staff, and taking advantage of being
  308. “connected”, for a few short months, to the outside world.</p>
  309. <p>Flights come and go several times a week. Experts / specialists come down. All the
  310. “fulltimers” (staff who work on the Antarctic program year-round) come onsite. The admin offices
  311. fill up. Comms is once again staffed with dedicated personnel.</p>
  312. <p>All of this means that we have less “wiggle room” for anything off-script or inefficient. The station switches
  313. into an operating mode that maximizes occupancy, personnel throughput, and regimented productivity. Every day
  314. counts – we have just a few short months before winter isolation begins all over again.</p>
  315. <p>Take the galley for example. Over the winter, it’s a chill, relaxing place to hang out, relax, read,
  316. socialize, drink, perhaps catch a nap, and enjoy a meal at the bottom of the world:</p>
  317. <p>
  318. <a href="https://brr.fyi/media/redeployment-part-one/galley-winter-01.jpg">
  319. <picture>
  320. <source srcset="https://brr.fyi/media/redeployment-part-one/galley-winter-01-small.webp" type="image/webp"></source>
  321. <source srcset="https://brr.fyi/media/redeployment-part-one/galley-winter-01-small.jpg" type="image/jpg"></source>
  322. <img src="https://brr.fyi/media/redeployment-part-one/galley-winter-01-small.jpg" alt="Galley Winter 01">
  323. </picture>
  324. <em>The galley configuration over the winter -- fewer tables, plenty of space for a cozy lounge.</em>
  325. </a>
  326. </p>
  327. <p>
  328. <a href="https://brr.fyi/media/redeployment-part-one/karaoke-01.jpg">
  329. <picture>
  330. <source srcset="https://brr.fyi/media/redeployment-part-one/karaoke-01-small.webp" type="image/webp"></source>
  331. <source srcset="https://brr.fyi/media/redeployment-part-one/karaoke-01-small.jpg" type="image/jpg"></source>
  332. <img src="https://brr.fyi/media/redeployment-part-one/karaoke-01-small.jpg" alt="Karaoke 01">
  333. </picture>
  334. <em>... or plenty of space for weekend Karaoke.</em>
  335. </a>
  336. </p>
  337. <p>Contrast that with the same galley, optimized for summer. The goal in summer is to cram in as many seats as
  338. possible. There are 150+ people using this space. There are lines. Dishes run low. The creature comforts are
  339. gone, and it looks more like an anonymous, institutional cafeteria.</p>
  340. <p>
  341. <a href="https://brr.fyi/media/redeployment-part-one/galley-summer-01.jpg">
  342. <picture>
  343. <source srcset="https://brr.fyi/media/redeployment-part-one/galley-summer-01-small.webp" type="image/webp"></source>
  344. <source srcset="https://brr.fyi/media/redeployment-part-one/galley-summer-01-small.jpg" type="image/jpg"></source>
  345. <img src="https://brr.fyi/media/redeployment-part-one/galley-summer-01-small.jpg" alt="Galley Summer 01">
  346. </picture>
  347. <em>The galley configuration over the summer -- optimized for raw capacity.
  348. More seating, less cozy.</em>
  349. </a>
  350. </p>
  351. <p>To prepare for summer, the winterovers conduct a thorough deep cleaning, known around station as “Mighty Mouse”.
  352. This is a reference to our standard weekly “House Mouse” chores – cleaning the bathrooms, mopping, etc.</p>
  353. <p>During Mighty Mouse, we clean things more thoroughly. It’s a once-per-year endeavor where we get into all the
  354. nooks and crannies of the station, we organize the Piles™ of random items that accumulate in corners, and
  355. we reset any winter changes (authorized or otherwise) back to the summer standard configuration.</p>
  356. <p>
  357. <a href="https://brr.fyi/media/redeployment-part-one/greenhouse-deep-clean-01.jpg">
  358. <picture>
  359. <source srcset="https://brr.fyi/media/redeployment-part-one/greenhouse-deep-clean-01-small.webp" type="image/webp"></source>
  360. <source srcset="https://brr.fyi/media/redeployment-part-one/greenhouse-deep-clean-01-small.jpg" type="image/jpg"></source>
  361. <img src="https://brr.fyi/media/redeployment-part-one/greenhouse-deep-clean-01-small.jpg" alt="Greenhouse Deep Clean 01">
  362. </picture>
  363. <em>Initial re-seeding of the greenhouse, after our thorough, annual deep clean.</em>
  364. </a>
  365. </p>
  366. <p>Also toward the end of winter, we begin the herculean task of preparing the
  367. <a href="https://en.wikipedia.org/wiki/Jack_F._Paulus_Skiway">skiway</a> to receive
  368. flights. The skiway is 12,000 feet long! It accumulates snowdrifts over the winter. It’s a multi-day effort to
  369. smooth it all down so that ski-equipped planes can safely land. This is a job for our heavy equipment
  370. operator and other trained staff.</p>
  371. <p>In addition to leveling the skiway, we have to reinstall all the flags!
  372. The skiway is marked by flags, along the sides, and at either end.
  373. These are arranged in an approved pattern that is understood by the flight crews.
  374. We take down the flags over the winter to protect them from damage.
  375. Before flights resume, we have to drive up and down the entire skiway and re-install them all!
  376. This is also a multi-day (and cold!!) endeavor for a group of hardy volunteers.</p>
  377. <p>This photo is courtesy of Manwei Chan (<a href="https://www.instagram.com/stellarpuns">Instagram</a>):</p>
  378. <p>
  379. <a href="https://brr.fyi/media/redeployment-part-one/manwei-skiway-flags-01.jpg">
  380. <picture>
  381. <source srcset="https://brr.fyi/media/redeployment-part-one/manwei-skiway-flags-01-small.webp" type="image/webp"></source>
  382. <source srcset="https://brr.fyi/media/redeployment-part-one/manwei-skiway-flags-01-small.jpg" type="image/jpg"></source>
  383. <img src="https://brr.fyi/media/redeployment-part-one/manwei-skiway-flags-01-small.jpg" alt="Manwei Skiway Flags 01">
  384. </picture>
  385. <em>Reinstalling the skiway flags. Photo credit: Manwei Chan</em>
  386. </a>
  387. </p>
  388. <p>For departing winterovers, the summer changes meant it was time to start thinking about the logistics of
  389. getting us, and our stuff, home safely. Obviously the program will get you out of Antarctica. They will also get
  390. you home, to your “Airport of Departure” (AOD), the nearest major airport to your home address.</p>
  391. <p>The program allows you to take personal travel once you get off ice, prior to returning home.
  392. This means that you can defer your flight home from Christchurch to your airport of departure, and instead
  393. take some time to explore. The program won’t pay for any of this, but they <em>will</em> pay for your return flight
  394. from Christchurch on a date of your choosing.</p>
  395. <p>Many winterovers, myself included, had no interest in hauling around huge suitcases full of gear. The items
  396. you need for leisure travel around New Zealand are much different than the items you need to live for
  397. a year at the South Pole.</p>
  398. <p>To avoid the hassle of dealing with a huge suitcase,
  399. many of us simply mailed our suitcases home. Recall from <a href="https://brr.fyi/posts/mcmurdo-postal-mail">McMurdo Postal Mail</a>
  400. that there are USPS services available in Antarctica! I discussed the McMurdo setup at length in
  401. that post. Pole is similar, just smaller and less formal (this can be said about a lot of things at Pole
  402. vs. McMurdo).</p>
  403. <p>Here’s my largest suitcase, prepped and ready to mail home. It cost $80.49 to ship this 41-pound suitcase
  404. from the South Pole to the San Francisco Bay Area.</p>
  405. <p>
  406. <a href="https://brr.fyi/media/redeployment-part-one/mail-suitcase-home-01.jpg">
  407. <picture>
  408. <source srcset="https://brr.fyi/media/redeployment-part-one/mail-suitcase-home-01-small.webp" type="image/webp"></source>
  409. <source srcset="https://brr.fyi/media/redeployment-part-one/mail-suitcase-home-01-small.jpg" type="image/jpg"></source>
  410. <img src="https://brr.fyi/media/redeployment-part-one/mail-suitcase-home-01-small.jpg" alt="Mail Suitcase Home 01">
  411. </picture>
  412. <em>Mailing a suitcase home, to avoid having to haul it around New Zealand.</em>
  413. </a>
  414. </p>
  415. <p>And of course – tracking it on its journey North. Fun fact: when I flew out of Pole on November 16, I
  416. was on the same flight as my suitcase! It had been combined with the rest of our outgoing winter mail,
  417. palletized, and loaded onto the flight, to begin its long journey back to the United States.</p>
  418. <p>
  419. <a href="https://brr.fyi/media/redeployment-part-one/suitcase-tracking-01.png">
  420. <picture>
  421. <source srcset="https://brr.fyi/media/redeployment-part-one/suitcase-tracking-01.png" type="image/png"></source>
  422. <img src="https://brr.fyi/media/redeployment-part-one/suitcase-tracking-01.png" alt="Suitcase Tracking 01">
  423. </picture>
  424. <em>USPS tracking for my suitcase, from the South Pole to the San Francisco Bay Area.</em>
  425. </a>
  426. </p>
  427. <p>With the station reconfigured for summer mode, and the skiway prepped for flights, it was time to welcome new
  428. faces to Pole for the first time in 8.5 months!</p>
  429. <p><em>This is part one of a multi-part series. Check out
  430. <a href="https://brr.fyi/posts/redeployment-part-two">part two</a> and
  431. <a href="https://brr.fyi/posts/redeployment-part-three">part three</a> next!</em></p>
  432. </article>
  433. <hr>
  434. <footer>
  435. <p>
  436. <a href="/david/" title="Aller à l’accueil"><svg class="icon icon-home">
  437. <use xlink:href="/static/david/icons2/symbol-defs-2021-12.svg#icon-home"></use>
  438. </svg> Accueil</a> •
  439. <a href="/david/log/" title="Accès au flux RSS"><svg class="icon icon-rss2">
  440. <use xlink:href="/static/david/icons2/symbol-defs-2021-12.svg#icon-rss2"></use>
  441. </svg> Suivre</a> •
  442. <a href="http://larlet.com" title="Go to my English profile" data-instant><svg class="icon icon-user-tie">
  443. <use xlink:href="/static/david/icons2/symbol-defs-2021-12.svg#icon-user-tie"></use>
  444. </svg> Pro</a> •
  445. <a href="mailto:david%40larlet.fr" title="Envoyer un courriel"><svg class="icon icon-mail">
  446. <use xlink:href="/static/david/icons2/symbol-defs-2021-12.svg#icon-mail"></use>
  447. </svg> Email</a> •
  448. <abbr class="nowrap" title="Hébergeur : Alwaysdata, 62 rue Tiquetonne 75002 Paris, +33184162340"><svg class="icon icon-hammer2">
  449. <use xlink:href="/static/david/icons2/symbol-defs-2021-12.svg#icon-hammer2"></use>
  450. </svg> Légal</abbr>
  451. </p>
  452. <template id="theme-selector">
  453. <form>
  454. <fieldset>
  455. <legend><svg class="icon icon-brightness-contrast">
  456. <use xlink:href="/static/david/icons2/symbol-defs-2021-12.svg#icon-brightness-contrast"></use>
  457. </svg> Thème</legend>
  458. <label>
  459. <input type="radio" value="auto" name="chosen-color-scheme" checked> Auto
  460. </label>
  461. <label>
  462. <input type="radio" value="dark" name="chosen-color-scheme"> Foncé
  463. </label>
  464. <label>
  465. <input type="radio" value="light" name="chosen-color-scheme"> Clair
  466. </label>
  467. </fieldset>
  468. </form>
  469. </template>
  470. </footer>
  471. <script src="/static/david/js/instantpage-5.1.0.min.js" type="module"></script>
  472. <script>
  473. function loadThemeForm(templateName) {
  474. const themeSelectorTemplate = document.querySelector(templateName)
  475. const form = themeSelectorTemplate.content.firstElementChild
  476. themeSelectorTemplate.replaceWith(form)
  477. form.addEventListener('change', (e) => {
  478. const chosenColorScheme = e.target.value
  479. localStorage.setItem('theme', chosenColorScheme)
  480. toggleTheme(chosenColorScheme)
  481. })
  482. const selectedTheme = localStorage.getItem('theme')
  483. if (selectedTheme && selectedTheme !== 'undefined') {
  484. form.querySelector(`[value="${selectedTheme}"]`).checked = true
  485. }
  486. }
  487. const prefersColorSchemeDark = '(prefers-color-scheme: dark)'
  488. window.addEventListener('load', () => {
  489. let hasDarkRules = false
  490. for (const styleSheet of Array.from(document.styleSheets)) {
  491. let mediaRules = []
  492. for (const cssRule of styleSheet.cssRules) {
  493. if (cssRule.type !== CSSRule.MEDIA_RULE) {
  494. continue
  495. }
  496. // WARNING: Safari does not have/supports `conditionText`.
  497. if (cssRule.conditionText) {
  498. if (cssRule.conditionText !== prefersColorSchemeDark) {
  499. continue
  500. }
  501. } else {
  502. if (cssRule.cssText.startsWith(prefersColorSchemeDark)) {
  503. continue
  504. }
  505. }
  506. mediaRules = mediaRules.concat(Array.from(cssRule.cssRules))
  507. }
  508. // WARNING: do not try to insert a Rule to a styleSheet you are
  509. // currently iterating on, otherwise the browser will be stuck
  510. // in a infinite loop…
  511. for (const mediaRule of mediaRules) {
  512. styleSheet.insertRule(mediaRule.cssText)
  513. hasDarkRules = true
  514. }
  515. }
  516. if (hasDarkRules) {
  517. loadThemeForm('#theme-selector')
  518. }
  519. })
  520. </script>
  521. </body>
  522. </html>