3,457 reputation
11425
bio website anentropic.wordpress.com
location London, United Kingdom
age
visits member for 3 years, 7 months
seen 8 hours ago
stats profile views 130

16h
comment JavaScript/jQuery HTML Encoding
me neither :) I started out just wanting to handle quote marks and I've ended up on a quest for speed...
16h
comment JavaScript/jQuery HTML Encoding
a faster replaceAll method jsperf.com/htmlencoderegex/25
16h
revised JavaScript/jQuery HTML Encoding
now faster...
17h
comment JavaScript/jQuery HTML Encoding
interestingly in Firefox you can do replace('a', 'b', 'g') which works the same as replace(/a/g, 'b') ...speed is identical too though
17h
comment How to replace all periods in a string in JavaScript
won't this get stuck in an infinite loop if you give it something like: replaceAll('&', '&') ? (admittedly that is not a case in the OP's question)
2d
comment JavaScript/jQuery HTML Encoding
@ThinkingStiff is correct, I take it back :)
2d
comment JavaScript/jQuery HTML Encoding
@ThinkingStiff ah you're right, there was a reason for it after all...
2d
revised JavaScript/jQuery HTML Encoding
deleted 61 characters in body
Jun
14
comment Django Forum App Project Structure
Have updated just now with a couple of extra tips... good luck!
Jun
14
revised Django Forum App Project Structure
added 236 characters in body
Jun
14
revised Django Forum App Project Structure
added 236 characters in body
Jun
14
answered Django Forum App Project Structure
Jun
14
comment JavaScript/jQuery HTML Encoding
the non-regex .replace() version recently suggested by @SEoF turns out to be massively faster: jsperf.com/htmlencoderegex/22
Jun
14
comment JavaScript/jQuery HTML Encoding
@SEoF you're right there's no reason to use regex here and in fact it's massively faster without the regex matching, so I have updated the code.
Jun
14
revised JavaScript/jQuery HTML Encoding
got rid of regex matching
Jun
11
comment Flask-WTF isn't processing my form response
if the form has action="GET" in the HTML then you have other problems getting the code above to work, see my answer
Jun
11
revised Flask-WTF isn't processing my form response
added 302 characters in body
Jun
11
answered Flask-WTF isn't processing my form response
Jun
10
revised Install pycairo in virtualenv
deleted 3 characters in body
Jun
10
answered Install pycairo in virtualenv