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.

Page 65, 10 entries

Node HTTP Server 7 lines of JavaScript by treesap 191 Bytes Show Edit Expand
1
2
3
4
5
6
7

http.createServer(function (req, res) {
  res.writeHead(200, {'Content-Type': 'text/plain'});
  res.end('Hello World\n');
}).listen(8080);

console.log('Server running on port 8080.');
UR96868805 13 lines of Ruby 11.5 KB Show Edit Expand
1
[{"parcel_status_name"=>"Despatched", "parcel_status_id"=>"2", "status_text"=>"Despatched", "carrier_status_code"=>"2", "carrier_reason_code"=>"MetaPackDM", "depot_achieving_status"=>"", "parcel_co...
Events 16 lines of Ruby 14.4 KB Show Edit Expand
1
[{“parcel_status_name"=>"Despatched", "parcel_status_id"=>"2", "status_text"=>"Despatched", "carrier_status_code"=>"2", "carrier_reason_code"=>"MetaPackDM", "depot_achieving_status"=>"", "parcel_co...
Parking 6 lines of Ruby by me 79 Bytes Show Edit Expand
1
2
3
4
5
6
parking_spots = 
[
["Key1", "Car1"],
["Key2", "Car2"],
["Key3", "Car3"],
]
svg 40 lines of HTML by me 4.14 KB Show Edit Expand
1
2
3
4
<svg width="640" height="480" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
 <!-- Created with SVG-edit - http://svg-edit.googlecode.com/ -->
 <defs>
  <filter i...
a.yaml 10 lines of YAML 625 Bytes Show Edit Expand
1
2
3
-
  nazwa: "Testowanie połączenia z intenrnetem"
  Opis: "Aplikacja ma działać tylko online. Aby to zagwarantować testujemy połączenie z internetem podczas jej uruchomienia i nie pozwalamy na wyk...
sql 1 line of SQL by money 50 Bytes Show Edit Expand
1
SELECT * FROM some_table WHERE name="hello world";
teste 59 lines of Delphi 2.43 KB Show Edit Expand
1
2
3
4
5
6
  procedure ExemploCadastro();
  var
    CadastroConteudo: TCadastroConteudo;
  begin
    WaitShow('Cadastrando o texto...');
    CadastroConteudo := TCadastroConteudo.Create(ParametrosSistema...
json test 10 lines of JSON by b 212 Bytes Show Edit Expand
1
2
3
4
5
6
7
8
9
{
    age_range : {
        values: [3],
        factory: 'age_range'
    },
    opt_in_date : {
        values: [1448972134, 1451650534],
        factory: 'opt_in_date',
        operator: ...
test 22 lines of Java by tet 617 Bytes Show Edit Expand
1
2
3
4
5
6
7
8
// smoopeClient initialized somewhere

try {
    Business business == smoopeClient.getBusiness();
} catch (ResponseException e) {
    // Handle error
} catch (BadRequestException e) {
    //...

Page 65, 10 entries