Welcome! This page is using CodeRay 1.1.2.

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

Page 65, 10 entries

JSX 1 line of JavaScript by Dominic Chambers 10 Bytes Show Edit Expand
1
<Prompt />
hierarchical query 20 lines of SQL by copied_from_postgres 759 Bytes Show Edit Expand
1
2
3
4
5
WITH RECURSIVE search_graph(parent_id, child_id, depth, path, cycle) AS (
        select g.parent_id, g.child_id, 1,
          ARRAY[child_id, parent_id], // # <1>
          false
        from ...
Groovy Sample 3 lines of Groovy (beta) 85 Bytes Show Edit Expand
1
2
3
['Emerson', 'Palmer', 'Lake'].each { progger ->
    println "Progger: $progger"
}
rubes 5 lines of JavaScript 194 Bytes Show Edit Expand
1
2
3
4
5
        data.addRows([
          [new Date(2015, 7, 23, 13, 53), 67, null],
          [new Date(2015, 7, 23, 13, 54), 1, null],
          [new Date(2015, 7, 23, 13, 55), 2, null]
        ]);
ddd 4 lines of JavaScript 35 Bytes Show Edit Expand
1
2
3
4
function(ee) {
  var tt = ee;

}
dd 4 lines of C++ 33 Bytes Show Edit Expand
1
2
3
4
void zz()
{
  return "dsds";
}
dd 2 lines of SQL 25 Bytes Show Edit Expand
1
2
# bash
command=/usr/bin/
dd 1 line of SQL 20 Bytes Show Edit Expand
1
SELECT * FORM names'
RandomCSS 1 line of CSS 1.44 KB Show Edit Expand
1
body{background:#494949 url(/assets/footer-back.png) repeat;color:#fff;padding:0em;margin:0em;font-family:"Trebuchet MS",Tahoma,Verdana,Arial,sans-serif}a{text-decoration:none}#title{background:#49...
Node HTTP Server 7 lines of JavaScript by treesap 191 Bytes Show Edit Expand
1
2
3
4
5
6
7

http.createServer(function (req, res) {
  res.writeHead(200, {'Content-Type': 'text/plain'});
  res.end('Hello World\n');
}).listen(8080);

console.log('Server running on port 8080.');

Page 65, 10 entries