I hereby claim:
- I am oliyoung on github.
- I am oliyoung (https://keybase.io/oliyoung) on keybase.
- I have a public key whose fingerprint is D8A6 D164 B064 9C69 09D4 0677 0554 B000 8B46 4AC6
To claim this, I am signing this object:
| $('#foo').on('submit', function(e) { | |
| doStuffHere(); | |
| e.preventDefault(); | |
| return false; | |
| }); |
| # Better… not really. Nicer… maybe. | |
| $('#main-navbar .search').scope | |
| $('input').css | |
| border: '1px solid #cccccc' | |
| $('button').hide() | |
| $('.results').html(loading) | |
| $('.active, .results').show() |
| $('#main-navbar .search input').css | |
| 'border': '1px solid #cccccc' | |
| $("#main-navbar .search button").hide() | |
| $("#main-navbar .search .active").show() | |
| $("#main-navbar .search .results").html(loading).show() |
I hereby claim:
To claim this, I am signing this object:
| <<<<<<< HEAD | |
| ======= | |
| Loggly.info( { "method":"PBX Handler", "message": "Incoming SMDR Data", "username": params["username"] }) | |
| Alert.ping('pbx') | |
| >>>>>>> develop |
| $('svg').each(function() { | |
| var XMLS = new XMLSerializer(); | |
| var content = XMLS.serializeToString(this).trim(); | |
| var parent = $(this).parent(); | |
| var canvas = $('<canvas style="width: 400px; height: 200px;"/>')[0]; | |
| parent.append(canvas); | |
| canvg(canvas, content); | |
| var theImage = canvas.toDataURL('image/png'); | |
| $('svg, canvas', parent).hide(); | |
| parent.append("<a href='"+theImage+"' download='chart.png'><img src='"+theImage+"' /></a>"); |
| <?php | |
| function o($str) { echo "[".date('H:i.s'). "]\t".$str."\n"; } | |
| error_reporting(E_STRICT); | |
| $client = new SoapClient('http://magento.dev/api/soap/?wsdl'); | |
| // o("Client: {$client}"); | |
| $session = $client->login('ezpublish', 'ezpublish'); | |
| o("Session: {$session}"); | |
| $erp_products = array(); | |
| // Cycle through ERP retrieved products |
| #!/usr/bin/env ruby | |
| require 'fileutils' | |
| include FileUtils | |
| args = ARGV | |
| extension_name = args.reverse!.pop | |
| if extension_name | |
| modules = args.reverse! | |
| folder_list = [ |
| pdo: | |
| class: PDO | |
| arguments: | |
| dsn: "mysql:host=%database_host%;dbname=%database_name%" | |
| user: %database_user% | |
| password: %database_password% |
| ; These parameters can be imported into other config files | |
| ; by enclosing the key with % (like %database_user%) | |
| ; Comments start with ';', as in php.ini | |
| [parameters] | |
| database_driver = pdo_mysql | |
| database_host = 127.0.0.1 | |
| database_port = | |
| database_name = puntclub_v3 | |
| database_user = root | |
| database_password = |