Skip to content

Instantly share code, notes, and snippets.

View ay4t's full-sized avatar
🏠
Working from home

Ayatulloh Ahad R ay4t

🏠
Working from home
View GitHub Profile
@joseluisq
joseluisq / README.md
Last active March 4, 2025 07:27
Install PHP 7 Xdebug in Arch Linux

Install PHP 7 Xdebug in Arch Linux

"Normally", these instructions should be also valid (in similar way) for other Linux distros.

1.- Install Xdebug using pacman:

sudo pacman -Sy xdebug
@BlakeMesdag
BlakeMesdag / jquery-loader.js
Created November 4, 2012 23:56
Script to Inject a jQuery loader using ScriptTags for Shopify
(function () {
function loadScript(url, callback) {
var script = document.createElement("script")
script.type = "text/javascript";
if (script.readyState) { //IE
script.onreadystatechange = function () {
if (script.readyState == "loaded" || script.readyState == "complete") {
script.onreadystatechange = null;