mirror of
https://github.com/moparisthebest/android.moparisthebest.org
synced 2024-11-01 15:55:03 -04:00
34 lines
466 B
Markdown
34 lines
466 B
Markdown
---
|
|
layout: page
|
|
title: "Code"
|
|
date: 2011-07-30 08:45
|
|
footer: false
|
|
sidebar: false
|
|
---
|
|
|
|
``` coffeescript
|
|
Tweets = 1
|
|
|
|
module.exports = Tweets
|
|
```
|
|
|
|
``` coffeescript
|
|
Tweets = 1
|
|
foo && bar
|
|
module.exports = Tweets
|
|
```
|
|
|
|
{% 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 %}
|
|
|
|
{% codeblock config lang:ruby %}
|
|
Bunch of ruby code
|
|
{% endcodeblock %}
|