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.
xcbl4 |
150 lines
of
JavaScript
|
7.3 KB |
Show |
Edit |
Expand |
1
2
3 |
<?xml version="1.0" encoding="UTF-8" ?>
<!-- XML genere par SiNoE (tpl: ARC) -->
<OrderResponseList xmlns="rrn:org.xcbl:schemas/xcbl/v4_0/ordermanagement/v1_0/ordermanagement.xsd" xmlns:core="rrn... |
|
xcbl4 |
150 lines
of
JSON
|
7.3 KB |
Show |
Edit |
Expand |
1
2
3 |
<?xml version="1.0" encoding="UTF-8" ?>
<!-- XML genere par SiNoE (tpl: ARC) -->
<OrderResponseList xmlns="rrn:org.xcbl:schemas/xcbl/v4_0/ordermanagement/v1_0/ordermanagement.xsd" xmlns:core="rrn... |
|
test |
48 lines
of
JSON
|
1.32 KB |
Show |
Edit |
Expand |
1
2
3
4
5
6
7
8 |
{
"id": 2,
"name": "Absolute Garbage",
"permalink": "absolute-garbage",
"release_date": "00/00/0000",
"cover_image_url": "images/2.jpg",
"tracks_count": 3,
"albu... |
|
Try this |
5 lines
of
JavaScript
|
53 Bytes |
Show |
Edit |
Expand |
1
2
3
4
5 |
var obj = {
run : function(elt){
return elt;
}
}; |
|
RoundUpToPowerOf2 |
10 lines
of
C++
by
aztack
|
206 Bytes |
Show |
Edit |
Expand |
1
2
3
4
5
6
7
8
9 |
unsigned int RoundUpToPowerOf2(unsigned int x){
ASSERT(x<=0x80000000u);
x = x - 1;
x = x | (x >> 1);
x = x | (x >> 2);
x = x | (x >> 4);
x = x | (x >> 8);
x = x | (x >> 16);
return ... |
|
Prolog code |
4 lines
of
Groovy (beta)
by
Nico
|
86 Bytes |
Show |
Edit |
Expand |
1
2
3
4 |
displayText([]):- !.
displayText([Head|Rest]):-
writeln(Head),
displayText(Rest). |
|
Prolog code |
4 lines
of
Delphi
by
Nico
|
86 Bytes |
Show |
Edit |
Expand |
1
2
3
4 |
displayText([]):- !.
displayText([Head|Rest]):-
writeln(Head),
displayText(Rest). |
|
Prolog code |
4 lines
of
CSS
by
Nico
|
86 Bytes |
Show |
Edit |
Expand |
1
2
3
4 |
displayText([]):- !.
displayText([Head|Rest]):-
writeln(Head),
displayText(Rest). |
|
Prolog code |
4 lines
of
C
by
Nicolas
|
86 Bytes |
Show |
Edit |
Expand |
1
2
3
4 |
displayText([]):- !.
displayText([Head|Rest]):-
writeln(Head),
displayText(Rest). |
|
Prolog code |
4 lines
of
Python
by
Nicolas
|
86 Bytes |
Show |
Edit |
Expand |
1
2
3
4 |
displayText([]):- !.
displayText([Head|Rest]):-
writeln(Head),
displayText(Rest). |
|