Welcome! This page is using CodeRay 1.1.2.
We currently have
3054 rays
in the database.
You can add a
New Ray
or browse the posted rays by pages.
bash |
12 lines
of
C
|
427 Bytes |
Show |
Edit |
Expand |
1
2
3
4
5
6
7
8 |
#!/bin/bash
timestamp=`date +%s`
secret=test_secret
client_id=test_client
sign=`echo -n $client_id$timestamp$secret | sha256sum | awk '{print $1}'`
server=localhost:3000
curl -iv \
-X POST \... |
|
asd |
31 lines
of
JSON
|
818 Bytes |
Show |
Edit |
Expand |
1
2
3
4
5
6
7
8 |
{
"id":6363,
"status":200,
"client":"4cc8d2deeb876add50cac888cbeb195c",
"info":"success result",
"service":"echo",
"created_at":"2019-07-23T15:06:31.692+03:00",
"response":{/... |
|
Java code |
37 lines
of
Java
|
841 Bytes |
Show |
Edit |
Expand |
1
2
3
4
5
6
7
8
9 |
public class Kat extends Huisdier{
private int aantalLevens;
public Kat(String naam, int aantalLevens) {
super(naam);
setAantalLevens(aantalLevens);
}
publ... |
|
test |
15 lines
of
Ruby
|
269 Bytes |
Show |
Edit |
Expand |
1
2
3
4
5
6
7
8
9
10 |
class CreateUsers < ActiveRecord::Migration[5.2]
def change
create_table :users do |t|
t.string :provider
t.string :uid
t.string :email
... |
|
a |
82 lines
of
Ruby
|
1.47 KB |
Show |
Edit |
Expand |
1
2
3
4
5
6
7
8
9 |
class Bottles
def song
verses(99, 0)
end
def verses(starting, ending)
starting.downto(ending).collect {|i| verse(i)}.join("\n")
end
def verse(number)
bottle_number = B... |
|
a |
10 lines
of
Ruby
|
154 Bytes |
Show |
Edit |
Expand |
1
2
3
4
5
6
7
8
9
10 |
def bottle_number_for(number)
case number
when 0
BottleNumber0
when 1
BottleNumber1
else
BottleNumber
end.new(number)
end |
|
a |
7 lines
of
Ruby
|
140 Bytes |
Show |
Edit |
Expand |
1
2
3
4
5
6
7 |
def bottle_number_for(number)
if number == 0
BottleNumber0.new(number)
else
BottleNumber.new(number)
end
end |
|
a |
9 lines
of
PHP
|
174 Bytes |
Show |
Edit |
Expand |
1
2
3
4
5
6
7
8
9 |
class BottleNumber
def self.for(number)
begin
const_get("BottleNumber#{number}")
rescue NameError
BottleNumber
end.new(number)
end |
|
a |
13 lines
of
Ruby
|
200 Bytes |
Show |
Edit |
Expand |
1
2
3
4
5
6
7
8
9
10
11
12
13 |
class BottleNumber
def self.for(number)
case number
when 0
BottleNumber0
when 1
BottleNumber1
when 6
BottleNumber6
end.new(number)
end
end |
|
a |
21 lines
of
Ruby
|
276 Bytes |
Show |
Edit |
Expand |
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15 |
class BottleNumber
def container
if number == 1
"bottle"
else
"bottles"
end
end
end
class BottleNumber1 < BottleNumber
def container
... |
|