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
<table> | |
{{#responseData.results}} | |
<tr> | |
<td> | |
<h4>{{{title}}}</h4> | |
<img src="{{image.tbUrl}}" style="float:left;padding-right:10px;" /> | |
{{{content}}} | |
</td> | |
</tr> | |
{{/responseData.results}} |
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
#! /bin/sh | |
# This script is based on projects below | |
# https://github.com/kolyvan/kxmovie | |
# https://github.com/yixia/FFmpeg-Android | |
# http://git.videolan.org/?p=vlc-ports/android.git;a=summary | |
# https://github.com/kewlbear/FFmpeg-iOS-build-script/ | |
#-------------------- | |
echo "====================" |
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 | |
@error_reporting(E_ALL); | |
@set_time_limit(0); | |
class ConvertFinglishToFarsi | |
{ | |
/** | |
* Default Options | |
*/ | |
public $useFarsiNumbers = false; //Replace English numbers with Persian numbers |
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 | |
function whois_query($domain) { | |
// fix the domain name: | |
$domain = strtolower(trim($domain)); | |
$domain = preg_replace('/^http:\/\//i', '', $domain); | |
$domain = preg_replace('/^www\./i', '', $domain); | |
$domain = explode('/', $domain); | |
$domain = trim($domain[0]); |