Welcome! This page is using CodeRay 1.1.2.

We currently have 3042 rays in the database.
You can add a New Ray or browse the posted rays by pages.

Page 19, 10 entries

a 14 lines of Ruby 219 Bytes Show Edit Expand
1
2
3
4
5
6
7
8
9
10
11
12
13
14
class Gear
  attr_reader :chainring, :cog

  def initialize(chainring, cog)
    @chainring = chainring
    @cog = cog
  end

  def ratio
    chainring / cog.to_f
  end
end

Gear.new(52...
a 15 lines of Ruby 200 Bytes Show Edit Expand
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
class AccessTest
  public
  def pub
    puts "public_method"
  end

  private
  def priv
    puts "private_method"
  end
end

test_super = AccessTest.new
test_super.pub
test_super.priv
a 15 lines of C 200 Bytes Show Edit Expand
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
class AccessTest
  public
  def pub
    puts "public_method"
  end

  private
  def priv
    puts "private_method"
  end
end

test_super = AccessTest.new
test_super.pub
test_super.priv
sdasdsadsa 5 lines of C 127 Bytes Show Edit Expand
1
2
3
4
5
docker run --rm \
  -e 'SOURCE_METHOD=VOLUME' \
  -e 'PROJECT_TYPE=JAVA' \
  -v $(pwd)/source:/opt/source  \
aaaa/aaaa init
a 7 lines of Ruby 79 Bytes Show Edit Expand
1
2
3
4
5
6
7
def gear_inches
  ratio * diameter
end

def diameter
  wheel.diameter
end
a 34 lines of Ruby 640 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 28 lines of Ruby 504 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 24 lines of Ruby 445 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 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...

Page 19, 10 entries