Vasiliy Selivanov

  • RSS

Google 10th Birthday

Posted on Thursday, September 25th, 2008

New google page www.google.com/tenthbirthday/ On this page you could find Google Timeline. Some facts : When Larry met Sergey  – Summer 1995 Google in 10 languages – 9 May 2000 Search index: 1 billion pages – 26 June 2000 Google Image Search – 28 July 2001 Google Chrome browser – 1 September 2008 Project 10100 [...]

continue reading

Edit bitmap properties for selected bitmaps in library

Posted on Monday, September 8th, 2008

its Flash CS3: “Edit Selected Bitmaps”-Panel. thanks to Hannes Moser. Download it impossiblearts.com/blog/2008/06/16/flash-cs3-edit-selected-bitmaps-panel/   Bookmark on Delicious Digg this post Recommend on Facebook share via Reddit Share with Stumblers Tweet about it Subscribe to the comments on this post

continue reading

Adobe AIR for Linux Beta

Posted on Tuesday, September 16th, 2008

Supported Linux Distributions Fedora Core 8 Ubuntu 7.10 Open Suse 10.3 Bookmark on Delicious Digg this post Recommend on Facebook share via Reddit Share with Stumblers Tweet about it Subscribe to the comments on this post

continue reading

Archive for the ‘php’ Category

How to make (sort) gallery/post votings (likes) with Facebook

Tuesday, March 29th, 2011

I will tell you have to make sorting of photos/posts/links via facebook.

For example you have photo gallery where users could “vote”  (like) for each photo. And you need to make sorting of photos by popularity with Facebook.

So you have, for example, 10 photos with urls:
http://yoursite.com/photo/1, 
http://yoursite.com/photo/2,
..,
http://yoursite.com/photo/10
what users could “like”. And you have pagination of 3 photos per page. So lets start.

(more…)

symfony ahDoctrineEasyEmbeddedRelations plugin, IE and Compatibility View Mode

Friday, March 18th, 2011

I have found interesting bug with symfony ahDoctrineEasyEmbeddedRelations plugin when you use IE Compatibility View Mode. Always save only 2 instance and never more. So lets find why it is happen.

(more…)

new symfony site

Thursday, March 10th, 2011

http://symfony.com/

… waiting for 2.0 ;)

Zend Framework 1.7.2

Wednesday, December 24th, 2008

Zend Framework 1.7.2 is released.

changes, download

 

 

phpMyAdmin 3.0.0

Wednesday, September 17th, 2008

online demo : pma.cihar.com/STABLE/

(more…)

PHP 5.3 alpha1 released!

Friday, August 1st, 2008

The PHP development team is proud to announce the first alpha release (Windows binaries will appear in the next few days) of the upcoming minor version update of PHP. The new version PHP 5.3 is expected to improve stability and performance as well as add new language syntax and extensions. Several new features have already been documented in the official documentation, others are listed on the wiki in preparation of getting documented. Please also review the NEWS file.

THIS IS A DEVELEOPMENT PREVIEW – DO NOT USE IT IN PRODUCTION!

The purpose of this alpha release is to encourage users to not only actively participate in identifying bugs, but also in ensuring that all new features or necessary backwards compatibility breaks are noted in the documentation. Please report any findings to the QA mailinglist or the bug tracker.

There have been a great number of other additions and improvements, but here is a short overview of the most important changes:

Several under the hood changes also require in depth testing with existing applications to ensure that any backwards compatibility breaks are minimized. This is especially important for users that require the undocumented Zend engine multibyte support.

The current release plan states that there will be alpha/beta/RC releases in 2-3 week intervals with an expected stable release of PHP 5.3 between mid September and mid October of 2008.

 

from www.php.net

Zend Framework 1.6 Release Candidate 1 now available!

Wednesday, July 23rd, 2008

An overview of new features:

  • Dojo Integration
    • JSON-RPC
    • Dojo Data packing
    • Dojo View Helper
    • Dijit integration with Zend_Form & Zend_View
    • Dojo Library Distribution
  • SOAP
    • SOAP Server
    • SOAP Client
    • Autodiscovery
    • WSDL access
    • WSDL Generation
  • Preview of Tooling Project in Laboratory (see /laboratory folder)
    • Command Line Interface
    • Project Asset Management
  • Unit Testing Harness for Controllers
  • Lucene 2.3 Index File Format Support
  • Zend_Session save handler for Database Tables
  • Paginator Component
  • Text/Figlet Support
  • ReCaptcha Service
  • Zend_Config_Xml Attribute Support
  • Character Set Option for DB Adapters
  • Zend File Transfer Component
  • New Media View Helpers (Flash, Quicktime, Object, and Page)
  • Support in Zend_Translate for INI File Format

(more…)

Reinhold Weber – 40 Tips for optimizing your php code

Friday, April 4th, 2008

  1. If a method can be static, declare it static. Speed improvement is by a factor of 4.
  2. echo is faster than print.
  3. Use echo’s multiple parameters instead of string concatenation.
  4. Set the maxvalue for your for-loops before and not in the loop.
  5. Unset your variables to free memory, especially large arrays.
  6. Avoid magic like __get, __set, __autoload
  7. require_once() is expensive
  8. Use full paths in includes and requires, less time spent on resolving the OS paths.
  9. If you need to find out the time when the script started executing, $_SERVER[’REQUEST_TIME’] is preferred to time()
  10. See if you can use strncasecmp, strpbrk and stripos instead of regex
  11. (more…)