Some useful Git commands

Hi friends, Today I would like to share you a list of Git commands that I consider really useful when we work with this great version control  system. Enjoy it! Configuring your Git // Disable autocrlf to avoid warnings in command line git config –global core.autocrlf false // Set username and email (global) git config…

How to check SHA1 digest in Mac OS X

Hi! Today, I just want to share you an easy way to check the SHA1 digest using a the terminal in Mac OSX. This command is really useful when you need to know if any file -for example an ISO- was downloaded correctly. Step 1. Open a terminal. Step 2. Type next command and wait…

CakePHP Database connection “Mysql” is missing, or could not be created in CakePHP Console SOLVED

Today, I spent some time helping a partner of mine trying to figure out how to enable and use the CakePHP console in Mac OS + XAMPP (Mac OS version of course), so, after searching on the internet what was going on, I realized there was a problem with the unix_socket for MySQL because Mac…