Saturday, March 10, 2012

Selecta - Superb Drupal theme




Selecta for Drupal by More than (just) Themes is based on the WordPress' Selecta theme, which was designed by Obox design.
Selecta has been ported to Drupal and is supported by More than (just) Themes, as part of our ongoing effort to bring quality themes to Drupal.

Thursday, February 16, 2012

Chique, our 6th and the most beautiful premium Drupal theme just released.


CHIQUE

SPICE UP YOUR ONLINE PRESENCE
WITH UNLIMITED OPTIONS.

With multiple color schemes and typographic styles, unparalleled automations and unmatched ease of use.


Wednesday, February 1, 2012

Shell script to backup all of your SVN repositoriesShell script to backup all of your SVN repositories



The script does very basic backup job. Here are the tasks done by this backup script:
  • svnrepos - absolute path of SVN repository root (where all the svn repos are created)
  • bakdest - absolute path of directory where you would like to save all SVN dumps
  • baktousb - absolute path of additional folder path to copy SVN dump (could be connected USB drive)
Read the original article

Saturday, December 10, 2011

Where is crontab located?


User crontabs are usually in /var/spool/cron/


System jobs are usually in /etc/ under cron.d cron.hourly cron.daily cron.weekly depending on the schedule.

Wednesday, November 9, 2011

CSS position:relative + position:absolute

If we set relative positioning on div-1, any elements within div-1 will be positioned relative to div-1. Then if we set absolute positioning on div-1a, we can move it to the top right of div-1:

#div-1 { 
 position:relative; 

#div-1a { 
 position:absolute;
 top:0;
 right:0;
 width:200px; 
}

Read more at "Learn CSS Positioning in Ten Steps" tutorial

Tuesday, November 8, 2011

Cannot load 32-bit SWT libraries on 64-bit JVM

This usually is happened when launching a 32-bit SWT application on MacOS. The solution lives on the SWT official FAQs
You need to be sure that you are forcing your launch to use a 32-bit VM. Apple ships most of their VMs with 32 and 64-bit binaries. To force the VM to run in 32-bit mode, use the -d32 option as VM argument in your launch configuration. Note that as of Snow Leopard (OS X v10.6) the default VM is 64-bit.