Welcome! This page is using CodeRay 1.1.2.
We currently have
3061 rays
in the database.
You can add a
New Ray
or browse the posted rays by pages.
groups test |
8 lines
of
Ruby
by
anon
|
120 Bytes |
Show |
Edit |
Expand |
1
2
3
4
5
6
7
8 |
class GroupsController < ApplicationController
helper Ziya::Helper
def index
@group = nil;
end
end |
|
Random Ruby Class |
8 lines
of
Ruby
|
256 Bytes |
Show |
Edit |
Expand |
1
2
3
4 |
class ApplicationController < ActionController::Base
session :session_key => '_tags2_session_id'
require 'string_mi... |
|
test |
90 lines
of
C
by
test
|
1.34 KB |
Show |
Edit |
Expand |
1
2
3
4
5
6
7
8
9
10
11
12
13 |
#include <stdio.h>
#include <stdlib.h>
typedef struct l1 {
struct l1* next;
int key;
} l1;
l1* head = NULL;
l1* insert_head(int key) {
l1* p;
p = (l1*) malloc(sizeof(struct l... |
|
1 upto 10 |
13 lines
of
Ruby
by
Noone
|
153 Bytes |
Show |
Edit |
Expand |
1
2
3
4
5
6
7
8
9
10
11
12
13 |
int main() {
int i=1;
for (;i<10;i++) {
printf("%d",i);
}
return 0;
}
1.upto (10) do |x|
printf "%2d\n", x
end |
|
Test |
2 lines
of
Ruby
|
404 Bytes |
Show |
Edit |
Expand |
1
2 |
def e(x) return 34.chr+x+34.chr end;def q(a,b,c) print b+10.chr+'main=q '+e(b)+' '+e(c)+' '+e(a)+' '+10.chr end
q("def e(x) return 34.chr+x+34.chr end;def q(a,b,c) print b+10.chr+'main=q '+e(b)+' ... |
|
rangotis |
1 line
of
ERb
by
rangotis
|
13 Bytes |
Show |
Edit |
Expand |
|
nice |
4 lines
of
Ruby
by
Amiel
|
80 Bytes |
Show |
Edit |
Expand |
1
2
3
4 |
def blah
ruby_code = %(weee " quote's " )
self.is_probably_ruby_code?
end |
|
blah |
4 lines
of
Ruby
|
24 Bytes |
Show |
Edit |
Expand |
1
2
3
4 |
"
asdasd #{
asdasd}
" |
|
test of merge_sort |
11 lines
of
Ruby
by
slothbear
|
235 Bytes |
Show |
Edit |
Expand |
1
2
3
4
5
6
7
8
9 |
require "test/unit"
require "merge_sort"
class TestMergeSort < Test::Unit::TestCase
def test_empty_array
a = []
ass... |
|
Test |
7 lines
of
Delphi
by
Drarok
|
168 Bytes |
Show |
Edit |
Expand |
1
2
3
4
5
6
7 |
Function Test(Engineer : Integer) : Currency;
Var
SQL : String;
Begin
SQL := Format('SELECT * FROM engineers WHERE id=%d', [Engineer]);
Result := 1.50;
End; |
|