Welcome! This page is using CodeRay 1.1.2.
We currently have
3061 rays
in the database.
You can add a
New Ray
or browse the posted rays by pages.
HTML CB Code |
7 lines
of
HTML
by
Ck
|
37 Bytes |
Show |
Edit |
Expand |
1
2
3
4
5
6
7 |
* Bullet1
* B2
* B3
----
HR
|
|
scjp |
15 lines
of
Java
|
394 Bytes |
Show |
Edit |
Expand |
1
2
3
4
5
6
7
8 |
class Mammal {
String name = "furry ";
String makeNoise() { return "generic noise"; }
}
class Zebra extends Mammal {
String name = "stripes ";
String makeNoise() { return "bray"; }
}... |
|
scjp |
9 lines
of
Plain text
|
292 Bytes |
Show |
Edit |
Expand |
1
2
3
4
5
6 |
[DEFAULT]
# If not given here, email and password is taken from .netrc using
# machine google.com
email: youremailatgmaildotcom
password: yoursupahsecretpassword
# The following are optional, ... |
|
simple select |
13 lines
of
SQL
by
Şahap Aşçı
|
387 Bytes |
Show |
Edit |
Expand |
1
2
3
4
5
6 |
SELECT
allias_name.field_name
FROM table_name allias_name
INNER JOIN other_table_name other_allias_name ON other_allias_name.field_name2 = allias_name.field_name
WHERE
allias_name.... |
|
Allan |
4 lines
of
Python
|
64 Bytes |
Show |
Edit |
Expand |
1
2
3
4 |
N=['allan','xime','juli']
print N
for aux in N:
print aux |
|
demo |
16 lines
of
CSS
|
868 Bytes |
Show |
Edit |
Expand |
1
2
3 |
body {line-height:1.5;font-family:"Helvetica Neue", Arial, Helvetica, sans-serif;color:#000;background:none;font-size:10pt;}
.container {background:none;}
hr {background:#ccc;color:#ccc;width:100... |
|
Test |
20 lines
of
PHP
by
Hux
|
298 Bytes |
Show |
Edit |
Expand |
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16 |
<?php
namespace Hux;
class Test
{
private $_instance = null;
public function __construct()
{
$this->foo();
}
private function foo($var)
{
... |
|
test c++ |
69 lines
of
C++
|
1.2 KB |
Show |
Edit |
Expand |
|
Ruby |
3 lines
of
XML
|
23 Bytes |
Show |
Edit |
Expand |
1
2
3 |
<A i="1">
tstst
</A> |
|
asdfa |
4 lines
of
PHP
by
sadf
|
106 Bytes |
Show |
Edit |
Expand |
1
2
3
4 |
<?php $my_var = 'Hello World';
$my_var = str_replace('Hello', 'Goodbye', $my_var);
echo $my_var;?> |
|