Rendering real-time with script calculations, great for study, source of9lessons.
To play you need a browser that supports HTML5.
Using arrows to control the "snake".
Speed set on the script to a "normal" (perhaps?) range.
Good luck! XD
![]() | ![]() | ![]() | ![]() | ![]() |
s200 | s126 | s54 | s20 | s8 |
Variable | Type | Description |
---|---|---|
securityToken | string | Token Hash to verify Autenticity |
blogID | unique int | Blog UID (Unique Identifier |
[pageID | postID] | unique int | [Page | Post] UID (Unique Identifier) |
encodedIds | string | Cached Author IDs. (Encoded with UTF-8) |
encodedSelectedId | string | Current Author IDs. (Encoded with UTF-8) |
showPreview | bool | false to submit. true to return to Comment-Form with Preview Data. |
photourl | string | URL of Photo |
photowidth | int | Width in Pixels of Photo |
photoheight | string | URL of Photo |
openIdUri | string | if OpenID, it's URI |
anonName | string | Anomymous ? "Anonymous" : Custom Name |
anonURL | string | Anomymous ? "" : Custom URL | commentBody | string | Message as HTML (Encoded with UTF-8) | identityMenu | string | Identity Chosen. "CURRENT" | "NONE" | "OPENID" | "NAMEURL" | "ANON" |
WebResponse HTTP_Send(string URi, string QueryParams, string Method) { WebRequest httpRequest = WebRequest.Create(URi); httpRequest.ContentType = "application/x-www-form-urlencoded"; httpRequest.Method = Method; byte[] bytesParams = Encoding.ASCII.GetBytes(QueryParams); Stream os = null; try { httpRequest.ContentLength = bytesParams.Length; os = httpRequest.GetRequestStream(); os.Write(bytesParams, 0, bytesParams.Length); } catch (WebException ex) { MessageBox.Show(ex.ToString(), "HTTP Request Error", MessageBoxButtons.OK, MessageBoxIcon.Error); return null; } finally { if (os != null) os.Close(); } return httpRequest.GetResponse(); } string HTTP_Response(WebResponse httpResponse) { try { if (httpResponse == null) return null; StreamReader sr = new StreamReader(httpResponse.GetResponseStream()); return sr.ReadToEnd().Trim(); } catch (WebException ex) { MessageBox.Show(ex.ToString(), "HTTP Response Error", MessageBoxButtons.OK, MessageBoxIcon.Error); return null; } }However, seems like, either some specific key is missing, or blogger know the data is being sent by an application.
// Send 'param1=Value&Param2=Value' via GET method to 'http://www.domain.com/' WebResponse sendData = HTTP_Send("http://www.domain.com/", "param1=Value&Param2=Value", "GET"); // Gets the response in HTML string responseData = HTTP_Response(sendData);
Elements with Outline: | <anchor> |
Elements without Outline: | <anchor> |
* button::-moz-focus-inner, * a, * img::-moz-focus-inner, * input::-moz-focus-inner { outline: none !important; border: 0 !important; } *:-moz-any-link:focus { outline-width: 0 !important; }To remove outline from <input> elements, you need to blur the control once it gets focused:
<input type="radio" onfocus="this.blur();"/> <input type="checkbox" onfocus="this.blur();"/>
// ==UserScript== // @name Blogger BlogTrap Removal // @description Removes Preview Trap when previewing Pages/Posts on Blogger // @namespace http://awtmk.blogspot.com/ // @include http://www.blogger.com/html?blogID=* // @include http://*.blogspot.com/b/post-preview* // @source ... // @version 1.0.0 // @date 2010-11-17 // ==/UserScript== (function () { document.getElementsByClassName("blogger-clickTrap")[0].style.display = "none"; })();In case you don't want Greasemonkey you can bookmark the following javascript instruction:
javascript:document.getElementsByClassName("blogger-clickTrap")[0].style.display = "none"; void(0);
HTML_Element { Attribute: Value; /* Works on ALL Browsers */ #Attribute: Value; /* Works on IE */ _Attribute: Value; /* Works on IE6 And Older */ }Prefix # works on