Free music
svn windows
Running svnserve as a service
sc create svnserve binPath= "\"C:\Program Files\TortoiseSVN\bin\svnserve.exe\" --service --root c:\svnrepos" DisplayName= "Subversion" depend= tcpip start= auto
Send mass mails
MailBlaster
Drupal modules
Redirect plugin:
http://drupal.org/project/redirect
Used to redirect 404 pages or any other url to an internal or external page
Views:
http://drupal.org/project/views
depends on: http://drupal.org/project/ctools
Easily create pages and blocks for pagetypes
reCaptcha:
http://drupal.org/project/recaptcha
depends on: http://drupal.org/project/captcha
Prevent automated spam
Gallery formatter:
http://drupal.org/project/galleryformatter
Nice modules for image galleries. Goto your page type and change the display settings of your image field to jQuery Gallery after installing
404 navigation:
http://drupal.org/project/navigation404
Not really a must have, but when you go to a 404 page drupal disables the menu this enables it.
Login destination:
http://drupal.org/project/login_destination
Makes it possible to specify the location of the redirect after login.
Magento
Template/themes info:
http://www.magentocommerce.com/design_guide/articles/working-with-magento-themes
Extensions/modules:
Featured products http://connect20.magentocommerce.com/community/Inchoo_FeaturedProducts
Dutch language pack http://connect20.magentocommerce.com/community/dutch_NL
Ccs center horizontal and vertical.
This will center your content both horizontal as vertical.
(meer…) «Ccs center horizontal and vertical.»
Zend Misc Code
Get controller anywhere
Zend_Controller_Front::getInstance()->getRequest()->getControllerName();
throw a 404
throw new Zend_Controller_Action_Exception('This page doesnt exist',404);
php thumbnail generation
Generate an thumbnail from a given file. The file has to be a jpg,png or gif
(meer…) «php thumbnail generation»
audio/video software
audio:
- cubase 5
- pro tools
video:
- Sony vegas pro
- adobe after effects
- CyberLink PowerDirector
php simple string calculations
This function is for calculating a given calculation in a string. e.g. (1+1)*(2+2)
‘Borrowed’ from http://www.website55.com/php-mysql/2010/04/how-to-calculate-strings-with-php.html
function calculate_string( $mathString ) {
$mathString = trim($mathString); // trim white spaces
$mathString = ereg_replace ('[^0-9\+-\*\/\(\) ]', '', $mathString); // remove any non-numbers chars; exception for math operators
$compute = create_function("", "return (" . $mathString . ");" );
return 0 + $compute();
}
$string = " (1 + 1) * (2 + 2)";
echo calculate_string($string); // outputs 8