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

a 23 lines of Ruby 390 Bytes Show Edit Expand
1
2
3
4
5
6
7
8
class Gear
  attr_reader :chainring, :cog, :rim, :tire
  def initialize(chainring, cog, rim, tire)
    @chainring = chainring
    @cog       = cog
    @rim       = rim
    @tire      = tire
...
a 37 lines of Ruby 604 Bytes Show Edit Expand
1
2
3
4
5
6
7
8
9
# ...
  # ...
    # ...
class Gear
  attr_reader :chainring, :cog, :rim, :tire
  def initialize(chainring, cog, rim, tire)
    @chainring = chainring
    @cog       = cog
    @rim       = r...
a 37 lines of Ruby 604 Bytes Show Edit Expand
1
2
3
4
5
6
7
8
9
# ...
  # ...
    # ...
class Gear
  attr_reader :chainring, :cog, :rim, :tire
  def initialize(chainring, cog, rim, tire)
    @chainring = chainring
    @cog       = cog
    @rim       = r...
Example 1a 15 lines of HTML 445 Bytes Show Edit Expand
1
2
3
4
5
6
7
<!DOCTYPE html>
<html lang="en">
  <head>  
    <title>Hello!</title>
    <meta charset="utf-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <meta name="viewport" content="w...
Example 1a 9 lines of JavaScript 207 Bytes Show Edit Expand
1
2
3
4
5
6
7
8
const para = document.querySelector('p');

para.addEventListener('click', updateName);

function updateName() {
  let name = prompt('Enter a new name');
  para.textContent = 'Player 1: 
' + ...
Example 1a 8 lines of JavaScript 205 Bytes Show Edit Expand
1
2
3
4
5
6
7
const para = document.querySelector('p');

para.addEventListener('click', updateName);

function updateName() {
  let name = prompt('Enter a new name');
  para.textContent = 'Player 1: ' + na...
test 1 line of Python 3 Bytes Show Edit Expand
1
sss
ruby 5 lines of Ruby 32 Bytes Show Edit Expand
1
2
3
4
5
class X
def y
puts 2
end
end
d 1 line of Ruby 22 Bytes Show Edit Expand
1
sysctl kern.hv_support
Javascript Code example 329 lines of JavaScript 13.1 KB Show Edit Expand
1
2
3
4
5
6
7
/*!
 * Datapel apiConnect Library v1.2.0 (http://api.datapel.net)
 * Copyright 2011-2016 Datapel Systems Pty Ltd.
 * Licensed under MIT
 */

if (typeof jQuery === 'undefined') { throw new Err...

Page 21, 10 entries