I updated my site to utilize html5 history and ajax recently. One of the challenges I faced was how to handle Gist embeds. Since they only consist of a single script tag it initially seemed like there wasn’t a lot to go on. Not to mention that it would trigger a document.write() … and that would naturally ruin my site if it were triggered dynamically.
After looking some more at this embed system I found out that the Gist embed also has a json version which gives you its HTML content and a link to a stylesheet that it must load. With this info, I made a small jQuery snippet that would replace all these script elements with the actual HTML from the Gist
Please do note that I used a function called add_stylesheet_once in the script displayed above. This is purely because I didn’t want the same stylesheet to embedded many, many times after navigating a few pages containing Gists.
Electric power companies, in general, are pretty much the same. Tibber however, is unlike any electricity company I had seen before. They try to utilise the data we get from smart devices, which they also sell, to save electricity, money and the environment, as well as improving comfort. It’s a…
Here is a guide for setting up SFTP users who's access is restricted to their home directory. Add the following to the end of the /etc/ssh/sshd_config file: Subsystem sftp internal-sftp # This section must be placed at the very end of sshd_config Match Group sftponly ChrootDirectory %h ForceCommand internal-sftp AllowTcpForwarding…
Here is a quick guide for downloading WordPress from the command line. In this case, I would be logged inn via SSH on my server, and ready to set up the site mydomain.com. The root folder for that domain will be at /var/www/mydomain.com/www/. Let's start by navigating to /var/www/mydomain.com cd…