Test post please ignore
Testing ground for my markdown rendering.
Header 1
Header 2
Header 3
Header 4
Header 5
Header 6
Paragraph
Here’s some code
import React from 'react';
// This is a comment
class Foo {
constructor() { }
}
// Another comment
const List = ({ items }) => (
<ul>
{items.map(item => (
<ListItem item={item} />
))}
</ul>
);
export default List;
No language here
And here’s an example of short code
.
A quote:
End? No, the journey doesn’t end here. Death is just another path, one that we all must take. The grey rain-curtain of this world rolls back, and all turns to silver glass, and then you see it. White shores, and beyond, a far green country under a swift sunrise.
This sentence is partially highlighted.
Well hello there
I’m moving this site from Wordpress to Gatsby. Seems great so far.
This is a test project page written in Markdown and converted to HTML by Gatsby at build time.
- Uno
- Dos
- Tres
- One
- Two
- Three
What a pleasant surprise, my bold friend!
Here’s a nice picture of the Aiguille du Midi in France:
From Simon Migaj.
Longer code block
:
package main
import (
"fmt"
"math/rand"
"time"
)
type Moo struct {
Cow int
Sound string
Tube chan bool
}
// A cow will moo until it is being milked
func cow(num int, mootube chan Moo) {
tube := make(chan bool)
for {
select {
case mootube <- Moo{num, "moo", tube}:
fmt.Println("Cow number", num, "mooed through the mootube")
<-tube
fmt.Println("Cow number", num, "is being milked and stops mooing")
mootube <- Moo{num, "mooh", nil}
fmt.Println("Cow number", num, "moos one last time in relief")
return
default:
fmt.Println("Cow number", num, "mooed through the mootube and was ignored")
time.Sleep(time.Duration(rand.Int31n(1000)) * time.Millisecond)
}
}
}
// The farmer wants to turn on all the milktubes to stop the mooing
func farmer(numcows int, mootube chan Moo, farmertube chan string) {
fmt.Println("Farmer starts listening to the mootube")
for unrelievedCows := numcows; unrelievedCows > 0; {
moo := <-mootube
if moo.Sound == "mooh" {
fmt.Println("Farmer heard a moo of relief from cow number", moo.Cow)
unrelievedCows--
} else {
fmt.Println("Farmer heard a", moo.Sound, "from cow number", moo.Cow)
time.Sleep(2e9)
fmt.Println("Farmer starts the milking machine on cow number", moo.Cow)
moo.Tube <- true
}
}
fmt.Println("Farmer doesn't hear a single moo anymore. All done!")
farmertube <- "yey!"
}
// The farm starts out with mooing cows that wants to be milked
func runFarm(numcows int) {
farmertube := make(chan string)
mootube := make(chan Moo)
for cownum := 0; cownum < numcows; cownum++ {
go cow(cownum, mootube)
}
go farmer(numcows, mootube, farmertube)
farmerSaid := <-farmertube
if farmerSaid == "yey!" {
fmt.Println("All cows are happy.")
}
}
func main() {
runFarm(4)
fmt.Println("done")
}