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

XML test 51 lines of C 1.42 KB Show Edit Expand
1
2
3
4
5
6
7
8
9
10
class DepthOfField {
  // Autofocus
  ID3D10Texture1D *autofocus_texture_;

  // Viewport and texture dimensions
  UINT width_;
  UINT height_;
};

HRESULT DepthOfField::OnDeviceCreated(ID...
rtre 11 lines of YAML 214 Bytes Show Edit Expand
1
2
3
4
5
6
7
8
9
10
<?xml version="1.0" encoding="utf-8"?>
<msg seq="0">
  <pid>b006wkqb</pid>
    <features>
      <rss status='off'/>
      <sms status='on'/>
    </features>
  <comp>
    <loc>bottom</loc>
  ...
ieslink 34 lines of diff by asfasf 1.04 KB Show Edit Expand
1
2
3
4
5
6
def  initializeModelFaces    
    $modelFaces = []    
      ## find faces in model
      faceCount = 0
      for entity in Sketchup.active_model.entities
        if (!entity.instance_of?(Sketchup::Face)...
test 7 lines of C 198 Bytes Show Edit Expand
1
2
3
4
5
6
7
//=============================================
    public sealed class Application : IApplication
    {
        private static Application _instance = null;
        private string[] _args;

}
Testing asdf 3 lines of Plain text 61 Bytes Show Edit Expand
1
2
3
test = "moo"
puts "this is a #{test}"
#=> "this is a moo"
Testing asdf 3 lines of Ruby 61 Bytes Show Edit Expand
1
2
3
test = "moo"
puts "this is a #{test}"
#=> "this is a moo"
Unicode 30 lines of Ruby by murphy 506 Bytes Show Edit Expand
1
2
3
4
5
6
7
8
9
10
11
12
13
14
ä = 42
print ä

def straße(frühstück)
  höhle(frühstück)
end

alias λ lambda
× = λ { |x,y| x*y }
×[2,3]  # => 6s dfsdf

# Summe der ersten 10 Quadratzahlen
def ∑ enum
  e...
asf 5 lines of ERb 84 Bytes Show Edit Expand
1
2
3
4
5
class Customer < ActiveRecord::Base
end
 
class Order < ActiveRecord::Base
end
asf 5 lines of Ruby 84 Bytes Show Edit Expand
1
2
3
4
5
class Customer < ActiveRecord::Base
end
 
class Order < ActiveRecord::Base
end
asf 13 lines of JavaScript 312 Bytes Show Edit Expand
1
2
3
4
5
6
7
8
var userObject = new Object();
userObject.lastLoginTime = new Date();
alert(userObject.lastLoginTime);

(OR)

var userObject = {}; // equivalent to new Object()
userObject[âœlastLoginTimeâ...

Page 286, 10 entries