Советы по увеличению производительности Python скриптов (python optimization tune speed)
вторник, 17 декабря 2013 г.
понедельник, 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
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
пятница, 28 июня 2013 г.
пятница, 19 апреля 2013 г.
понедельник, 15 апреля 2013 г.
Snoopy
Snoopy is a PHP class that simulates a web browser. It automates the task of retrieving web page content and posting forms, for example.http://sourceforge.net/projects/snoopy/
среда, 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/
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
http://ru.wikipedia.org/wiki/Kohana
http://habrahabr.ru/hub/kohanaphp/
Знакомство с Kohana 3.0 — Часть 1 и далее
http://kohanaframework.su/
http://vk.com/kohanahmvc
среда, 13 февраля 2013 г.
среда, 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
вторник, 15 января 2013 г.
понедельник, 14 января 2013 г.
суббота, 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();
Введение в 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();
Подписаться на:
Сообщения (Atom)