Posts by localhost • 331 points
5 posts
-
1
votes1
answer22
viewsA: Strange behavior
Status Updates May Be Asynchronous If you want to ensure that filterTasks run after the setState, need to use the setState callback: toggleFilter = () => { this.setState({ showDoneTasks:…
-
4
votes1
answer747
viewsA: Why does Codeigniter do so well in benchmarks even if it doesn’t follow the language standards?
Codeigniter is not and has never been "a framework junk". He is simply from a time when "language patterns" was the last thing a PHP developer had in mind. Codeigniter is faster by having fewer…
-
8
votes1
answer1589
views -
3
votes2
answers1172
viewsA: Block unwanted AJAX calls
start running the URL non-stop, making the site vulnerable Your site is either vulnerable or has not yet identified any vulnerability, and more hits do not create vulnerabilities. Ddos attacks…
-
4
votes5
answers7447
viewsA: How to prevent spam in contact forms without using CAPTCHA?
There is only one way to prevent spam correctly, and it is by filtering through the backend. Hidden fields and other "creative" ways only serve to prevent old and/or simple bots. If Voce is so…