Jump to content



Latest News: (loading..)

Harald Ponce de Leon

Member Since 31 Aug 2002
OFFLINE Last Active Yesterday, 08:46 PM
*****

Topics I've Started

MOTM Nominations for June

23 May 2013 - 02:25 PM

Member of the Month nominations are now open for June!

Please submit your (private) nominations in the following forum channel:

http://forums.oscommerce.com/forum/96-member-of-the-month-june/

Open for Submissions - 30 Day Challenge!

22 May 2013 - 01:36 PM

OSCOMMERCE.TV is now open for submissions with a 30 day challenge to build a collection of video tutorials and screencasts for the official announcement on 21st June 2013.


Forum Rules Update (10th May, 2013)

10 May 2013 - 04:20 PM

Hi All..

The forum rules have been updated to reflect recent events and to allow us to better handle legal situations should they happen to occur again in the future. Here is the abstract that has been added to the rules:

Quote

B. Legal Disputes
  • Legal disputes brought against osCommerce will involve the suspension of the accounts involved to protect the parties involved.
  • Legal disputes between users in the community may involve the suspension of the accounts involved to protect the parties involved as well as the community in whole.
Disputes that have been filed and documented with a legal entity can be forwarded to legal@oscommerce.com. Please note that osCommerce is not in a position to mediate legal disputes between users but will act accordingly in the best interest of the community to protect its members.

Git Applications (PC and Mac)

20 March 2013 - 01:27 PM

Hi All..

Being the best programmer in the world, I use the hardcore git command line tool to manage code changes with git repositories. As I have quite a few repositories and branches, I also use Tower (for Mac) to give me a better and visual overview of modified files.

http://www.git-tower.com (commercial product)

I have also worked with the official Github for Windows application however found the experience horrible in working with multiple repositories and branches.

http://windows.github.com (free product)

SourceTree is a new Windows (and Mac) application that provides a better experience than Github for Windows.

http://www.sourcetreeapp.com (free product)

It's currently in beta for Windows - if you give it a try, reply below with your experience with it.

Less mixins (with Bootstrap)

28 February 2013 - 08:40 PM

Anyone know how to add specific css ruleset into another? Example:

.one {
  font-weight: bold;
}

.two {
  .one;
}

That would copy the properties of .one into .two, however I would like to do something like:

.two {
  .badge .badge-success;
}

that would copy the properties of Bootstrap's success badge into .two.

Any ideas?