Welcome! This page is using CodeRay 1.1.2.

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

Page 1, 10 entries

xml 11 lines of XML by mm 578 Bytes Show Edit Expand
1
<button class="search-handoff-button" tabindex="-1" data-l10n-args="{&quot;engine&quot;:&quot;Google&quot;}" data-l10n-id="newtab-search-box-handoff-input" title="Search with Google or enter addres...
sample 21 lines of SQL 531 Bytes Show Edit Expand
1
2
3
4
5
6
7
8
9
10
WITH RECURSIVE bubble_sort AS (
    SELECT
        id,
        value,
        ROW_NUMBER() OVER (ORDER BY id) AS rn,
        FALSE AS swapped
    FROM numbers
    UNION ALL
    SELECT
    ...
gitlab.yml 176 lines of YAML 4.6 KB Show Edit Expand
1
2
3
4
5
6
7
8
9
10
11
12
stages:
  - build
  - test
  - quality
  - security_static
  - security_dynamic
  - deploy
  - container_scan

variables:
  MAVEN_CLI_OPTS: "-B -DskipTests"
  MAVEN_OPTS: "-Dmaven.repo.l...
test 103 lines of Ruby 2.8 KB Show Edit Expand
1
2
3
4
5
6
7
8
# frozen_string_literal: true

class Scheduler
  def self.needs_updating_ids
    # TODO: Add your resolution here
    movies = Movie.where(needs_update: true)

    response = Faraday.get('ht...
modern css 9 lines of CSS by loris 168 Bytes Show Edit Expand
1
2
3
4
5
6
7
8
9
body {
    --some-variable: red;
    font-size: 12pt;
    background: #fff url(temp.png) top left no-repeat;
    div {
        &:hover { color; red;}
    }
}

liquid test 5 lines of HTML 65 Bytes Show Edit Expand
1
2
3
4
5
<html>
  {%if something%}
    test liquid
  {%endif%}
</html>
sads 2 lines of YAML 26 Bytes Show Edit Expand
1
2
test: 123
hoempa: vfdsvgs
google_compute_network 111 lines of HTML by Y 3.01 KB Show Edit Expand
1
2
3
4
5
6
7
8
9
data "google_compute_network" "default" {
  name = lookup(var.gke_network_main, "vpc_name")
}

resource "random_string" "db_password" {
  length  = 16
  special = false
  lower   = true
  u...
johan 1 line of XML 56 Bytes Show Edit Expand
1
<cbc:InvoiceTypeCode name="01">380</cbc:InvoiceTypeCode>
test 1 line of Ruby 97 Bytes Show Edit Expand
1
 #<User id: nil, email: "", created_at: nil, updated_at: nil, name: "", phone: nil, zipcode: nil>

Page 1, 10 entries