Welcome! This page is using CodeRay 1.1.2.

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

Page 222, 10 entries

ruby 11 lines of Ruby 207 Bytes Show Edit Expand
1
2
3
4
5
6
7
8
9
10
require 'httparty'
class Facebook
  include HTTParty
  base_uri 'https://graph.facebook.com/'
  # default_params :output => 'json'
  format :json

  def self.object(id)
    get "/#{id}"
  ...
HTTParty 11 lines of Ruby 207 Bytes Show Edit Expand
1
2
3
4
5
6
7
8
9
10
require 'httparty'
class Facebook
  include HTTParty
  base_uri 'https://graph.facebook.com/'
  # default_params :output => 'json'
  format :json

  def self.object(id)
    get "/#{id}"
  ...
HTTParty 11 lines of Ruby 207 Bytes Show Edit Expand
1
2
3
4
5
6
7
8
9
10
require 'httparty'
class Facebook
  include HTTParty
  base_uri 'https://graph.facebook.com/'
  # default_params :output => 'json'
  format :json

  def self.object(id)
    get "/#{id}"
  ...
test 2 lines of Ruby 12 Bytes Show Edit Expand
1
2
def foo
end
aa 7 lines of PHP by aa 33 Bytes Show Edit Expand
1
2
3
4
5
6
7
<?

if (isset($a)) {

}

?>
teste 6 lines of Java by Henrique 91 Bytes Show Edit Expand
1
2
3
4
5
6
public static void main(String args[]){
 
  System.out.println("Teste de codigo");


}
vb.net 5 lines of C++ 160 Bytes Show Edit Expand
1
2
3
4
5
        Public ReadOnly Property info() As BindingList(Of BackupJob)
            Get
                Return _info
            End Get
        End Property
test 12 lines of Ruby by shea 205 Bytes Show Edit Expand
1
2
3
4
5
6
7
8
9
10
11

class User < ActiveRecord::Base
  has_many :posts
  has_many :sessions
  
  validates_presence_of :openid_identifier
  
  def full_name
    "#{self.first_name} #{self.last_name}"
  end
 ...
gdfg 2 lines of Plain text 28 Bytes Show Edit Expand
1
2
> cd kalsdhl
> mkdir <vcy<x
Symbol statt Operator 1 line of Ruby by bovi 36 Bytes Show Edit Expand
1
n=->k{k==0?'':n[k-1]+'{'+n[k-1]+'}'}

Page 222, 10 entries