2011-08-01 09:43:54 -04:00
|
|
|
---
|
|
|
|
layout: page
|
|
|
|
title: "Code"
|
|
|
|
date: 2011-07-30 08:45
|
|
|
|
footer: false
|
|
|
|
sidebar: false
|
|
|
|
---
|
|
|
|
|
2011-09-08 00:31:08 -04:00
|
|
|
``` coffeescript Some Coffee Script for you http://google.com/
|
2012-05-21 21:13:24 -04:00
|
|
|
Tweets = 1
|
2011-08-01 09:43:54 -04:00
|
|
|
|
2012-05-21 21:13:24 -04:00
|
|
|
module.exports = Tweets
|
2011-08-01 09:43:54 -04:00
|
|
|
```
|
|
|
|
|
|
|
|
``` coffeescript
|
2012-05-21 21:13:24 -04:00
|
|
|
Tweets = 1
|
|
|
|
foo && bar
|
|
|
|
module.exports = Tweets
|
2011-08-01 09:43:54 -04:00
|
|
|
```
|
2011-08-16 02:41:18 -04:00
|
|
|
|
|
|
|
{% codeblock Append this to your .bashrc file. %}
|
|
|
|
echo "User .bashrc..."
|
|
|
|
for i in ~/.env/*.sh ; do
|
|
|
|
if [ -r "$i" ]; then
|
|
|
|
. $i
|
|
|
|
fi
|
|
|
|
done
|
|
|
|
unset i
|
|
|
|
{% endcodeblock %}
|
2011-08-20 18:39:35 -04:00
|
|
|
|
2011-08-21 16:20:10 -04:00
|
|
|
{% codeblock config lang:ruby %}
|
2011-08-20 18:39:35 -04:00
|
|
|
Bunch of ruby code
|
|
|
|
{% endcodeblock %}
|
2012-05-21 21:13:24 -04:00
|
|
|
|
|
|
|
```
|
|
|
|
// Spaces
|
|
|
|
|
|
|
|
asd
|
|
|
|
asd
|
|
|
|
asd
|
|
|
|
asd
|
|
|
|
asd
|
|
|
|
asd
|
|
|
|
asd
|
|
|
|
asd
|
|
|
|
asd
|
|
|
|
asd
|
|
|
|
asd
|
|
|
|
```
|
|
|
|
|
|
|
|
```
|
|
|
|
// Tabs
|
|
|
|
|
|
|
|
asd
|
|
|
|
asd
|
|
|
|
asd
|
|
|
|
asd
|
|
|
|
asd
|
|
|
|
asd
|
|
|
|
asd
|
|
|
|
asd
|
|
|
|
asd
|
|
|
|
asd
|
|
|
|
asd
|
|
|
|
```
|