Fix Genymotion virtual devices start error

Recently I was doing some work on hybrid mobile app development. In past days I used windows for mobile app development particular Android Development with Android Studio on Android. This time I was running Ubuntu and installed Genymotion. Created virtual devices and I encountered issue which reported that “Virtualbox was somehow unable to assign IP … Continue reading “Fix Genymotion virtual devices start error”

Access Jekyll server running inside vagrant box

By default Jekyll listens for request coming from localhost only. We have to configure Jekyll to accept incoming requests outside of localhost. Use command provided below to start Jekyll server : [sourcecode] $ Jekyll server –watch –host 0.0.0.0 [/sourcecode] The trick here is to use –host 0.0.0.0 which tell Jekyll to accept all incoming connections. … Continue reading “Access Jekyll server running inside vagrant box”

[Solved] Error executing git commit in phpstorm

I thought Git and Phpstorm would work out of the box with minimal configuration. I pointed Git.exe in phpstorm and tried committing a file. To my surprise, I got the following error always. example is taken from web: “Error executing git commit –only -F /private/var/folders/bs/zfry67p51_gflf6hqgzplv2xt80189/T/git-commit-msg-5921808149812071312.txt –author=dsedlacek — web/js/definitions/jquery.d.ts web/js/libs/handlebars-v1.3.0.js web/css/icon….” And after poking around for … Continue reading “[Solved] Error executing git commit in phpstorm”

[Solved] How to deploy php app to heroku from windows

I am fulltime linux user and parttime windows user. Lately I have started working with windows for some project stuffs. I found windows quite frustating and limited to what linux provided me. Well it’s all personal feelings. I always hated unnecessary installations of extra applications for the same tools which most of the linux distributions … Continue reading “[Solved] How to deploy php app to heroku from windows”

[Solved] Codeigniter session expires frequently

I was working in a Codeigniter project and when I hit refresh button (F5) continuously, My application session was expiring frequently. I googled for a while and found the simple solution. A solution is to increase the amount of time for the session_time_to_update in codeigniter config. Since I won’t be updating session frequently. I am … Continue reading “[Solved] Codeigniter session expires frequently”