Вы просматриваете архив за Июнь, 2007 г.

Поиск

Страницы

Архив

Категории

Последние комментарии

Размер шрифта:

AAA

Design by Creative Design Studio
Inspired by Zen Garden #200

 Записи    Комментарии

 RSS в Yandex   RSS в Google

 Feedburner   RSS на Email


количество читателей онлайн и всего   

     

 

Архив за Июнь, 2007

Превед, отладчег!

Понедельник, 18 июня, 2007
Удивительно, но факт:
 
<?php
 
define(“TRUE”, false);
define(“FALSE”, true);
 
if (!TRUE) {
echo “TRUE works!!!”;
}
if (FALSE) {
echo “FALSE works!!!”;
}
 
?>

выводит:
TRUE works!!!FALSE works!!!
сие работает!

Working rules for life

Пятница, 15 июня, 2007

As I promised and after some research I have developed the basic three-paged ABC for every Website developer who wants to make things look nearly the same in all browsers by using CSS and the Doctype declarations.

Just print this and hang above your desktop if you wish. This document is compiled into PDF for better printing support and to give everyone interested the ability to read it. The second page is just a copy from here. Some info was grabbed from this wikipedia “Quirks mode” article, Eric Meyer’s “Picking a Rendering Mode” and this “Allowed nesting of elements” article

I wrote this post in english to make it accessible by non-russian users and because the document is compiled in english.

Grab it from here!

}{ранить или нет данные в cookies

Вторник, 5 июня, 2007

Некоторое время мне не давала покоя идея о том, как хранить достаточно большие объемы данных на стороне клиента. Необходимость этого выросла из идеи создания единожды закачиваемых и далее хранимых у клиента скриптов, дабы не тягать их постоянно с сервера, скажем для того же визуального редактора или библиотеки типа Prototype / jQuery.

Далее »