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

test 44 lines of C++ 1.23 KB Show Edit Expand
1
2
3
4
5
6
7
8
9
10
#include <cassert>
#include <cstddef>
#include <new>
#include <opencv2/opencv.hpp>

class MatAllocator : public cv::MatAllocator {
 public:
  using cv::MatAllocator::MatAllocator;

  virtu...
test sql 6 lines of SQL 121 Bytes Show Edit Expand
1
2
3
4
5
6
SELECT 
    COMMAND,
    COUNT(*) TOTAL 
FROM INFORMATION_SCHEMA.PROCESSLIST 
GROUP BY COMMAND 
ORDER BY TOTAL DESC;
test 3 lines of Ruby 38 Bytes Show Edit Expand
1
2
3
def test
  puts 'this is a test'
end
html 17 lines of Ruby by daSD 539 Bytes Show Edit Expand
1
2
3
4
5
6
<div class="container">
  <div class="headline">
    <h3>Новости</h3>
  </div>
  <% @news_pages.each do |news| %>
    <h4><%= link_to news.title, news_page_path(news), class: "hover-effect new...
YAML 4 lines of YAML 25 Bytes Show Edit Expand
1
2
3
4
foo:
  - 1
  - 2
  - 3
aa 3 lines of XML by TInh Nguyen 123 Bytes Show Edit Expand
1
2
3
<p:dialog id="test" widgetVar="testDialog" dynamic="true">
    <ui:include src="carView.xhtml"></ui:include>
 </p:dialog>
oracle pl/sql test 12 lines of SQL by abv 184 Bytes Show Edit Expand
1
2
3
4
5
6
7
8
9
10
11
12
declare
  some_value Number;
begin
  select test 
    into some_value 
    from some_table 
   where rownum = 1;
exception
  when no_data_found
    then null; -- sic!
end;
/
oracle sql test 1 line of SQL by abv 66 Bytes Show Edit Expand
1
select field1, field2, field3 from some_table where some_id = 148;
lkj 33 lines of Plain text 1.2 KB Show Edit Expand
1
2
3
4
5
6
7
c1=-.75; c2= .375+.333*i; c3= -.117-.856*i; c4=-.75+.113*i; c5=-0.561+0.641*i;  %choose one of them
c= c1; 
if abs(c)>=2  
disp('TOO BIG');
end;
z0=-1.5-1.5*i; z1=1.5+1.5*i; % min and max z
x...
Code 20 lines of JavaScript by Zunair Khokhar 459 Bytes Show Edit Expand
1
2
3
4
5
6
7
8
9
10
11
<p>Click below to get started!</p>

<button onclick="outputPosition()">&#9786;</button>

<p id="paragraph"></p>

<script>
function outputPosition()
{
var x;
var letter=prompt("Enter any l...

Page 113, 10 entries