Welcome! This page is using CodeRay 1.1.2.
We currently have
3068 rays
in the database.
You can add a
New Ray
or browse the posted rays by pages.
| 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 |
|
|
| Decrease range window on zabbix graph |
24 lines
of
diff
by
c-moi
|
923 Bytes |
Show |
Edit |
Expand |
|
|
| 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... |
|
| python |
2 lines
of
diff
|
33 Bytes |
Show |
Edit |
Expand |
|
|
| python |
3 lines
of
Python
|
44 Bytes |
Show |
Edit |
Expand |
1
2
3 |
import os
def prin():
print ('Dupa')
|
|
| java |
15 lines
of
Java
|
364 Bytes |
Show |
Edit |
Expand |
1
2
3
4
5
6
7
8
9
10 |
public static final class Location
implements Serializable {
@Exported
public final String remote;
@Exported
public final String local;
... |
|
| ruby , find max size integers |
2 lines
of
Ruby
|
88 Bytes |
Show |
Edit |
Expand |
1
2 |
machine_max_signed = 2**(machine_bits-1) - 1
machine_max_unsigned = 2**machine_bits - 1 |
|
| Title / Description |
2 lines
of
CSS
|
93 Bytes |
Show |
Edit |
Expand |
1
2 |
.print-show // Mostra o elemento na impressão
.print-hide // Esconde o elemento na impressão |
|