Welcome!

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

撒旦法1 line of C 12 BytesShowEditExpand
test33 lines of PHP by test1 KBShowEditExpand
1
2
3
4
5
6
7
  Try
    
    Message "Starting eID module...", CurrentMethodName, False, System.LogLevelInformation, True
    
    'Dim numReaders As Integer = drEID.GetReaderCount()
    '
    'If numReade...
Cucumber Feature File59 lines of Ruby by Mitur Binesderti1.7 KBShowEditExpand
1
2
3
4
5
6
eature: code-breaker submits guess
  The code-breaker submits a guess of four colored
  pegs. The mastermind game marks the guess with black
  and white "marker" pegs.
  
  For each peg in the gue...
Xml Test20 lines of XML by the_king549 BytesShowEditExpand
1
2
3
4
5
6
7
8
<TestSuite>
  <Test>
    <!-- Launch ipconfig.exe -->
    <Process name="ipconfig" output="foo" error="err" timeout="5">
      <Arguments>
      <Argument />
      </Arguments>
    </Process...
test java1 line of Java 21 BytesShowEditExpand
String test = "test";
y17 lines of C 478 BytesShowEditExpand
1
2
3
4
5
6
7
8
<markdown>
#!javascript
    (function() {
      function async_load(){
        var s = document.createElement('script');
        s.type = 'text/javascript';
        s.async = true;
        s.src = 'http://yourdo...
SQL 2005: Trigger activatio-deactivation14 lines of SQL by Pedro P.224 BytesShowEditExpand
1
2
3
4
5
6
7
8
9
10
11
12
USE GestionAbogados;
GO 

DISABLE TRIGGER Cambios_actualizacion ON Cambios;
GO

DISABLE TRIGGER Cambios_borrado ON Cambios;
GO

SELECT * 
FROM sys.triggers
WHERE is_disabled = 0 -- Enabl...
test42 lines of C 787 BytesShowEditExpand
1
2
3
4
5
6
7
8
9
10
11
12
13
14
/*
  Test Cube Script for CloudSCAD

  Tony Buser <tbuser@gmail.com>
*/

// Size of cube on X axis
width = 10;

// Size of cube on Y axis
length = 10;

// How tall the cube is on Z axis
...
kjhjkh8 lines of C++ 234 BytesShowEditExpand
1
2
3
4
5
6
7
    Node* currNode = *listRef1;
    while(currNode){
      if(currNode->next == NULL)
      {
        currNode->next = *listRef2;  
        break; // !!!!Very important - Wont terminate if you miss this!!!!      
...
Makefile7 lines of C 108 BytesShowEditExpand
1
2
3
4
5
6
7
include $(GOROOT)/src/Make.$(GOARCH)

TARG=ftp
GOFILES=\
    ftp.go\

include $(GOROOT)/src/Make.pkg