A PHP Error was encountered

Severity: 8192

Message: Function create_function() is deprecated

Filename: geshi/geshi.php

Line Number: 4698

Backtrace:

File: /home/httpd/vhosts/scratchbook.ch/geopaste.scratchbook.ch/application/libraries/geshi/geshi.php
Line: 4698
Function: _error_handler

File: /home/httpd/vhosts/scratchbook.ch/geopaste.scratchbook.ch/application/libraries/geshi/geshi.php
Line: 4621
Function: _optimize_regexp_list_tokens_to_string

File: /home/httpd/vhosts/scratchbook.ch/geopaste.scratchbook.ch/application/libraries/geshi/geshi.php
Line: 1655
Function: optimize_regexp_list

File: /home/httpd/vhosts/scratchbook.ch/geopaste.scratchbook.ch/application/libraries/geshi/geshi.php
Line: 2029
Function: optimize_keyword_group

File: /home/httpd/vhosts/scratchbook.ch/geopaste.scratchbook.ch/application/libraries/geshi/geshi.php
Line: 2168
Function: build_parse_cache

File: /home/httpd/vhosts/scratchbook.ch/geopaste.scratchbook.ch/application/libraries/Process.php
Line: 45
Function: parse_code

File: /home/httpd/vhosts/scratchbook.ch/geopaste.scratchbook.ch/application/models/Pastes.php
Line: 517
Function: syntax

File: /home/httpd/vhosts/scratchbook.ch/geopaste.scratchbook.ch/application/controllers/Main.php
Line: 693
Function: getPaste

File: /home/httpd/vhosts/scratchbook.ch/geopaste.scratchbook.ch/index.php
Line: 315
Function: require_once

Untitled - Stikked
From Soft Owl, 11 Years ago, written in JavaScript.
Embed
  1. [
  2.     '{{repeat(5, 7)}}',
  3.     {
  4.         id: '{{index}}',
  5.         guid: '{{guid}}',
  6.         isActive: '{{bool}}',
  7.         balance: '{{numeric(1000,4000,%=$0,0.00)}}',
  8.         picture: 'http://placehold.it/32x32',
  9.         age: '{{numeric(20,40)}}',
  10.         name: '{{firstName}} {{surname}}',
  11.         gender: '{{gender}}',
  12.         company: '{{company}}',
  13.         email: '{{email}}',
  14.         phone: '+1 {{phone}}',
  15.         address: '{{numeric(100,999)}} {{street}}, {{city}}, {{state}}, {{numeric(100,10000)}}',
  16.         about: '{{lorem(1,paragraphs)}}',
  17.         registered: '{{date(YYYY-MM-ddThh:mm:ss Z)}}',
  18.         latitude: '{{numeric(-90.000001, 90)}}',
  19.         longitude: '{{numeric(-180.000001, 180)}}',
  20.         tags: [
  21.             '{{repeat(7)}}',
  22.             '{{lorem(1)}}'
  23.         ],
  24.         friends: [
  25.             '{{repeat(3)}}',
  26.             {
  27.                 id: '{{index}}',
  28.                 name: '{{firstName}} {{surname}}'
  29.             }
  30.         ],
  31.         randomArrayItem: function(idx) {
  32.             var choices = ['cherry', 'apple', 'lemon'];
  33.             return choices[this.numeric(0, choices.length - 1)];
  34.         }
  35.     }
  36. ]