Welcome! This page is using CodeRay 1.1.2.

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

Page 200, 10 entries

Cipher 30 lines of PHP by Mateusz 861 Bytes Show Edit Expand
1
2
3
4
5
6
7
8
9
10
<?php

class Cipher
{
    protected static $key = "NasZSup3rTajnYHash";
    
    // Metoda szyfrująca ciąg znakowy $STRING
    public static function Encode($STRING)
    {
        $encrypt...
test 1 line of Python by king 13 Bytes Show Edit Expand
1
print "Hello"
dfd 3 lines of ERb 35 Bytes Show Edit Expand
1
2
3
<script>
var toto = 10;
</script>
tt 10 lines of ERb 436 Bytes Show Edit Expand
1
2
3
4
5
<%- title "Edit Page" -%>
<div class="page-form">
  <h1>Edit Page</h1>
  <%= error_messages_for :page %>
  <%= form_for(@page, :url => page_path(:id => @page), :html => {:multipart => true, :me...
my 20 lines of Ruby by alvin 443 Bytes Show Edit Expand
1
2
3
4
5
6
7
8
9
class MainController < ApplicationController
   respond_to :js, :html, :xml

   def cezar
      respond_with do |format|
         format.html
         format.xml
         format.js do
     ...
aaaa 9 lines of C++ by aaaa 168 Bytes Show Edit Expand
1
2
3
4
5
6
7
8
9
Dialog::Dialog
{
    setWindowFlags( Qt::Dialog | Qt::WindowTitleHint );
    setFixedSize( width(), height() );
}

for (int i = 0; i < 10; ++i) {
  setOut(i);
}
some friggin javascript 12 lines of JavaScript 477 Bytes Show Edit Expand
1
2
3
4
$(document).ready(function() {
  if($('body.developer_zone').length == 1) {
    $('#sidebar h3').live('click', function() {
      if($(this).next('div').length > 0 && $(this).next('div').css('di...
Test 8 lines of SQL 315 Bytes Show Edit Expand
1
2
23:19:54 rflribeiro@ORA10GR2> begin
23:19:59   2  utl_mail.send(sender=>'software@dbcom.com.br', recipients=>'rflribeirojr@gmail.com', subject=>'UTL_MAL Test', message=>'If you get this message it...
test 20 lines of Python by test 808 Bytes Show Edit Expand
1
2
3
4
5
6
pjack@ubuntu1104-64-5:/etc/ceph$ sudo mkfs -t btrfs /dev/ubuntu1104-64-5/lvol2
 
WARNING! - Btrfs Btrfs v0.19 IS EXPERIMENTAL
WARNING! - see http://btrfs.wiki.kernel.org before using
 
fs crea...
Test 36 lines of JavaScript 1.43 KB Show Edit Expand
1
2
3
4
<form action="" method="POST" id="payment-form">
    <div class="form-row">
        <label>Card Number</label>
        <input type="text" maxlength="20" autocomplete="off" class="card-number req...

Page 200, 10 entries