Skip to content

Instantly share code, notes, and snippets.

View irazasyed's full-sized avatar
🎯
WIP

Irfaq Syed irazasyed

🎯
WIP
View GitHub Profile
@irazasyed
irazasyed / laravel-version.php
Last active October 10, 2017 08:16
PHP: Check if Laravel version is 4 in Service Provider. To be used in Service Providers.
<?php
/**
* Laravel Version Check
*
* @return bool
*/
private function isLaravel4()
{
return version_compare(get_class($this->app) . '::VERSION', '5', '<');
@irazasyed
irazasyed / manage-etc-hosts.sh
Created March 7, 2015 09:16
Bash Script to Manage /etc/hosts file for adding/removing hostnames.
#!/bin/sh
# PATH TO YOUR HOSTS FILE
ETC_HOSTS=/etc/hosts
# DEFAULT IP FOR HOSTNAME
IP="127.0.0.1"
# Hostname to add/remove.
HOSTNAME=$1
@irazasyed
irazasyed / block-robots.php
Created February 12, 2015 13:14
PHP: Block Robots using Headers in PHP.
<?php
@header('X-Robots-Tag: "none, noindex, nofollow, noarchive, nosnippet, noodp, notranslate, noimageindex"');
#!/bin/sh
# genssl.sh - Generates all required certificate files in one go. Written in
# 2014 by Patrick "Argure" Godschalk <[email protected]>.
#
# To the extent possible under law, the author has dedicated all copyright and
# related and neighbouring rights to this software to the public domain
# worldwide. This software is distributed without any warranty.
#
# You may view the CC0 Public Domain Dedication at
@irazasyed
irazasyed / cf-ip-ranges-updater.sh
Created September 14, 2014 14:27
CloudFlare IP Ranges Autoupdater - Via: http://git.io/RsbwaQ
#!/bin/sh
# (The MIT License)
#
# Copyright (c) 2013 M.S. Babaei
#
# Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to deal
# in the Software without restriction, including without limitation the rights
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
@irazasyed
irazasyed / str-helper.php
Created August 12, 2014 19:01
PHP: Wildcard String Match Checker - Laravel 4
<?php
/**
* Ported from Laravel 4 for external usage.
*/
function is($pattern, $value) {
if ($pattern == $value) return true;
$pattern = preg_quote($pattern, '#');
@irazasyed
irazasyed / adblocker-detecting-scripts.md
Created July 21, 2014 16:47
AdBlocker Detecting Script - Mirror

Method 1: You can check for the existence of window.google_jobrunner after the page has finished loading. We are using setTimeout to take care of asynchronous Google AdSense that may not load immediately.

<script>
  window.onload = function() {
    setTimeout(function() {
      if ( typeof(window.google_jobrunner) === "undefined" ) {
        console.log("ad blocker installed");
      } else {
@irazasyed
irazasyed / www-redirect.conf
Created June 12, 2014 21:17
NginX: Redirect WWW to non-WWW URL.
server {
listen 80;
listen 443 ssl;
server_name www.domain.tld;
return 301 $scheme://domain.tld$request_uri;
}

This is my script for handling unsolicited sales calls. I can tell by the caller id as they usually come in on our second (unpublished) phone number.

Tips

  • _for best effect… leave off ‘Thank’ to make it sound like the tape already started…

The Script

Thank you for calling Planet Argon. If you know your party’s extension, please say or enter it followed by the pound key.

@irazasyed
irazasyed / shortcode-parser.php
Created May 23, 2014 00:16
PHP: Dynamic Shortcode Tag Parser.
<?php
/**
* Dynamic Shortcode Tag Parser.
* Replaces Shortcode Tag with Tag Matching $_GET Param Value.
*
* @author Syed I.R <https://github.com/irazasyed>
* @copyright Syed I.R 2014
*
* @param string $str String with Shortcode Tags. Ex: [name]