I hereby claim:
- I am arturocr on github.
- I am arturocr (https://keybase.io/arturocr) on keybase.
- I have a public key whose fingerprint is 1264 4B9D B0D7 419D 7C07 23D6 65A9 765F 5792 BB13
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
AndroidPay | |
Books | |
CalendarGoogle | |
CalSync | |
CameraGoogle | |
Docs | |
Earth | |
ExchangeGoogle | |
Fitness | |
GoogleNow |
/* jQuery plugin textselect | |
* version: 1.0 | |
* tested on jQuery 1.3.2, 1.5 | |
* author: josef.moravec@gmail.com, duane.johnson@gmail.com | |
* | |
* usage: | |
* $(function() { | |
* $(document).bind('textselect', function(e) { | |
* Do stuff with e.text | |
* }); |
$(document).ready(function() { | |
if (!("placeholder" in document.createElement("input"))) { | |
$("input[placeholder]").each(function() { | |
var val = $(this).attr("placeholder"); | |
if (this.value == "") { | |
this.value = val; | |
} | |
$(this).focus(function() { | |
if (this.value == val) { | |
this.value = ""; |
<?php | |
header('Content-Description: File Transfer'); | |
header('Content-Type: application/octet-stream'); | |
header('Content-Disposition: attachment; filename=' . basename($file)); | |
header('Content-Transfer-Encoding: binary'); | |
header('Expires: 0'); | |
header('Cache-Control: must-revalidate'); | |
header('Pragma: public'); | |
header('Content-Length: ' . filesize($file)); | |
ob_clean(); |