Welcome! This page is using CodeRay 1.1.2.
We currently have
3055 rays
in the database.
You can add a
New Ray
or browse the posted rays by pages.
test value-less attribute |
19 lines
of
HTML
|
305 Bytes |
Show |
Edit |
Expand |
1
2
3
4
5
6
7
8
9
10
11
12
13 |
<b>This is bold</b>
<p>
This <b>bold</b> is <i>nested</i>
</p>
<iframe sandbox>
This attribute has no value.
</iframe>
<textarea disabled>
This is a disabled text area.
</texta... |
|
Android Layout XML |
19 lines
of
PHP
|
592 Bytes |
Show |
Edit |
Expand |
1
2
3
4
5 |
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="fill_parent"
... |
|
Hello! |
3 lines
of
Ruby
|
40 Bytes |
Show |
Edit |
Expand |
1
2
3 |
def index
render :text => 'hello'
end |
|
Hello world |
12 lines
of
Ruby
by
Rinat
|
222 Bytes |
Show |
Edit |
Expand |
1
2
3
4
5
6
7
8
9
10 |
class Range
def to_json(*a)
{
'json_class' => self.class.name,
'data' => [ first, last, exclude_end? ]
}.to_json(*a)
end
def self.json_create(o)
ne... |
|
404 |
7 lines
of
Ruby
by
Zweitag
|
127 Bytes |
Show |
Edit |
Expand |
1
2
3
4
5
6
7 |
Zweitag::Application.routes.draw do
post "url" => lambda {
mock_the_visitor && pretend_you_werent_there
}
end
|
|
test |
5 lines
of
Ruby
by
yuan
|
46 Bytes |
Show |
Edit |
Expand |
1
2
3
4
5 |
def say(word)
puts word
end
say 'hello' |
|
Test function |
7 lines
of
PHP
by
Just me
|
85 Bytes |
Show |
Edit |
Expand |
1
2
3
4
5
6
7 |
function($variable)
{
if($this == 1)
{
$doThis == TRUE;
}
} |
|
test bash? |
8 lines
of
Plain text
|
271 Bytes |
Show |
Edit |
Expand |
1
2
3
4
5
6
7 |
sudo apt-get install git-core
sudo apt-get install protobuf-compiler
sudo apt-get install python-setuptools
sudo apt-get install python-twisted
sudo apt-get install python-mysqldb
... |
|
a |
11 lines
of
diff
|
262 Bytes |
Show |
Edit |
Expand |
1
2
3
4
5
6
7
8 |
--- a/src/abc.cc
+++ b/src/abc.cc
@@ -1050,7 +1050,7 @@ void foo::bar()
123
std::vector<glm::ve... |
|
test |
8 lines
of
C++
|
323 Bytes |
Show |
Edit |
Expand |
|