This XKCD strip explains what essentially Meltdown vulnerability which affects Intel microprocessor
Get Free PHP and MySQL Hosting with InfinityFree
For those who are seeking free web hosting to test their PHP / MySQL application can look into InfinityFree.net service which has interesting offers:
- 99% uptime
- No advertisement
- PHP 7.0
- MySQL 5.6
- Includes FTP account access (rare !!)
- Up to 10 Email Account
- Apache 2.4 with .htaccess
- 400 MySQL database
- User can add their own domain
- Free DNS service (including custom CNAME and MX record)
- Unlimited Disk space and Bandwidth
- Support Cloudflare CDN
- Support SSL Certificate
The main advantages which entice me to InfinityFree are their support for SSL Certificate, 99% uptime guarantees and support for adding own domain name with their own free DNS.
The support for SSL certificate means that you can host Telegram Bot, Google Map web application and web app which utilizes OAuth API!
A rare sight for a completely free web hosting provider.
The only downside for InfinityFree is the free hosting only support up to 50,000 hits on the web server, which is fair by me as the free hosting could provide a good playground for Students and Web App Enthusiast to experiment with their code.
How to export SQLite3 database to *.sql file
How to analyze 404 HTTP code from weblogs
The dreaded 404 HTTP code means page not found. However multiple 403 and 404 on weblogs also can also mean there are attempts to crack the website.
The awk script down here can be useful tool to analyze weblogs and identify multiple attempts at cracking the web application.
awk '($9 ~ /404/)' access.log | awk '{print $7}' | sort | uniq -c | sort -n
The script can also be tweaked for other HTTP status code too.
Get Free cronjob from Cron-Job.org!
Cronjob or CRON is an important tool to perform automated / schedule task for web application.
Some shared hosting company may limit (or completely disable) the cron service functionality leading to some web application unable to perform periodic / automated task.
Luckily there’s website such as Cron-Job.org which offers free cron-job to those who aren’t able to obtain one.
The best thing about Cron-Job.org service, is they allow minute-by-minute cronjob execution for free!
Bonus: The folks at Cron-Job also releases the source code behind the service at GitHub!
Check your public ip upgraded with JSON format (checkip.mypapit.net)
The previously featured checkip.mypapit.net has been upgrade to JSON. You just need to add /json parameter to get ip address and country code in json format.
http://checkip.mypapit.net/json/
Check http://checkip.mypapit.net/json/ now
As always you can also access the website using ‘cURL’, ‘wget’ or any programming language which supports .json.