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

EJS test 46 lines of JavaScript 1.03 KB Show Edit Expand
1
2
3
4
5
6
7
const express = require('express');
const morgan = require('morgan');
const session = require('express-session');
const flash = require('connect-flash');

require('dotenv').config();
require(...
asd 13 lines of JavaScript 219 Bytes Show Edit Expand
1
2
3
4
5
6
7
8
9
10
11
12
const asd = () => {
    const payload = {
        asd: 'asd',
    };
    asd.execute('asd', payload);
};

function asd() {
    const payload = {
        asd: 'asd',
    };
    asd.execut...
Title 20 lines of JSON 428 Bytes Show Edit Expand
1
2
3
4
5
6
7
8
9
GET /structr/rest/projects/9d69225244a7443d864bb182ea7774a1
 
{
  "query_time": "0.002429550",
  "result_count": 1,
  "result": [
    {
      "name": "Agile Project",
      "customerName": ...
Ruby test 13 lines of Ruby 147 Bytes Show Edit Expand
1
2
3
4
5
6
7
8
9
10
11
12
13
module Test
  class Test
    def initialize(arg)
      @arg = arg
    end

    private

    def debug
      puts @arg
    end
  end
end
Clojure test code 31 lines of Clojure by Vic 1.03 KB Show Edit Expand
1
2
3
4
5
(defn sync-lib-deps [& {:as opts}]
  (->> (for [lib  (if (seq (:libs opts))
                    (set/intersection (set enabled-libs) (set (:libs opts)))
                    enabled-libs)
      ...
aaa 17 lines of C 185 Bytes Show Edit Expand
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// Bad
class Employee
{
protected:
    int mDepartmentID;
private:
    int mAge;
}

// Good
class Employee
{
protected:
    int m_DepartmentID;
private:
    int m_Age;
}
sad 13 lines of HTML 139 Bytes Show Edit Expand
1
2
3
4
5
6
7
8
9
10
11
12
13
<table>
<tr>
<td></td>
<td>ヘッダー項目</td>
<td>意味</td>
<td>抽出対象</td>
</tr>
<tr>
<td>セル</td>
<td>セル</td>
<td>セル</td>
</tr>
</table>
test 5 lines of C 74 Bytes Show Edit Expand
1
2
3
4
5
var myVar = "Linux Sux";

function myFunction() {
    alert(myVar);
};
test 9 lines of Python by hjvhk 231 Bytes Show Edit Expand
1
2
3
4
5
6
7
import tkinter as tk
gui = tk.Tk()
gui.geometry("200x200")
def myFunction(event):
    label["text"] = "Vous avez appuyé sur Entrée"
gui.bind('<Return>', myFunction)
label = tk.Label(gui, text...
curl 1 line of Clojure by thm 113 Bytes Show Edit Expand
1
curl --location '<FHIR server>/Patient?identifier=<identifier system of patient>%7C<identifier value of patient>'

Page 1, 10 entries