Skip to content

Instantly share code, notes, and snippets.

@evheniy
evheniy / currency_symbols.php
Created March 10, 2017 10:25 — forked from gibbs/currency_symbols.php
An array of currency symbols as HTML entities
<?php
$currency_symbols = array(
'AED' => '&#1583;.&#1573;', // ?
'AFN' => '&#65;&#102;',
'ALL' => '&#76;&#101;&#107;',
'AMD' => '',
'ANG' => '&#402;',
'AOA' => '&#75;&#122;', // ?
'ARS' => '&#36;',
'AUD' => '&#36;',
(function(){
d=new Image(1,1);
d.onload=function(){d.onload=null;d.onerror=null;console.log('done');delete d;};
d.onerror=function(){d.onload=null;d.onerror=null;console.log('error');delete d;};
d.src='http://img.makedev.org/bundles/workdefault/images/icon-google-play.png?time='+new Date().getTime();
}());
<meta charset="UTF-8">
<meta name="keywords" content="Ваши, теги">
<meta name="description" content="150 символов">
<meta name="subject" content="Описание Вашего сайта / страницы">
<meta name="copyright" content="Имя компании">
<meta name="language" content="ru">
<meta name="robots" content="index,follow">
<meta name="revised" content="Воскресенье, 18-е Июля, 2015, 17:15">
<meta name="abstract" content="">
<meta name="topic" content="">

Copied from http://code.lancepollard.com/complete-list-of-html-meta-tags/

Basic HTML Meta Tags

<meta charset='UTF-8'>
<meta name='keywords' content='your, tags'>
<meta name='description' content='150 words'>
<meta name='subject' content='your website's subject'>
<meta name='copyright' content='company name'>
@evheniy
evheniy / build.xml
Created January 6, 2014 18:04 — forked from vdubyna/build.xml
<?xml version="1.0" encoding="UTF-8"?>
<project name="Application" default="build" basedir="../">
<target name="build" depends="prepare,phpunit,phpmd,phpcpd,phpdoc,phpcb,phpdcd,phploc,phpcs"/>
<property name="applicationDir" value="${basedir}/source" />
<property name="buildDir" value="${basedir}/build" />
<target name="prepare">
<mkdir dir="${buildDir}/logs" />