понедельник, 1 июля 2013 г.

JD-GUI

JD-GUI

JD-GUI is a standalone graphical utility that displays Java source codes of “.class” files. You can browse the reconstructed source code with the JD-GUI for instant access to methods and fields.

JD-GUI is free for non-commercial use. This means that JD-GUI shall not be included or embedded into commercial software products. Nevertheless, this project may be freely used for personal needs in a commercial or non-commercial environments.

http://java.decompiler.free.fr/?q=jdgui

понедельник, 15 апреля 2013 г.

среда, 27 марта 2013 г.

Yii: MVC PHP framework

Yii (произносится как «Yee» или [ji:]) — веб-каркас, написанный на PHP, и реализующий парадигму MVC.[1] Yii — сокращение от «Yes It Is!»
http://ru.wikipedia.org/wiki/Yii

http://habrahabr.ru/hub/yii/
http://yiiframework.ru/
http://workmake.ru/veb-razrabotka/freymvorki/obzor-freymvorka-yii-nachinaem-razbiratsya-chto-i-kak-rabotaet/

Kohana: The Swift PHP Framework

Kohana, ранее Blue Flame, это PHP5 веб-фреймворк с открытым кодом, который использует архитектурную модель HMVC (Hierarchical Model View Controller — Иерархические Модель-Контроллер-Вид). Его цели — быть безопасным, легким и простым в использовании[3].

http://ru.wikipedia.org/wiki/Kohana
http://habrahabr.ru/hub/kohanaphp/
Знакомство с Kohana 3.0 — Часть 1 и далее
http://kohanaframework.su/
http://vk.com/kohanahmvc

среда, 6 февраля 2013 г.

Ограничение времени соединения через file-get-contents

Ограничение времени соединения через file-get-contents

ini_set('default_socket_timeout',    120);


http://php.net/manual/en/function.file-get-contents.php
http://stackoverflow.com/questions/10189232/file-get-contents-timeout

суббота, 12 января 2013 г.

perl+SQL

http://citforum.ru/database/mysql/intro/

Введение в MySQL (используя Perl DBI)


use DBI;

my $dsn = 'DBI:mysql:my_database:localhost';
my $db_user_name = 'admin';
my $db_password = 'secret';
my ($id, $password);
my $dbh = DBI->connect($dsn, $db_user_name, $db_password);

my $sth = $dbh->prepare(qq{select id, password from users where nickname = $input_nickname});
$sth->execute();

-обработка-

my (@matrix) = ();
while (my @ary = $sth->fetchrow_array())
{
    push(@matrix, [@ary]);  # [@ary] это ссылка
}
$sth->finish();



$dbh->disconnect();