Welcome! This page is using CodeRay 1.1.2.

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

Page 204, 10 entries

mytestC++ 4 lines of C by こうけん 40 Bytes Show Edit Expand
1
2
3
4
int main()
{
printf("Hello World!")
}
test JSON 9 lines of JSON by Moi 113 Bytes Show Edit Expand
1
2
3
4
5
6
7
8
9
{ object0: {
    value0: "some",
    number0: 4
  }
  object1: {
    value1: "text",
    number1: 2
  }
}
asio 353 lines of C++ by Christopher M. Kohlhoff 10.7 KB Show Edit Expand
1
2
3
4
5
6
7
//
// buffered_write_stream.hpp
// ~~~~~~~~~~~~~~~~~~~~~~~~~
//
// Copyright (c) 2003-2011 Christopher M. Kohlhoff (chris at kohlhoff dot com)
//
// Distributed under the Boost Software Licen...
Object.methods 1 line of Ruby 1.23 KB Show Edit Expand
1
["private_class_method", "inspect", "name", "tap", "pretty_print_instance_variables", "clone", "public_methods", "__send__", "object_id", "method_defined?", "instance_variable_defined?", "equal?", ...
php 13 lines of PHP by php 147 Bytes Show Edit Expand
1
2
3
4
5
6
7
8
9
10
11
12
13
<?php

echo 'test';

class Test {
public $var = NULL;
private $_conf = array();

public __construct($args = NULL) {}

}

$t = new Test;
Disappointing Objective C -- person class 22 lines of Python by Cody 420 Bytes Show Edit Expand
1
2
3
4
5
6
7
8
9
10
11
// Person class

#import <Foundation/Foundation.h>

@interface Person : NSObject {
}

@property (nonatomic, retain) NSString *firstName;
@property (nonatomic, retain) NSString *lastName;

...
teste1 1 line of SQL 25 Bytes Show Edit Expand
1
SELECT nome from clientes
teste sql 12 lines of C by teste 427 Bytes Show Edit Expand
1
2
3
4
5
6
7
8
DECLARE @Skip int
DECLARE @Take int

SET @Skip = 0     -- The number of records to skip
SET @Take = 10  -- The number of records to return

SELECT * FROM (
   SELECT ROW_NUMBER() OVER (ORDER...
ruby 2 lines of Ruby 115 Bytes Show Edit Expand
1
2
a = data = [ false, 42, %w(forty two), { :now => Time.now, :class => Time.now.class, :distance => 42e42 } ]
puts a
Scala test 75 lines of Java by asdasdas 2.89 KB Show Edit Expand
1
2
3
4
5
6
7
8
package pdss.biz.ceval.controller;

import java.io.IOException;
import java.util.List;

import javax.servlet.http.HttpSession;

import org.springframework.beans.factory.annotation.Autowired;...

Page 204, 10 entries