Phising Through Email Using Google Drive Link

Recently i found that some of my friends send me an email asking to see an important document in Google Drive. The title would say "Kindly Review The Uploaded Document"  and here is the content of the email: Hello,please see this it's very important  https://drive.google.com/  and sign in to viewIt's very importantKind regards Please see the screenshot below:The email sent to me as bcc as my contacts, so i thought it might be something important. But i'm shock when … Read more...

Write Anywhere With WordPress Android App

WordPress for Android has been out for a while. But i thought it might be a good share. WordPress for Android is available for free in Google Play market. Please go to this url to download to your Android mobile now. With this app i can write on my blog anything and anywhere. Especially when i go shopping with my girlfriend, while waiting i do blogging :)I have used WordPress for Android for a while now. It is not just for writing a post, i can reply comment as well as see my website … Read more...

Asana Way by Justin Rosentain

I love Asana! In our team workflow, Asana is one of the most important tool we are using for our project management. I wrote some top cloud apps to boost productivity a while ago, and Asana is one of them. And recently i saw in Asana blog post and interesting video. It's been months that a question pop in my head, how the Asana team use their product? And suddenly it is answered by the Asana team. The speaker is Justin Rosentain, he is one of the co-founder of Asana. And i will waste more of … Read more...

Jump Start Your Web Application With PHP Composer

If  you are a web developer and love to use PHP, i bet you have heard about composer. Composer is dependency manager for PHP. So what is dependency means? In developing a web application you may need to use one or more libraries. In my case i often use these libraries: monolog, slim, laravel, debug helper, and laravel. Without composer it would take me hours just to do the environment setup. With composer i just need to define a composer.json file, and composer will handle the rest, … Read more...

Create Local VirtualHost For Your Development Environment

If you are using xampp, you can access your local server just by go to http://localhost. So now i would like to share to you how to create your own local domain and add your local domain into apache virtual host, so you can have your local website for development purpose. For example you can have www.domain.local. To create this you only need to edit your apache vhost and your hosts file.If you are using Windows you can edit your hosts files in C:\Windows\System32\drivers\etc\hosts, you can … Read more...

Optimize WordPress Blog

In order to have fast response WordPress based website you need to optimize it. By optimized the resources your website is not just fast but also effective to handle large traffic from your visitors. Previously i did write guide to improve your website performance, so if you feel adventurous to do it in technical way, please read and follow it.Usually we do optimizing the WordPress website for our clients after we deploy it to live. We decrease the load time significantly by just doing some … Read more...

Create Embed URL in WordPress

Today i would like to share to you about WordPress embed url. Some of you may not know this feature. Since WordPress 2.9, we can add videos from YouTube, Facebook, Vimeo, etc. with just paste the URL into the content editor. And WordPress will automatically convert them into Video player. No shortcode and no programming skill needed.For example, the YouTube video below, i will paste the url as follows:And it will look like this:http://www.youtube.com/watch?v=3P-m2cBCJSkThere … Read more...

Create Patch Files From Multiple Commits In Git

As i am working on some open source project with the community, it is best to send the file patches instead of merge request. And couple projects are not using Github or Gitlab. And the team leader need us to send the patch file instead of push them right away to the main git repository. The reason for testing and staging purpose.Fortunately git could export those commits into patches with this command:where -x means how many commits back from the current head and it has to be … Read more...

WordPress Jetpack v2.5 Update

Since my last post about WordPress Jetpack, now it is already in version 2.5. There are a lot of enhancement and couple bugs fixed, you can see all the changelogs in the plugin page. One thing that i love from Jetpack, it is fast growing and rapid releases. Lot of new features surprises in every release they made.I joined the Jetpack beta testing group (you can join only by invite), and there will be a lot more new features that really helping your WordPress powered website to have rich … Read more...

Add Post Thumbnail To WordPress RSS Feeds

As per default WordPress doesn't show your post image into the post RSS feed. I just found out this a couple while ago when i try to use Feedly apps from my mobile to subscribe to this blog. And i realize that i don't have my post feature image show up. And in fact to show the post feature image to the RSS feed is really easy (if you are a web developer).All you need to do is add this snippet code to your themes functions.php:If you trouble to add it to your WordPress themes, please … Read more...