Entries by Mike Dalisay

Select All Records With Duplicates

I wanted to select all records with duplicate session numbers (session_number) from my forms table so I'll know if there are error of duplicate entries. I'm using MySQL Database. Select All Records With Duplicates Here's a solution I found: SELECT session_numberFROM formsGROUP BY session_numberHAVING COUNT( session_number) > 1 Explanation: SELECT session_number-I'm just selecting session_number FROM […]

Notepad++ Project Manager Plugin

Hi guys! just another quick and simple post. I found this one very useful when I’m developing a website or web app in my localhost – Adding a project explorer/manager to my favorite editor Notepad++. I really love Notepad++ To achieve it: Go to Plugins Plugin Manager Show Plugin Manager Plugin Manager Will Load Available […]

When Apple Called Google, an Icon Ambulance

I thought Google and Apple are in conflict all of the time. I thought they hate each other so much because of Google Android and Apple iOS competition. But I was wrong. It is amazing for me to see that they treat each other as a friend. Vic Gundotra, the man behind Google Plus and […]

Great Way to Upload, Resize and Crop an Image with PHP

Hi guys! Today I want to share with you a great way (well, at least for me) to upload, resize and crop an Image with PHP. We’re gonna use a class here. I found this class really amazing and works well. This class is really easy and simple to implement. DOWNLOAD SOURCE CODE This is […]

Computers – A Chronological Timeline

In this post, we'll take a look at the chronological timeline of computers. I like the infographic below so I thought it will be great to share it with you. I also suggest you visit the Computer History Museum. I love computers. This is where I do most of my stuff. I do Web and […]

Google+ vs. Facebook: Mark Zuckerberg’s Reaction

Alright, so I watched this video about 10 times now and I know I'm gonna be watching this one tomorrow and in the future. Hahaha! This one really makes me laugh. Well I know some of you might not find it funny but this one is really hilarious for me! I mean, I was like […]

How To Customize reCAPTCHA

Have you ever received unsolicited (Spam) messages, comments, or notifications in your email, Facebook account, or to other services you are using online? Probably yes. I think almost all people using the internet experienced it already. There are trillions of spam messages sent every year. One effective way to prevent those spam messages to your […]