I hereby claim:
- I am jcubic on github.
- I am jcubic (https://keybase.io/jcubic) on keybase.
- I have a public key whose fingerprint is BC65 3F92 314B 398B 5E1E 0BC7 A58E E6F1 31F8 3013
To claim this, I am signing this object:
| .wrapper { | |
| clear: both; | |
| margin: 0 10px; | |
| background: red; | |
| float: left; | |
| width:100%; | |
| } | |
| .wrapper .block { | |
| text-align: left; | |
| width: 25%; |
| import java.io.*; | |
| import java.util.*; | |
| import javax.servlet.*; | |
| import javax.servlet.http.*; | |
| import java.lang.reflect.*; | |
| import com.thetransactioncompany.jsonrpc2.*; | |
| public class init extends HttpServlet { | |
| public init() { |
| body { | |
| background: #222; | |
| } | |
| .arrow { | |
| background-color: white; | |
| transform: rotate(45deg); | |
| position: absolute; | |
| top: 50%; | |
| } | |
| .arrow, .arrow:before { |
| (function() { | |
| // } | |
| function() { // | |
| foo(); | |
| bar(); | |
| } | |
| baz(); | |
| })(); |
I hereby claim:
To claim this, I am signing this object:
| (function() { | |
| var matched, browser; | |
| // Use of jQuery.browser is frowned upon. | |
| // More details: http://api.jquery.com/jQuery.browser | |
| // jQuery.uaMatch maintained for back-compat | |
| jQuery.uaMatch = function( ua ) { | |
| ua = ua.toLowerCase(); |
| function findText( rootElement, textToFind ) { | |
| var walker = document.createTreeWalker( rootElement, | |
| NodeFilter.SHOW_TEXT, | |
| null, | |
| false ); | |
| var texts = [], | |
| nodes = []; | |
| walker.firstChild(); | |
| nodes.push( walker.currentNode ); |
| /* | |
| * implementation of the alorithm from EcmaScript spec in section 15.1.2.4 | |
| * http://www.ecma-international.org/publications/files/ECMA-ST-ARCH/ECMA-262,%201st%20edition,%20June%201997.pdf | |
| */ | |
| (function(global) { | |
| var allowed = 'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789@*_+-./,'; | |
| global.escapeString = function(str) { | |
| str = str.toString(); | |
| var len = str.length, R = '', k = 0, S, chr, ord; | |
| while(k < len) { |
| $.fn.crossDomainRequest = function(url, method, data, fn) { | |
| var self = this; | |
| var receiver = self.attr('src').replace(/\/.*$/, '').replace(/^https?::\/\//, ''); | |
| function get(event) { | |
| if (event.origin.match(receiver)) { | |
| // event.data is response from POST | |
| fn(event.data); | |
| } | |
| } | |
| if (window.addEventListener){ |
| /**@license | |
| * __ _____ ________ __ | |
| * / // _ /__ __ _____ ___ __ _/__ ___/__ ___ ______ __ __ __ ___ / / | |
| * __ / // // // // // _ // _// // / / // _ // _// // // \/ // _ \/ / | |
| * / / // // // // // ___// / / // / / // ___// / / / / // // /\ // // / /__ | |
| * \___//____ \\___//____//_/ _\_ / /_//____//_/ /_/ /_//_//_/ /_/ \__\_\___/ | |
| * \/ /____/ version {{VER}} | |
| * | |
| * This file is part of jQuery Terminal. http://terminal.jcubic.pl | |
| * |