Posts

Important Tips to Rock the Coding Technical Interview!

Google interviews are the source of fable and mystery if you search the Web. A quick "Google" will return a myriad of pages documenting war stories, impossible brain teasers, inconsistent hiring methods, and too many rejection emails and phone calls. I myself have interviewed with Google twice for a Software Engineer position and have not received an offer. So you're thinking - "he didnt get in. What qualifies him to write about getting into Google?";  in a word - nothing. This is just my humble collection of tips, artifacts, and experiences from my friends and peers who have made it into the Google Utopia, in hopes that it will help the next person get in.  "Dont be evil" right?? My Experience First  Google Interview  -  I got a call from a recruiter and was super excited, little did I know the obsession to get in that would follow. 2 phone interviews came and went. Didn't hear from Google assumed they didn't care or weren...

Double Checked Locking Singleton Pattern

The Singleton Design Pattern is one of the most used patterns for providing a single instance of an object. It is thought to be made Thread-Safe by having Double-Check Locking eliminate the possibility of having 2 instances of the object made by 2 separate threads. While this is true, it does still allow a possible memory exception. The following paper  http://erdani.com/publications/DDJ_Jul_Aug_2004_revised.pdf  shows that when looking to use a Singleton, there are alternatives that provide better thread safe protection.

LEARN THE DIFFERENCE BETWEEN COMPUTER SCIENCE AND IT

Most people assume that all "computer people" are all the same. They all do the same work all the same way.  For those that do care to know the difference, the work they do is related and sometimes does overlap but there definitely is a subtle difference. According to Wikipedia the definitions of each are (IT)Information Technology  -   I n a business context, the  Information Technology Association of America  has defined information technology (IT) as "the study, design, development, application, implementation, support or management of computer-based information systems". [5]   http://en.wikipedia.org/wiki/Information_technology (CS)Computer Science - I s the  scientific  and practical approach to  computation  and its applications. A  computer scientist   specializes in the theory of computation and the design of computational systems http://en.wikipedia.org/wiki/Computer_science What this means...