Новый взгляд на скорость и безопасность web приложения: Erlang без OS
http://erlangonxen.org/
Краткое описание и линки:
http://habrahabr.ru/post/163755/
http://erlangonxen.org/
Краткое описание и линки:
http://habrahabr.ru/post/163755/
Выкладываю свои мысли, которые касаются программирования или смежных технологий. Главным образом для себя, чтоб не забывать, но, буду рад, если они помогут кому-то еще.
get_headers — Возвращает все заголовки из ответа сервера на HTTP-запрос.
yEd is a powerful desktop application that can be used to quickly and effectively generate high-quality diagrams. Create diagrams manually, or import your external data for analysis. Our automatic layout algorithms arrange even large data sets with just the press of a button.Добавил к своим инструментам.
$model = new PeopleModel(null);
$peoples = array();
$newArray = array();
foreach ($peoples as $people) {
$newArray[] = $model;
}
...
foreach($newArray as $a){
$a->
}
т.е. $a->makeFullName($model, $separator);
> 207 foreach ($Model->findAllByAttributes(array($_REQUEST['modelPropertyParentId']=>$_REQUEST['id'])) AS $k => $Model)На следующий код:
$criteria = new CDbCriteria();
$criteria->addCondition($_REQUEST['modelPropertyParentId']." = ".$_REQUEST['id']);
if (!$_REQUEST['id']) {
$criteria->addCondition($_REQUEST['modelPropertyParentId']." IS NULL", 'OR');
}
foreach ($Model->findAll($criteria) AS $k => $Model)
Which version do I choose?
If you are using PHP with Apache 1 or Apache2 from apache.org you need to use the VC6 versions of PHP
If you are using PHP with IIS you should use the VC9 versions of PHP
VC6 Versions are compiled with the legacy Visual Studio 6 compiler
VC9 Versions are compiled with the Visual Studio 2008 compiler and have improvements in performance and stability. The VC9 versions require you to have the Microsoft 2008 C++ Runtime (x86) or the Microsoft 2008 C++ Runtime (x64) installed
Do NOT use VC9 version with apache.org binaries
VC9 versions of Apache can be fetched at Apache Lounge. We use their binaries to build the Apache SAPIs.
Declaration of Class::someFunction() should be compatible with ParentClass::someFunction();
margin: 0; /* обнуляем внешние отступы */
padding: 0; /* обнуляем внутренние отступы */
ОшибкаИнтересно, это только мне так "везет"..?
К сожалению, сервер временно недоступен. Попробуйте повторить действие чуть позже.
<link href="css/style.css" type="text/css" rel="stylesheet"/>
class CTagCacheDependency extends CCacheDependency
{
public $tag;
public $cache;
public function __construct($tag=null, $cache=null)
{
$this->tag=$tag;
$this->cache=($cache)?$cache:Yii::app()->cache;
}
protected function generateDependentData()
{
if($this->tag!==null)
{
$t = $this->cache->get($this->tag);
if ($t === false) {
$t = time();
$this->cache->set($this->tag, $t);
}
return $t;
}
}
}
$this->cache(60, new CTagCacheDependency(get_class($this)));L. 2
Yii::app()->cache->set(get_class($this), time(), 0);L.3