This Interests Me

Menu

Skip to content
  • About
  • Tips & Tricks
  • Interesting Articles
  • Code

Fix: Tainted canvases may not be exported.

The other day, I came across a frustrating CORS-related error while developing a Facebook Instant Game. This is a short post on how I fixed it.

Read More...
This article was posted in Code, Facebook, JavaScript, SEO / Webmaster, Tips & Tricks on December 8, 2018.

JavaScript: Add image to canvas.

This is a short guide on how to add an image to a canvas element using JavaScript.

Read More...
This article was posted in Code, JavaScript, SEO / Webmaster, Tips & Tricks on December 5, 2018.

JavaScript: How to get the day of the week.

In this guide, we show you how to get the day of the week using JavaScript. We also provide you with a custom function that you can copy.

Read More...
This article was posted in Code, JavaScript, SEO / Webmaster, Tips & Tricks on December 3, 2018.

Calculating the date of Easter with PHP.

This is a short PHP tutorial on how to calculate what date Easter falls on for a given year.

Read More...
This article was posted in Code, PHP Tutorials, Tips & Tricks on November 30, 2018.

How to create a ZIP file using PHP.

In this guide, I will show you how to create a ZIP file using PHP.

Read More...
This article was posted in Code, PHP Tutorials, SEO / Webmaster, Tips & Tricks on November 30, 2018.

PHP: Force PDF file to download.

This is a short guide on how to force a PDF file to download using PHP.

Read More...
This article was posted in Code, PHP Tutorials, SEO / Webmaster, Tips & Tricks on November 29, 2018.

Receiving XML via POST in PHP.

In this tutorial, I will show you how to receive an XML string via raw post data using PHP.

Read More...
This article was posted in Code, PHP Tutorials, Tips & Tricks on November 29, 2018.

JavaScript: Check if object property exists.

This is a short JavaScript tutorial on how to check if a given object property exists.

Read More...
This article was posted in Code, JavaScript, SEO / Webmaster, Tips & Tricks on November 29, 2018.

Check if a variable is a JavaScript object.

This is a short guide on how to check if a variable or value if an object using JavaScript.

Read More...
This article was posted in Code, JavaScript, SEO / Webmaster, Tips & Tricks on November 29, 2018.

Tutorial: Change a DIV’s text using JQuery.

This is a short tutorial on how to change the text of a DIV element using the JavaScript JQuery library.

Read More...
This article was posted in Code, JavaScript, SEO / Webmaster on November 28, 2018.

How to handle an array of PHP objects.

This is a short guide on how to work with a PHP array that contains objects.

Read More...
This article was posted in Code, PHP Tutorials, Tips & Tricks on November 28, 2018.

MyISAM locking explained.

The other day, some of our users reported that saving data had become extremely slow. In some cases, forms were taking up to 15 seconds to submit.

Read More...
This article was posted in MySQL, Sysadmin, Tips & Tricks on November 28, 2018.

Printing out JSON with PHP.

In this beginner’s tutorial, I will show you how to print out JSON using PHP and specify the correct Content-Type header.

Read More...
This article was posted in Code, JavaScript, PHP Tutorials, SEO / Webmaster, Tips & Tricks on November 28, 2018.

Fix: Unexpected token o in JSON.

A short guide that I wrote on fixing the dreaded “Unexpected token o in JSON” error.

Read More...
This article was posted in Code, JavaScript, PHP Tutorials, SEO / Webmaster, Tips & Tricks on November 28, 2018.

PHP: Following redirects with cURL.

This is a short guide on how to force PHP’s cURL functions to follow a HTTP redirect.

Read More...
This article was posted in Code, PHP Tutorials, Tips & Tricks on November 26, 2018.

Using PHP with Radio Buttons.

This is a beginner’s tutorial on how to use the Radio Button HTML element with PHP.

Read More...
This article was posted in Code, PHP Tutorials, SEO / Webmaster, Tips & Tricks on November 26, 2018.

PHP: Get visitor country via Cloudflare CF-IPCountry header.

This is a PHP tutorial on how to retrieve a visitor’s country code from Cloudflare’s CF-IPCountry header.

Read More...
This article was posted in Code, PHP Tutorials, Tips & Tricks on November 25, 2018.

PHP: Using cURL with Basic HTTP Authentication.

This is a short PHP tutorial on how to use cURL to make a Basic Access Authentication request.

Read More...
This article was posted in Code, PHP Tutorials, Tips & Tricks on November 25, 2018.

PHP: Get the correct IP address from a Cloudflare request.

This article shows you how to the get the user’s IP address from a Cloudflare request using PHP.

Read More...
This article was posted in Code, PHP Tutorials, Tips & Tricks on November 25, 2018.

Preventing X-Forwarded-For spoofing in HAProxy.

This is a guide on how to prevent IP spoofing with HAProxy.

Read More...
This article was posted in SEO / Webmaster, Sysadmin, Tips & Tricks on November 25, 2018.

Call a PHP function using JavaScript.

This is a common question amongst beginner developers. In this article, I clear up the confusion about it and offer an alternative solution.

Read More...
This article was posted in JavaScript, PHP Tutorials, Tips & Tricks on November 24, 2018.

How to tell if somebody has blocked you on Facebook.

This is a guide on how to tell if somebody has blocked you on Facebook. I wrote this guide because most of the other articles about this subject were pretty much useless.

Read More...
This article was posted in Facebook, Tips & Tricks on November 24, 2018.

PHP: Block POST requests.

In this guide, we show you how to block POST requests using PHP. We also show you which HTTP header you should return to the client.

Read More...
This article was posted in Code, PHP Tutorials on November 24, 2018.

Changing a select element option using JavaScript.

This is a short JavaScript tutorial on how to change the selected option of a select HTML element. In this post, I will show you how to do it with and without JQuery.

Read More...
This article was posted in Code, JavaScript, Tips & Tricks on November 23, 2018.

No, we do not serve the “Irish Car Bomb” drink in Ireland.

The other day, I saw someone asking whether the “Irish Car Bomb” drink is popular in Ireland.

Read More...
This article was posted in Ireland, Tips & Tricks on November 23, 2018.

PHP: Rounding a number up.

This is a beginners guide on how to round a decimal number up using PHP’s ceil function.

Read More...
This article was posted in Code, PHP Tutorials, Tips & Tricks on November 22, 2018.

The Facebook crawler DDOS.

Facebook’s crawler is an untamed beast and if you are not careful, it will cause you a lot of problems. Especially you use a lot of story images.

Read More...
This article was posted in Facebook, Sysadmin, Tips & Tricks on November 22, 2018.

PHP cURL: Fixing the “SSL certificate problem: unable to get local issuer certificate” error.

This is a common error that occurs whenever you attempt to use PHP’s cURL functions to connect to an HTTPS website.

Read More...
This article was posted in Code, PHP Tutorials, Tips & Tricks on November 22, 2018.

Renaming a file with the Linux command line.

This is a short beginners guide on how to rename a file using the Linux command line.

Read More...
This article was posted in Linux, Sysadmin, Tips & Tricks on November 20, 2018.

PHP tutorial: Converting images into Base 64.

This is a short PHP tutorial on how to convert an image file into Base 64 before displaying it.

Read More...
This article was posted in Code, PHP Tutorials, Tips & Tricks on November 16, 2018.

Logging to a file with PHP.

This is a short guide on how to log text to a file using PHP.

Read More...
This article was posted in Code, PHP Tutorials, SEO / Webmaster, Tips & Tricks on November 15, 2018.

Speeding up HAProxy SSL with multiple CPU processes.

This is a guide on how to speed up SSL on HAProxy. In this post, I will show you how to dedicate specific CPU processes to HTTP and HTTPS traffic.

Read More...
This article was posted in SEO / Webmaster, Sysadmin, Tips & Tricks on November 14, 2018.

Adding and modifying cookie values in Chrome Developer Tools.

A short guide showing you how to add and modify cookie values using Chrome’s Developer Tools feature.

Read More...
This article was posted in SEO / Webmaster, Tips & Tricks on November 13, 2018.

Get request headers with PHP.

A short tutorial on how to get a client’s request headers using PHP.

Read More...
This article was posted in Code, PHP Tutorials, SEO / Webmaster on November 13, 2018.

Load image as BLOB using JQuery.

A short tutorial on how to load images as BLOB data using the JQuery JavaScript library.

Read More...
This article was posted in Code, JavaScript, SEO / Webmaster on November 13, 2018.

Post navigation

← Older posts
Newer posts →

Search

Recent Articles

  • Why the police withhold evidence from the public.
  • Dr. Peter Hackett isn’t a good LISK suspect.
  • Gilgo Case: LISK and the burner phones.
  • HTTPS is invalid and might prevent it from being indexed.
  • Louise Bundy: Ted Bundy’s mother.
  • Johnnie Culpepper Bundy: Ted Bundy’s stepfather.
  • Bebo nostalgia: Old screenshots and images.
  • Shannan Gilbert was not a LISK victim

Categories

  • Cars
  • Code
  • DIY
  • Facebook
  • Fantasy Football
  • Football
  • Gaming
  • Gardening
  • Instagram
  • Interesting Articles
  • Ireland
  • JavaScript
  • Linux
  • MySQL
  • Nginx
  • Nostalgia
  • Opinion
  • PHP Tutorials
  • Politics
  • Resident Evil 2 Remake
  • SEO / Webmaster
  • Serial Killers
  • Slang
  • Snapchat
  • Stocks
  • Sysadmin
  • The Sopranos
  • TikTok
  • Tips & Tricks
  • Uncategorized

Toolbox
Privacy Policy

© 2013-2025 ThisInterestsMe.com