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
from Tkinter import * import urllib2 root = Tk() root.wm_title("Meme generator") root.geometry("%dx%d%+d%+d" % (700, 145, 0, 0)) meme = StringVar() status = StringVar() def getMeme(): status.set("Connecting to the API...") api = urllib2.urlopen("http://api.automeme.net/text") status.set("Fetching...") data = api.read() meme_list = data.split('\n') meme.set(meme_list[0]) status.set("Meme fetched.") api.close() w = Label(root, text="Meme generator, By aha2Y.") w.pack(pady=01) e = Entry(root, width=100, textvariable = meme) e.pack() e.delete(0, END) e.insert(0, "") e.pack(pady=15) b = Button(root, text="Generate meme", command=getMeme) b.pack() s = Label(root, textvariable = status, borderwidth = 1, relief = SUNKEN, width=120) s.pack(pady=15) root.mainloop()