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: 551
Function: getPaste

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

A PHP Error was encountered

Severity: Warning

Message: Cannot modify header information - headers already sent by (output started at /home/httpd/vhosts/scratchbook.ch/geopaste.scratchbook.ch/system/core/Exceptions.php:271)

Filename: view/raw.php

Line Number: 2

Backtrace:

File: /home/httpd/vhosts/scratchbook.ch/geopaste.scratchbook.ch/themes/geocities/views/view/raw.php
Line: 2
Function: header

File: /home/httpd/vhosts/scratchbook.ch/geopaste.scratchbook.ch/application/core/MY_Loader.php
Line: 173
Function: include

File: /home/httpd/vhosts/scratchbook.ch/geopaste.scratchbook.ch/application/core/MY_Loader.php
Line: 43
Function: _ci_load

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

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

#!/bin/bash # statistical: gernerate easy statistical informations in bash # Copyright: (C) 2011 Florian Baumann # License: GPL-3 # Date: Tuesday 2011-04-12 ### Locales SUM="$*" # see all key value pairs OUTPUTCHAR='#' # configure this to your favorite ascii char BORDERCHAR='|' # configure this to your favorite ascii char BIGKEY=0 # usually you dont have to touch this # Read from stdin hack if [ -z "$*" ]; then SUM=$(cat /dev/stdin) fi ### Scaling and environment analysis for optimal output on # the most terminals for data in $SUM; do # Getting informations from parameters KEY=${data%%:*} VALUE=${data##*:} # Fishing errors from wrong usage if [[ ! $VALUE =~ ^[[:digit:]]+$ ]]; then echo "ERROR: Do not use characters as value! Key:$KEY Value:$VALUE" exit 1 fi # Bash couldn't handle values with more than 19 numbers # Values longer than 19 will be transformed into strings. # String could not be graphed :) if [[ ${#VALUE} -gt 19 ]]; then echo "Error: Bash couldn't handle values with more than 19 numbers. Sorry." exit 1 fi # Doing the right formatting for a global # tabulator spaces work if [ ${#KEY} -gt 23 ]; then BIGKEY=3 elif [ ${#KEY} -gt 15 ]; then BIGKEY=2 elif [ ${#KEY} -gt 7 ]; then BIGKEY=1 fi # Fishing the biggest value (( VALUE > MAXVALUE )) && MAXVALUE=$VALUE done # Creating the right factor to fit the bars up to your terminal FACTORCOUNT=0 FACTOR=1 while [ ${FACTORCOUNT} -lt $(( ${#MAXVALUE} - 2 )) ]; do FACTOR="${FACTOR}0" ((FACTORCOUNT++)) done # Start graphing for data in $SUM; do KEY=${data%%:*} VALUE=${data##*:} REAL_VALUE="$VALUE" COUNTER="0" # Do value scaling action for terminal VALUE=$(($VALUE / $FACTOR)) # Do key scaling action for terminal if [ ${#KEY} -ge 23 ]; then KEY=${KEY:0:22} fi # Formatting the keys for your graph if [ $BIGKEY -eq 3 -a ${#KEY} -lt 8 ]; then echo -n -e "${KEY}\t\t\t\t" elif [ $BIGKEY -eq 3 -a ${#KEY} -lt 15 ]; then echo -n -e "${KEY}\t\t\t" elif [ $BIGKEY -eq 3 -a ${#KEY} -lt 23 ]; then echo -n -e "${KEY}\t\t" elif [ $BIGKEY -eq 2 -a ${#KEY} -lt 8 ]; then echo -n -e "${KEY}\t\t\t" elif [ $BIGKEY -eq 2 -a ${#KEY} -lt 15 ]; then echo -n -e "${KEY}\t\t" elif [ $BIGKEY -eq 1 -a ${#KEY} -lt 8 ]; then echo -n -e "${KEY}\t\t" else echo -n -e "${KEY}\t" fi # Putting the choosen char for border echo -n "$BORDERCHAR" # Putting a output char for each (scaled) value # If the last char was written, write the real value while [ $COUNTER -le $VALUE ]; do ((COUNTER++)) if [ $COUNTER -gt $VALUE ]; then echo -n " ($REAL_VALUE)" ; echo else echo -n "$OUTPUTCHAR" fi done done