General

185 posts

[Fix] LG G3 blue screen of death and fix

I never imaged that Android has blue screen of death until my son handed to me his LG G3 smartphone with a blue screen of death. And after several seconds, the blue screen disappeared and the phone went “dead” and would not respond to any buttons, including long-holding the power button. After I opened up the phone case, take out the battery, and put it back, I was able to turn the phone on, but immediately […]

4 reasons you should play Pokemon GO

After initially released in July 2016, Pokemon GO quickly became a worldwide phenomenon and was one of the most used mobile games. Due to its popularity, their server was under heavy load and the game occasionally crashed or failed to load. Some updates of the game later broke one of the most useful feature: its built-in tracking feature became useless. Because of the lack of Pokemon tracking, some third-party apps emerged to help users to find […]

[Fixed] Windows 10 File Explorer Keeps Crashing

Windows 10 gave me a challenge this morning. When I turned on my computer and went to File Explorer to access a downloaded file, File Explorer hang for a while then just crashed. Maybe it’s just an accident, so I tried again, and it crashed again the same way. Hmm, one more try…crashed. Well, it’s Windows, rebooting is a magic fix for most issues, so I reboot my computer, guess what, it didn’t fix the […]

[Review] Is Swagbucks legit and worth the time?

Swagbucks is an online rewards and cash back program that allows users to earn points (called SB) by doing activities such as watching videos, playing games, searching the web, shopping online stores, answering surveys, and so on. Swagbucks is a legitimate business and it is definitely worth your time, and let me show you why. Disclaimer: Swagbucks is a legitimate business and rewards you with good amount of gift cards or cash, but do not […]

Google indexes HTTP site as HTTS, how to fix it?

A few months ago, I decided to switch my hosting provider from Arvixe to SmarterASP.net and after the switch I decided not to continue to use SSL for my site, so I terminated my SSL certificate. Within a week, I noticed that my page views have dropped tremendously, almost to single digit. After some investigation I noticed that Google still indexes my site as HTTPS instead of HTTP, even though I don’t have SSL certificate […]

A quick review of Grav CMS

Grav is a file-based open source Content Management System (CMS) and is developed by RocketTheme, which means Grav doesn’t use a database. Content and configuration options are all stored in flat files on the server. The main focus of Grav is speed and simplicity. Because of this, I would like to give it a try to see if how easy and simple to use it, especially for small business and non-profit organizations where techinical resource […]

Migrate to another hosting company from Arvixe

Yes, I switched my hosting company again, even though it is always a hassle to migrate to a different hosting providers especially when you need to migrate any production web site.with database backend. This time the reason I had to switch was that the support of Arvixe (my previous hosting company) has become very sluggish which made them think it is time to change to a better company. After I fed up with HostGator’s Windows […]

Users sue Apple for new Wi-Fi Assist feature in iOS9 for a stupid reason

  If you have a smartphone with mobile data plan, then you would expect, when in service area, the phone is smart enough to automatically connect to the mobile network so you can do fun stuff such as checking email, watching videos, and so on. Because of this normal expectation, when a Wi-Fi-connected smartphone lost its Wi-Fi connection (or maybe the signal is too weak to connect), it will automatically try to connect to your mobile network […]

Back to the Future day

If I drive 88 miles per hour today, will I get pulled over for speeding? If I do get pulled over, can I tell the cop that I am trying to go back to the future because the speed of 88 miles per hour is the exact and only speed that Doc Brown figured out based on his scientific research for time travel. Maybe, only maybe, if the cop is a hard-core Back to the […]

[Solved] Cannot have multiple items selected in a DropDownList

If you work on ASP.NET DropDownList, most likely you will encounter a situation when you need to pre-select an item in the DropDownList. You might see people using the following way to do that after the DropDownList is bound: this.ddlSchools.SelectedValue = oSchool.AdminID This works very well if you are sure that the value you assign to the DropDownList actually is one of the DropDownList items, otherwise, you will get an ArgumentOutOfRangeException. So the safe way to […]