Category Archives: Family Anatidae

Clark’s Nutcracker (Nucifraga columbiana)

This summer I went on a trip to crater lake national park. While the lake itself has no birds, the pine forests surrounding the lake are filled with birds. Like all forests, however, it is very hard to see the birds, as most forest birds are found in the tops of the trees. Luckily, I managed to glimpse a few nutcrackers foraging in the treetops. Nutcrackers in the wild eat a variety of things, including insects, small mammals, berries, nuts, and even dead animals!

Nutcrackers are found across western North America, from California and Oregon north to Alberta and as far south as Western Mexico. The nutcracker is identified by its weird call, sounding like waaaa-waaaa. Once you here a call, look for the tree that the call is coming from. Since nutcrackers hide in the denser parts of the pine forests, it can be hard to spot them. However, if you spot a grey and black bird hopping around the branches, it is a nutcracker.

In addition to the nutcracker, I spotted a bunch of other birds around the pine forests, including Grey jays, American robins, and juncos. Later, when we were driving from crater lake to our hotel, I spotted 12 species of birds. Since we were in more open habitats, I spotted different species of birds. In the vast fields that were used for cows to graze on, I spotted flocks of blackbirds feeding in the grass. A bit further on a Black-billed magpie flew across the field. Soon we had reached some pine forest, although it was less wooded than the forest near crater lake. Here I saw large swift-like birds flying through the forest. At first they seemed a bit peculiar, but I soon realized that they were Common nighthawks. While they are common, they are neither nocturnal nor are they hawks. Nighthawks are actually part of a group of crepuscular (active during evening) birds called nightjars. The nightjars are found worldwide.

The unfortunate part about the birds I saw was that I could not get a picture of any of them, as we were driving and the picture would have been very blurry had I taken a photo. However, I now have several photos of the nutcracker, one even in a tree right next to crater lake!DSCN0542

Above: This Clark’s nutcracker photograph was taken in the forests of Crater Lake on our trip. I had been wanting to see it, and luckily we spotted it when we parked our car on the road to eat lunch.

Function quiz javascript

In this post I will explain how to create a very simple HTML and Javascript quiz that uses functions. A function is a set of code in Javascript that does a specific task. Below is a example of a function:

function helloworldFunction() 

alert(“Hello world!”)

When you open this code in a browser, the page alerts “hello world!”

However, to make the function interesting, you can add it to an HTML button. For example:

<button onClick=“helloworldFunction()”>hello world button</button>

When you click the button, the webpage alerts you, saying “hello world”. The above code is the basis for building a function quiz. Below is the code required to make a function quiz. (Note: the questions and answers shown here are examples, and you can make your own questions and answers. Also, the CSS styling can be made up as well. I used a black background with a border of solid blue and colored the text white.

FUNCTION QUIZ code example:

 

 

<!DOCTYPE html>
<html>
<head>
<font color=“#ffffff”><title>Quiz</title>
<h1>Quiz</h1>
</head>
<body>
<style>
background-color: #000000;
border: 2px solid blue;
</style>
<p>1. Which one of these codes is the HEX code for orange?</p>
<button onClick=“wrongFunction()”>#ffffff</button>
<button onClick=“correctFunction()”>#FFA500</button>
<button onClick=“wrongFunction()”>#FF0000</button>
<button onClick=“wrongFunction()”>#000000</button>

<p>2. How many species of birds are found in North America?</p>
<button onClick=“correctFunction()”>500</button>
<button onClick=“wrongFunction()”>125</button>
<button onClick=“wrongFunction()”>213</button>
<button onClick=“wrongFunction()”>100</button>

<p>3. Jays and magpies make up which one of these bird families?</p>
<button onClick=“wrongFunction()”>Ardeidae</button>
<button onClick=“wrongFunction()”>Cotingidae</button>
<button onClick=“wrongFunction()”>Hirundinidae</button>
<button onClick=“correctFunction()”>Corvidae</button>

<p>4. The apple is native to which one of these continents?</p>
<button onClick=“wrongFunction()”>Europe</button>
<button onClick=“wrongFunction()”>North America</button>
<button onClick=“correctFunction()”>Asia</button>
<button onClick=“wrongFunction()”>South America</button>

<p>5. What is the name of the ecozone comprising of Europe, western Asia, and Northern Africa called?</p>
<button onClick=“correctFunction()”>Palearctic ecozone</button>
<button onClick=“wrongFunction()”>Neotropical ecozone</button>
<button onClick=“wrongFunction()”>Indomalayan ecozone</button>
<button onClick=“wrongFunction()”>Australasian ecozone</button>

<p>6. What Palezoic period did blastoids go extinct in?</p>
<button onClick=“wrongFunction()”>Ordovician</button>
<button onClick=“wrongFunction()”>Carboniferous</button>
<button onClick=“wrongFunction()”>Devonian</button>
<button onClick=“correctFunction()”>Permian</button>

<p>7. What is the name of the highest mountain in South America?</p>
<button onClick=“correctFunction()”>Mount Aconcagua</button>
<button onClick=“wrongFunction()”>Mount Huascaran</button>
<button onClick=“wrongFunction()”>Mount Everest</button>
<button onClick=“wrongFunction()”>K2</button>

<p>8. The Netherlands have a large population of what native waterbird, named for its unusual bill?</p>
<button onClick=“wrongFunction()”>Grey heron</button>
<button onClick=“wrongFunction()”>Common eider</button>
<button onClick=“correctFunction()”>Eurasian spoonbill</button>
<button onClick=“wrongFunction()”>Common scoter</button>

<p>9. What time period did Archelon, a giant sea turtle, live in?</p>
<button onClick=“correctFunction()”>Cretaceous</button>
<button onClick=“wrongFunction()”>Jurassic</button>
<button onClick=“wrongFunction()”>Paleogene</button>
<button onClick=“wrongFunction”>Neogene</button>

<p>10. Which one of these birds are the New world vultures closely related to?</p>
<button onClick=“wrongFunction()”>Old World vultures</button>
<button onClick=“correctFunction()”>Storks</button>
<button onClick=“wrongFunction()”>Hawks and eagles</button>
<button onClick=“wrongFunction()”>Falcons</button>

<script>

function correctFunction() {
alert(“Correct!”)
}

function wrongFunction() {
alert(“Wrong”)
}

</script>

In the code above, the HTML and CSS style the page, and the Javascript adds interactivity to the buttons created using HTML. The CSS code sets the styling of the page (in this case, a black background with a blue border), and the HTML make the questions as well as the answer buttons. The HTML code is linked to the Javascript code through the onClick property. The Javascript code includes the correct and wrong functions and the javascript alerts for correct and wrong selected answers.

Black skimmer (Rynchops niger)

The season for winter migrants was over in the San Francisco Bay. Scoters, gallinules, and other birds that came for the winter began disappearing from the reed marshes and pools. Now very few birds there, among them Mallards, a pair of Gadwall, and a few grebes, including Pied-billed and Western.

In the mudflats there was a large grass-covered island, which situated a large Cackling goose, which was nearly as big as the island itself. However, there were two black-and-white birds that happened to be resting nearby. When I looked at the photo that my dad took of them, they had a orange-and-black bill, and the upper bill was shorter than the lower bill. This could only mean that it was one bird – the Black Skimmer.

The San Francisco Bay is the northernmost range for this species of skimmer, which can be found year-round in the bay. The ones I saw were beginning to molt into their summer breeding plumage.

The Black Skimmer may look like a tern from far away, however, look for the length difference between the lower and upper bills.

It uses its peculiar bill for its hunting technique. When hunting for fish, it uses it bill to cut through the water. When the bill touches anything solid, it snaps shut, catching any fish in the process. However, this technique has problems. If there is some wood in the water, the skimmer may mistake that for fish, and that is the cause for many skimmers to have broken bills.

American coot (Fulica americana)

American coot (Fulica americana) at Shoreline park, Mountain View, California.

American coot (Fulica americana) at Shoreline park, Mountain View, California.

The American coot is one of the most common gruiform birds in North America. The common gallinule may be the most common Rallidae bird in the world, but the American coot far outnumbers it in some parts of North America.

American coot is all black in color, excluding the white frontal shield and beak. Also, if you look very closely on adults, you may also see a small patch of red on the forehead.

American coots are part of the diverse genus Fulica (coots). The coots are found worldwide, although they reach their greatest diversity in South America. The American coot is the only coot that makes it to North America.

It is roughly chicken-sized and quite similar to the Common gallinule (Gallinula galeata). I have added a list of comparisons between the American coot and common gallinule in the Common gallinule article.

Common gallinule (Gallinula galeata)

A large group of American coots slowly swim across the water. Their white frontal shields are easily seen in the late afternoon sun. Suddenly, another bird is spotted. It looks very similar to a coot, yet it has a red frontal shield. Like the coots, it is swimming around in the water. What is it? It’s a gallinule, specifically the Common gallinule (Gallinula galeata).

The common gallinule, as it’s name suggests, is one of the most common gruiform birds in North America. In fact, it is the most widespread Rallidae bird in the world, far outnumbering the coots, its close relatives. There are two species of gallinules in North America, the Common and the American purple. The latter is a brightly colored wading bird that inhabits the swamps and water-logged forests of the Southeast.

In terms of size, Common gallinules are roughly chicken-sized. In fact, they resemble gamebirds more than the secretive and water-loving rails. However, no North American gallinaceous birds have bright red beaks with yellow tips. Also, it is very rare to find a Common gallinule far from water, while many species of gamebirds in North America live in prairies and forests, sometimes far from water.

The common gallinule and the American coot look very similar, and are closely related. However, there are some notable differences. Below is a chart of each bird’s identification, so that they can be distinguished.

American coot:

  • Is mostly black in color
  • Can also vary to dark-grey for body plumage
  • Has only a small patch of red near frontal shield (can only be seen from close range)
  • Has a largely white frontal shield and beak

Common gallinule

  • A small patch of yellow on the beak
  • A completely red frontal shield which extends from the beak to the forehead
  • Not all of the body is black, although most of it is
  • Some whitish stripes near its wing
  • Wing is mostly brown in color

House sparrow (Passer domesticus)

The House sparrow is probably, along with the American crow and mallard, one of the most familiar birds in North America. It is a non native resident, the first birds being introduced to New York in 1851. Since then, it has spread throughout the continent. House sparrows are very common, yet they have been declining in North America. The House sparrow is also declining in its native range, Europe and Asia, due to toxins. This species is also shot in places where it is not native, because it is an aggressive bird which displaces native birds, like the American robin, by stealing their food and invading nesting holes.

A very interesting fact about the house sparrow is that this species set the world record for making the most dominos fall. In 2005, a few days before Domino day (a day where people would try to set the world record for making the most dominos fall), a house sparrow crashed into the building where Domino day was held, and flew into a pile of four million dominos, causing twenty-three thousand of the dominos to fall. It had set a world record! However, people caught the sparrow and shot it, which was very sad.

Rose-ringed parakeet (Psittacula krameri)

The rose-ringed parakeet is a very common parakeet throughout Africa and Asia. In North America, this species has been introduced to California and Florida. This species is named for its pink ring around the neck of this species. In North America, the Indian subspecies manillensis is the type most likely to be seen.

In North America, there are no longer any native species of parrots, sadly. The last native parrot, the Carolina parakeet, died out in 1918. This species was formerly endemic to the eastern US, from Colorado to Florida. It even lived as far north as New York, and was a vagrant to places even further north. It even was recorded in southern Ontario! However, it was hunted for its colorful feathers, which were used to adorn hats. Also, invasive honeybees competed for trees for nesting sites, and this species was regarded as a “menace” and a pest by farmers, due to its behavior of ripping open apples to get at the seeds. This bird also had “funerals, where many parakeets would mourn over the loss of a member of the flock. However, hunters could easily shoot many parakeets in this way, and this resulted in large numbers dying out. By the 1860s to the early 1900s, it became restricted to the swamps of Florida, and soon, it vanished from the wild. The last individual, named “Incas” died in the Cincinnati Zoo in 1918.

After that, the only other North American parrot, the Thick-billed parrot, disappeared from Arizona and New Mexico. Thankfully, that parrot species is still alive, as it is still found in Mexico. It used to appear in areas as far north as Utah, Arizona, New Mexico, and Texas in the US. However, the last individuals in the US died out in 1938.

There are around eight species of feral parrots in North America, with the Rose-ringed parakeet being one of them. Most North American feral parrots are from South America, with a handful of Old World (Europe, Africa, and Asia) parrots also found as escapees.

James Centhil and the story of the Centhil-Bot – Part 1

One day, James Centhil was walking around his factory, looking bored. “I’ve tried”, “And tried” “Yet all my machines and robots turn into evil machines which destroy the planet.” Suddenly, he came up with a plan. “I will build a CenthilBot!” “It will not destroy anything.”

After 2 seconds, the blueprint for the robot was finished and it was ready to be built. First, James Centhil pressurized the air around the area of the CenthilBot. After that, he made pressurized carbon around the area and made a diamond base. Next, he covered it with boron. After that, he added the deadly compartments.

Once the base was finished, James Centhil made compartments for all the syringes and things that a medical robot would need. Then, he started filling them.

He made a mixture he thought was very good. It was his favorite, one made from orange juice. Actually, not oranges, but synthetic oranges. He made synthetic Fanta.

However, during the making of the Synthetic Fanta, the evil James Wallace Cottage-Hampshire Snickerdoodle sabotaged it. He changed the mixture to C6760N10447O2010S32, also known as botulinum toxin!

After that, James Centhil gave the CenthilBot some of the drink.

To be Continued