Archive Blogs

Recent Posts

blog cover
Job Openings

Looking for PHP Developer

Infuy is looking for passionate PHP developers to join our team. The candidate should be able to work on PHP projects all across the board, from setting up YII / Zend to deploying the app in a remote server. We’re looking for talented developers that do not fear the console and can understand what they […]
photo of the creator2
blog cover
Clojure

Log scraping with Clojure

Introduction Clojure is a general purpose language that compiles to the JVM, Javascript and .Net CLR. It’s a Lisp language, dynamically typed, functional, with a great set of immutable data structures and great support for multithreading which makes it a great tool for data processing. In this post we are going to build a very […]
photo of the creator2
blog cover
Android

Improving PhoneGap geolocation for Android

Some Android devices have the problem of not being able to obtain the user’s current geolocation using the following standard code:navigator.geolocation.getCurrentPosition(onSuccess, onError, options);The first possible solution to this problem is to add the following options parameter:options = { enableHighAccuracy: true,timeout: 5000,maximumAge: 0,desiredAccuracy: 0, frequency: 1 };If that doesn’t work, the other possible solution is to stop […]
photo of the creator2
blog cover
Git

Command Line Madness I or

The unexpected bliss of Console2, GitBash and UnixTools Some people may say I am stubborn. I prefer “well-rooted”. I can talk about why I believe using Windows is great and I can receive the full wrath of the internet on behalf of my foolishness, so I will not advocate for it, but just say, that […]
photo of the creator2
blog cover
Git

git-flow cheatsheet

Introduction Git-flow are a set of git extensions to provide High level repository operations for Vincent Driessen’s branching model. Git flow gives an excellent command line help and output. Git-flow is a merge based solution. It does not rebase feature branches. Installation As prerequisite you need a working git installation. Git flow works on MacOsx, […]
photo of the creator2
blog cover
PHP

Vbulletin getting redirected to activity.php after Upgrading to 4.2.0

It happened to me when I did an upgrade from 4.0.0 version to the 4.2.0 that all the pages got redirected to the activity.php files without displaying all the threads available in the forum. In order to get this fixed you can do the following to solve it! Go to your admincp -> Navigation Manager. […]
photo of the creator2
blog cover
PHP

How to install Memcached on a CentOS

Memcached is an in-memory key-value store for small chunks of arbitrary data (strings or objects) from results of database calls, API calls, or page rendering.  Memcached will store sessions in memory instead of files. Because memory is way faster than reading a file your website will perform better and reduce load time. Update the repositories […]
photo of the creator2