This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0"?> | |
<rss xmlns:g="http://base.google.com/ns/1.0" version="2.0"> | |
<channel> | |
<title>Example - Online Store</title> | |
<link>http://www.example.com</link> | |
<description>This is a sample feed containing the required and recommended attributes for a variety of different products</description> | |
<!-- First example shows what attributes are required and recommended for items that are not in the apparel category --> | |
<item> | |
<!-- The following attributes are always required --> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/*############################# | |
* Developer: Mohammad Sharaf Ali | |
* Designation: Web Developer | |
* Version: 1.0 | |
*/############################# | |
// SETTINGS | |
ini_set('max_execution_time', 0); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function get_currency_symbol($currency = '') | |
{ | |
$symbols = array( | |
'AED' => 'د.إ', // ? | |
'AFN' => 'Af', | |
'ALL' => 'Lek', | |
'AMD' => '֏', | |
'ANG' => 'ƒ', | |
'AOA' => 'Kz', // ? | |
'ARS' => '$', |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<div class="container-fluid trustpilot-widget"> | |
<div class="row"> | |
<div class="col-md-2"> | |
<div class="wrapper-left"> | |
<h3 class="title">Excellent</h3> | |
<div class="rating"> | |
<img src="https://images-static.trustpilot.com/supportcenter/Trustpilot_ratings_5star-RGB.png" class="img-responsive"> | |
</div> | |
<div class="info"> | |
Based on <a href="#" class="review-count">226 reviews</a> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ==UserScript== | |
// @name Disable Netflix Instant Watch Links | |
// @namespace https://gist.github.com/6349351 | |
// @description Click the cover image, go the video detail page, simple... | |
// @version 1.1 | |
// @author Jeremy Helms <[email protected]> | |
// @include http://www.netflix.com/* | |
// @exclude http://www.netflix.com/WiPlayer/* | |
// ==/UserScript== |