Welcome! This page is using CodeRay 1.1.2.
We currently have
3054 rays
in the database.
You can add a
New Ray
or browse the posted rays by pages.
Some XML |
339 lines
of
HTML
|
23.2 KB |
Show |
Edit |
Expand |
1
2
3 |
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head profile="http://gmpg.or... |
|
SQL ARSenico |
18 lines
of
SQL
by
Alessio Caiazza
|
602 Bytes |
Show |
Edit |
Expand |
1
2
3
4
5
6
7
8 |
CREATE TABLE IF NOT EXISTS `fields` (
`id` int(11) NOT NULL auto_increment,
`name` varchar(255) default NULL,
`type` varchar(255) default NUL... |
|
test |
14 lines
of
PHP
by
jp
|
451 Bytes |
Show |
Edit |
Expand |
1
2
3
4
5
6 |
Sub ErrorHandler(pEx As RuntimeException, pAction as String)
mEpisCheckTimer = Nil
mEpisResult = "Error"
Call App.DB.AddEpisFailureMember txtQryLastName.Text.Trim, txtQryFirstName.... |
|
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)
{
... |
|