Welcome! This page is using CodeRay 1.1.2.

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

Page 146, 10 entries

pdfkit sample 2 lines of SQL by pdfkit sample 112 Bytes Show Edit Expand
1
2
SELECT * FROM db_eva_amadeus.communication_history where com_type like "ticketing" 
ORDER BY id desc LIMIT 100;
dup 7 lines of Ruby 151 Bytes Show Edit Expand
1
2
3
4
5
6
7
a = Object.new
def a.foo; :foo end
p a.foo
# => :foo
b = a.dup
p b.foo
# => undefined method `foo' for #<Object:0x007f8bc395ff00> (NoMethodError)
For loop 2 lines of Python 40 Bytes Show Edit Expand
1
2
for centre in centres:
  run_report()
matlab 23 lines of diff 1.01 KB Show Edit Expand
1
2
3
4
5
6
    dirX = Orientation((OrientEdge*2)-1+sensX , 2);
    dirY = Orientation((OrientEdge*2)-1+sensY , 1);
    
%     if sensX  == 0; sensX = -1; end
%     if sensY  == 0; sensY = -1; end
%------...
nginx 66 lines of Plain text 1.6 KB Show Edit Expand
1
2
3
4
5
6
7
8
9
For cur in cols
Begin
    Case cur.rstype
    When 0 then
      If (cduration%5=0)then
        Select * into nxt from pgm_chann_plasy where id=cur.nextid;
        Case nxt.rstype 
          When 0 then
 <见伪代码二...
foo 22 lines of HTML 658 Bytes Show Edit Expand
1
2
3
4
5
6
7
8
9
<html>
<body>

      <script type="text/javascript">
        var _gaq = _gaq || [];
        _gaq.push(['_setAccount', 'UA-7696481-1']);
        _gaq.push(['_trackPageview']);

        (func...
l 9 lines of PHP 80 Bytes Show Edit Expand
1
2
3
4
5
6
7
8
9
<html>
<body>

<?php
$file=fopen("welcome.txt","r");
?>

</body>
</html>
Test 12 lines of PHP 322 Bytes Show Edit Expand
1
2
3
4
5
6
7
// Русский текст
class MyController extends AppController {
  
  public function <a href="my_action">my_action</a>() {
    
    // This finds all entries in the MyModel model
    $all = $this->m('MyM...
sss 11 lines of Java 191 Bytes Show Edit Expand
1
2
3
4
5
6
7
8
9
10
11
import java.io.*;

public class Main
{
  public static void main(String[] args)
  {
    Scanner in = new Scanner(System.in);
    System.out.println(in.next());
    in.close();
  }
}
java 11 lines of Java by littlefish 191 Bytes Show Edit Expand
1
2
3
4
5
6
7
8
9
10
11
import java.io.*;

public class Main
{
  public static void main(String[] args)
  {
    Scanner in = new Scanner(System.in);
    System.out.println(in.next());
    in.close();
  }
}

Page 146, 10 entries