Welcome! This page is using CodeRay 1.1.2.

We currently have 3067 rays in the database.
You can add a New Ray or browse the posted rays by pages.

Page 222, 10 entries

XML with CDATA 5 lines of XML by JL 149 Bytes Show Edit Expand
1
2
3
4
5
<wsdl:interface name="moviesView">
  <wsdl:documentation><![CDATA[
    Some documentation inside a CDATA
  ]]></wsdl:documentation>
</wsdl:interface>
Java Static Init 8 lines of Java 287 Bytes Show Edit Expand
1
2
3
4
5
6
{
  final HashMap nstjsons = new HashMap();
  final Configuration config = new Configuration(nstjsons);
  config.setSupressAtAttributes(false);
  mof = new MappedXMLOutputFactory(config);
  mif = n...
test page 5 lines of Plain text 67 Bytes Show Edit Expand
1
2
3
4
5
$> pwd
/home/adminuser
$> cd myapp
$> pwd
/home/adminuser/myapp
yaml test 9 lines of YAML 111 Bytes Show Edit Expand
1
2
3
4
5
6
7
8
9
---
test: this is a test
some: |
  testing some other stuff
  oogah!
honk:
 - babar
 - likes
 - pants
testing 5 lines of JavaScript 137 Bytes Show Edit Expand
1
2
3
4
5
    (function(where) {
      if (typeof(console) !== 'undefined') {
        console.log('Hello ' + where);
      }
    })('World');
testing 23 lines of Ruby 404 Bytes Show Edit Expand
1
2
3
4
5
6
7
8
9
10
11
12
13
def print_array(file, arr)
  arr.each do |i|
    file.write i
    file.write "\t"
  end
end

code = ['0','1']
n = 7
file = File.open('text.txt', 'w')
print_array(file, code)
file.write "\n"
(...
temp 4 lines of Ruby 78 Bytes Show Edit Expand
1
2
3
4
library(ggplot2);
data(tips);
p0 = qplot(total_bill, tip, data = tips);
end
temp 3 lines of Ruby 73 Bytes Show Edit Expand
1
2
3
library(ggplot2);
data(tips);
p0 = qplot(total_bill, tip, data = tips);
temp 3 lines of Python 73 Bytes Show Edit Expand
1
2
3
library(ggplot2);
data(tips);
p0 = qplot(total_bill, tip, data = tips);
test 6 lines of PHP 34 Bytes Show Edit Expand
1
2
3
4
5
6
<?php


echo "hey there";

?>

Page 222, 10 entries