.foo
text-transform lowercase
&:first-letter
text-transform uppercase
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
<html> | |
<head> | |
<title>Your Website Title</title> | |
<!-- You can use open graph tags to customize link previews. | |
Learn more: https://developers.facebook.com/docs/sharing/webmasters --> | |
<meta property="og:url" content="http://www.your-domain.com/your-page.html" /> | |
<meta property="og:type" content="website" /> | |
<meta property="og:title" content="Your Website Title" /> | |
<meta property="og:description" content="Your description" /> | |
<meta property="og:image" content="http://www.your-domain.com/path/image.jpg" /> |
(by @andrestaltz)
If you prefer to watch video tutorials with live-coding, then check out this series I recorded with the same contents as in this article: Egghead.io - Introduction to Reactive Programming.
brew install git bash-completion
Configure things:
git config --global user.name "Your Name"
git config --global user.email "[email protected]"
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
package main | |
import "code.google.com/p/go-tour/pic" | |
func Pic(dx, dy int) [][]uint8 { | |
// Allocate two-dimensioanl array. | |
a := make([][]uint8, dy) | |
for i := 0; i < dy; i++ { | |
a[i] = make([]uint8, dx) | |
} |