Laravel update from v.5.0.35 to v.5.2.32 hiccups and solutions

I tried to update Laravel 5 today and here were the steps I had to take. First checked my Laravel version before the update:

Edited composer.json in my laravel’s root folder like such:

Run this on command line:

You might need to delete root folder’s composer.lock file before the update can actually […]

Read More

Android Development: Permission denied when running ./gradlew in Mac

I’m using a Mac at the moment to work on my Android app projects. For some reason I need to run ./gradlew in the terminal, but I was getting this error: -bash: ./gradlew: Permission denied To fix this, what I did was run the following commands:

After those commands, my Mac downloaded numerous files […]

Read More

Plastic Memories – anime review

Warning: potential spoilers may be written in this post. In my previous posts, the common topic was Android app development. But this post is going to be about androids (robots) in the anime Plastic Memories. 🙂 This anime features androids called “Giftia”, and they look and move exactly like humans — they can even get […]

Read More

JavaScript: Get current function name

getCallingFunctionName() is the important function here.

Source: Can I get the name of the currently running function in JavaScript?

Read More

Android: Switch into another activity

To switch into another activity, the method we use is startActivity(). This is what starts another Android activity:

Replace NameOfActivity with the name of any activity you’d like to switch into.

Read More