Here you can find all kinds of random stuff and information

Free music

Filed under: Geen categorie — Tags: — Noppes @ februari 14th 2012 22:40

Jamendo
Overclocked Remix

svn windows

Filed under: Programming — Tags: — Noppes @ december 20th 2011 12:51

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

Filed under: Tools — Tags:, — Noppes @ september 1st 2011 09:20

MailBlaster

Drupal modules

Filed under: Geen categorie — Tags:, — Noppes @ augustus 24th 2011 09:42

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

Filed under: Geen categorie — Tags: — Noppes @ augustus 23rd 2011 13:16

Template/themes info:
http://www.magentocommerce.com/design_guide/articles/working-with-magento-themes

http://www.magentocommerce.com/wiki/4_-_themes_and_template_customization/0_-_theming_in_magento/designing-for-magento

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.

Filed under: Geen categorie — Tags:, , , — Noppes @ juni 22nd 2011 14:49

This will center your content both horizontal as vertical.
(meer…) «Ccs center horizontal and vertical.»

Zend Misc Code

Filed under: Geen categorie — Tags:, , , — Noppes @ juni 15th 2011 16:30

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

Filed under: Geen categorie — Tags:, , , — Noppes @ mei 17th 2011 16:51

Generate an thumbnail from a given file. The file has to be a jpg,png or gif
(meer…) «php thumbnail generation»

audio/video software

Filed under: Tools — Tags:, — Noppes @ mei 14th 2011 14:55

audio:
- cubase 5
- pro tools
video:
- Sony vegas pro
- adobe after effects
- CyberLink PowerDirector

php simple string calculations

Filed under: Geen categorie — Tags:, , — Noppes @ mei 11th 2011 11:44

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  

Older Posts »