212
I Use This!
Very Low Activity

News

Analyzed about 4 hours ago. based on code collected about 4 hours ago.
Posted over 13 years ago by Paul Wratt
hmm.. maybe if you are dumping PHP into JS tags, this function is OK, you should get a valid pointer if the file exists.. .. but from a client-side http: JS perspective, this function has no other use, as it does not return the actual page/code ... [More] requested.. which is similar to PHP, use the "dependency" instead.. ('file_get_contents') btw how does this code depend on 'file_get_contents' (except as I just pointed out), as it contains its own 'file_get_contents' function.. hmm.. maybe if combined with fread($fp) it would allow standard code to operate correctly..(reading 'stream' from '.resourceData') interesting, and good for completeness & thoroughness [Less]
Posted over 13 years ago by Edward
Everything is fine but I've problems in IE7 :S. Using jQuery: $(".content").html(pack("H*", hexString)); The error message is: 'Undefined' is null or not an object.
Posted almost 14 years ago by empoxia
Posted almost 14 years ago by Zetemogma
Posted almost 14 years ago by Yaffle
Good implementation, but doesn't work for base64 strings without padding ("==" or "=") (From a theoretical point of view the padding character is not needed, since the number of missing bytes can be calculated from the number of Base64 digits, see ... [More] http://en.wikipedia.org/wiki/Base64#Padding) and here is my implementation: https://gist.github.com/1284012 https://gist.github.com/1284012 [Less]
Posted almost 14 years ago by max4ever
please consider this function http://stackoverflow.com/questions/18082/validate-numbers-in-javascript-isnumeric/1830844#1830844
Posted almost 14 years ago by max4ever
isNumeric('3a') ==> return true, should return false
Posted almost 14 years ago by max4ever
this one is tiny and works (doesn't support the php_round_... variables though) http://stackoverflow.com/questions/6437062/javascript-vs-php-rounding/6438281#6438281
Posted almost 14 years ago by Daniele
I am using this function on something mission-critical for the user (an online task manager and calendar) so I need it to be flawless. I am trying to find bugs and fix them myself. If you want to help me, please contact me. I would also like to ... [More] contribute to the Github repo with my fixes - how can I do that? Here is another bug: date("Y-m-d", strtotime('+3 days')); // returns 2011-10-14 date("Y-m-d", strtotime('+3 days', 1324815132)); // returns 2011-10-14 I have fixed the bug by replacing line 30 of the version version: 1109.2015 with: } else if ((!now) && !isNaN(parse = Date.parse(strTmp))) { I hope that won't introduce new bugs. Any ideas? [Less]
Posted almost 14 years ago by Soaliapam