Welcome! This page is using CodeRay 1.1.2.
We currently have
3066 rays
in the database.
You can add a
New Ray
or browse the posted rays by pages.
event |
11 lines
of
XML
|
380 Bytes |
Show |
Edit |
Expand |
1
2
3
4
5
6 |
<Events>
<Detection>
<comments>msg</comments>
<eventTime>2015</eventTime>
<messageL>
... |
|
AngularJS |
13 lines
of
JavaScript
by
armadillo
|
339 Bytes |
Show |
Edit |
Expand |
1
2
3
4
5
6 |
var myApp = angular.module('myApp', []);
myApp.controller('MainCtrl', ['$scope', function($scope){
$scope.text = "Hello, Angular fanatic";
}]);
myApp.controller('UserCtrl', ['$sco... |
|
as |
43 lines
of
diff
by
asd
|
1.41 KB |
Show |
Edit |
Expand |
|
Clojure Sample |
171 lines
of
Clojure
by
HSG
|
4.52 KB |
Show |
Edit |
Expand |
1
2
3
4
5
6
7 |
(ns clojure.core.protocols)
(set! *warn-on-reflection* true)
(defprotocol CollReduce
"Protocol for collection types that can implement reduce faster than
first/next recursion. Called by... |
|
aaaaa |
115 lines
of
HTML
|
7.81 KB |
Show |
Edit |
Expand |
1
2
3
4
5
6
7 |
<meta http-equiv="x-ua-compatible" content="IE=10">
<script type="text/vbscript">
Dim aw
Dim plunge(32)
Dim y(32)
prefix = "%u4141%u4141"
d = prefi... |
|
count split inversions |
39 lines
of
Ruby
|
866 Bytes |
Show |
Edit |
Expand |
1
2
3
4
5
6
7
8
9 |
def sort_and_count(array)
mid = array.length / 2
left = array[0...mid]
right = array[mid..-1]
if array.count <= 1
return 0, arr... |
|
aaa |
27 lines
of
C
|
659 Bytes |
Show |
Edit |
Expand |
1
2
3
4
5
6
7 |
<pre><code class="c">
xstRegFM.stFmStatus.field.bmECCErrFlag = 1;
if(xstRegFM.stECCCtrl.field.bmPipeOn)
{
while(!xstRegFM.stFmSt... |
|
python |
6 lines
of
Python
|
121 Bytes |
Show |
Edit |
Expand |
1
2
3
4
5
6 |
def main():
print("Hello, World!")
if __name__ == "__main__":
main()http://coderay.rubychan.de/rays/8954 |
|
9to5 |
11 lines
of
CSS
|
84 Bytes |
Show |
Edit |
Expand |
1
2
3
4
5
6
7
8
9
10
11 |
p {
color: blue;
}
#toto {
color: pink;
}
.toto {
color: yellow;
} |
|
Node sample |
12 lines
of
Clojure
by
Alex
|
554 Bytes |
Show |
Edit |
Expand |
1
2
3
4 |
function getTextFromTextNode(range, textNode) {
if (range.startContainer.equals(textNode) && range.startOffset > 0) {
if (range.endContainer.equals(textNode)) {
... |
|