mint

Website Analytics - haveamint.com or Google Analytics?

Is there a comparative analysis available for Mint and Google Analytics which can help me decide which one to implement in my situation? ...

Storing encrypted passwords

My coworker and I are having a fist-fight civilized discussion over password security. Please help us resolve our differences. One of us takes the viewpoint that: Storing passwords encrypted using a public key in addition to a one-way hashed version is OK and might be useful for integration with other authentication systems in the fut...

How to create installer for linux mint

Hi I have created rpm for my software which works fine for fedora. But this fails whenever I want to install the same in linux mint. because linux mint supprts .deb file for installation. So I want to create installer package for my software which will be compatible in linux mint. Thanks Sunil Kumar Sahoo ...

How to create Menu in linux mint

Hi I am using linux mint OS. I want to create my own menu (eg like Internet). How to create menu? Thanks Sunil Kumar Sahoo ...

java.util.Random peculiarity

So here is one of the simplest things one might do: Random rng = new Random(); int a = rng.nextInt(10); int b = rng.nextInt(10); So far so good. But we want to avoid having equal a and b, so naturally we do: Random rng = new Random(); int a = rng.nextInt(10); int b = rng.nextInt(10); while (a == b){ b = rng.nextInt(10); } However...

Is it possible to use php includes to integrate Mint (haveamint.com) into my CMS?

I am currently running a custom CakePHP CMS and I would like to have a .php page which will basically use php includes for Mint from haveamint.com which is also written in PHP. Can I use php include to basically do a nicer version of an iframe inside my cms? ...

Mint.com back-end, how does it work?

Mint.com connects to your bank account, credit card account, etc, and downloads your data. How do they do that? Do they need any special authorization from the banks or it's an open API? How about security? Can you please explain their back-end system? ...