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 142, 10 entries

111 15 lines of SQL 503 Bytes Show Edit Expand
1
2
3
4
5
6
CREATE TABLE IF NOT EXISTS `country` (
 `id` int(11) NOT NULL AUTO_INCREMENT,
 `name` varchar(36) NOT NULL,
 `iso2` varchar(2) NOT NULL,
 `iso3` varchar(3) NOT NULL,
 `sort_ojjjrder` int(11) N...
pruebas 7 lines of Java by ifool 132 Bytes Show Edit Expand
1
2
3
4
5
6
7
import java.util.*;

class Demo {
    public static void main(String *args) {
       system.out.print("Hello, Java!");
    }
}
xml 29 lines of XML by susi 1.88 KB Show Edit Expand
1
2
3
4
5
<?xml version="1.0" encoding="UTF-8"?>
<data><level id="21" description="wie bei level 19">
        <gameData><![CDATA[tralala]]]]><![CDATA[>]]>
          <file src="RO19-28.swf" scene="Level21"/>
          ...
Java 52 lines of Java by Jurabele 1.26 KB Show Edit Expand
1
2
3
4
5
6
7
8
package androidservice.jurabele.com;

import android.os.Bundle;
import android.app.Activity;
import android.content.Intent;
import android.view.Menu;
import android.view.View;
import android...
asd 14 lines of SQL 320 Bytes Show Edit Expand
1
2
3
4
5
6
7
8
9
10
11
12
SET LINESIZE 100
COLUMN spid FORMAT A10
COLUMN username FORMAT A10
COLUMN program FORMAT A45

SELECT s
       s.sid,
       s.serial#,
       p.spid,
       s.username,
       s.program
...
test 13 lines of SQL by test 501 Bytes Show Edit Expand
1
2
3
4
5
6
7
8
SELECT AVG(b.identity-e.identity)*24*60*60
  FROM log e
   INNER JOIN log b
    ON b.identity=e.identity
       AND b.userid=e.userid
       AND b.thread=e.thread
       AND b.id<e.id
  WHER...
Shell 46 lines of diff 1.88 KB Show Edit Expand
1
2
3
rake rla:report:html RAILS_ENV=development
[RailsAdmin] RailsAdmin initialization disabled by default. Pass SKIP_RAILS_ADMIN_INITIALIZER=false if you need it.
Analyzing the Rails log file using t...
Decrease range window on zabbix graph 24 lines of diff by c-moi 923 Bytes Show Edit Expand
1
2
3
4
5
6
7
8
9
10
11
12
74c74
<           obj.time.period = 300;
---
>           obj.time.period = 3600;
275c275
<       period = 300,
---
>       period = 3600,
312c312
<   minperiod:  300,  // minimal allowed period
---
>   minp...
testest 23 lines of JSON by teste 572 Bytes Show Edit Expand
1
2
3
4
5
6
7
8
9
    {
  "TotalResults": 1,
  "ReturnedResults": 1,
  "Results": [
    {
      "id": "0000000001",
      "IssueDate": "2013-01-18T00:00:00",
      "OrganizationName": "Test",
      "Descript...
c objects 17 lines of C 314 Bytes Show Edit Expand
1
2
3
4
5
6
7
8
9
10
11
12
typedef struct MyObject MyObject;

struct MyObject {
    void (*action)(int, char*);
};

static void my_object_action(int i, char *s)
{
    printf("%i: %s\n", i, s);
}

MyObject* my_obje...

Page 142, 10 entries