Skip to content

Commit 2882d00

Browse files
committed
Add blog post: Bird Tidbits
1 parent 2d78c39 commit 2882d00

File tree

6 files changed

+706
-2
lines changed

6 files changed

+706
-2
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,3 +3,4 @@ node_modules/
33

44
# Ignore site output
55
_site/
6+
.cache
Loading

content/blog/bird-tidbits/Birdwing.svg

Lines changed: 634 additions & 0 deletions
Loading
Lines changed: 51 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,51 @@
1+
---
2+
title: Bird Tidbits
3+
date: 2025-01-22
4+
tags: ["birds", "books"]
5+
---
6+
7+
I just read *The Snow Goose* by Paul Gallico, and I learned some bird tidbits I wanted to share!
8+
9+
## skeins
10+
11+
<figure>
12+
<img alt="A sky full of snow geese (Chen caerulescens)" src="./A_Sky_Full_of_Snow_Geese_(16664971147).jpg" >
13+
<figcaption><a href="https://commons.wikimedia.org/wiki/File:A_Sky_Full_of_Snow_Geese_(16664971147).jpg">USFWS Mountain-Prairie</a>, <a href="https://creativecommons.org/licenses/by/2.0">CC BY 2.0</a>, via Wikimedia Commons</figcaption>
14+
</figure>
15+
16+
> “Tamed in his enclosures were the geese that came winging down the coast from Iceland and Spitsbergen each October, in great **skeins** that darkened the sky and filled the air with the rushing noise of their passage–the brown-bodied pink-feet, white-breasted barnacles with their dark neck and clowns' masks, the wild white fronts with black-barred breasts, and many species of wild ducks–widgeon, mallard, pintails, teal, and shovelers” (Gallico 11–12; emphasis added).
17+
18+
Flocks of geese or ducks are called **skeins**! [This is the same word as a length of yarn](https://www.merriam-webster.com/dictionary/skein) (“Skein”). I was a bit confused with the connection, but [the Scottish Wildlife Trust says](https://scottishwildlifetrust.org.uk/2020/09/why-do-we-call-them-skeins-of-geese/), “[w]ith their very efficient, orderly lines, they can kind of look like a long piece of wool gliding through the sky, rippling as the geese change positions.” Who knows, though, because they even concede it's a “bit of an etymological mystery.”
19+
20+
I also adore how the edition of the book I was reading typeset the flock's formation as a tiny **v**.
21+
22+
<figure>
23+
<img alt="A scan of The Snow Goose, on page " src="./tiny-v.png" >
24+
<figcaption>(Gallico 24)</figcaption>
25+
</figure>
26+
27+
## primaries
28+
29+
<figure>
30+
<img alt="Bird wing bone structure, indicating attachment points of remiges." src="./Birdwing.svg" >
31+
<figcaption><a href="https://commons.wikimedia.org/wiki/File:Birdwing.svg">L. Shyamal</a>, <a href="https://creativecommons.org/licenses/by-sa/2.5">CC BY-SA 2.5</a>, via Wikimedia Commons</figcaption>
32+
</figure>
33+
34+
> “Some were **pinioned**, so that they would remain there as a sign and signal to the wild ones that came down at each winter's beginning that here was food and sanctuary” (Gallico 12; emphasis added).
35+
36+
The main character, Philip Rhayader, is a kind man to all wildlife, and the birds all very much like him, so I was confused why he would pinion–bind the wings of–some birds that visited him. However, it seems pretty common to pinion a bird, and it looks like they might grow back?
37+
38+
> “See, we will clip her **primaries** so that we can bandage it, but in the spring the feathers will grow and she will be able to fly again” (Gallico 19; emphasis added).
39+
40+
These pinions are the outermost primaries, which are flight feathers that allow a bird to take flight!
41+
42+
---
43+
44+
Those are all for now, but it was such a great read! If you are interested in reading *The Snow Goose* [you can read an e-book scan here](https://catalog.hathitrust.org/Record/001112530) or [find it in print at a library (WorldCat)](https://search.worldcat.org/en/title/284978).
45+
46+
## Works Cited
47+
<div class="hanging-indent">
48+
<p>Gallico, Paul. <i>The Snow Goose</i>. A. A. Knopf, 1941. <i>HathiTrust Digital Library</i>, <a href="https://hdl.handle.net/2027/uc1.b3688343">hdl.handle.net/2027/uc1.b3688343</a>. Accessed 22 Jan. 2025.</p>
49+
<p>“Skein.” <i>Merriam-Webster.com Dictionary</i>, Merriam-Webster, <a href="https://www.merriam-webster.com/dictionary/skein">merriam-webster.com/dictionary/skein</a>. Accessed 22 Jan. 2025.</p>
50+
<p>“Why Do We Call Them ‘skeins’ of Geese?” <i>Scottish Wildlife Trust</i>, 25 Sept. 2020, <a href="https://scottishwildlifetrust.org.uk/2020/09/why-do-we-call-them-skeins-of-geese">scottishwildlifetrust.org.uk/2020/09/why-do-we-call-them-skeins-of-geese</a>. Accessed 22 Jan. 2025.</p>
51+
</div>

content/blog/bird-tidbits/tiny-v.png

31.2 KB
Loading

public/css/post.css

Lines changed: 20 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,24 @@
11
img {
22
display: block;
3-
max-width: 300px;
3+
max-width: 30em;
44
height: auto;
55
width: auto;
6-
}
6+
padding: 1rem;
7+
}
8+
9+
figure {
10+
text-align: center;
11+
}
12+
13+
figure img {
14+
display: inline-block;
15+
}
16+
17+
figcaption {
18+
padding-top: 0.5em;
19+
}
20+
21+
.hanging-indent {
22+
text-indent: -3em;
23+
margin-left: 3em;
24+
}

0 commit comments

Comments
 (0)