Ebizu 2016 Job Vacancy

ebizu_logo

Hi,

Ebizu is a B2B technology solutions company targeted at helping small and medium businesses manage and grow themselves using cloud and mobile technologies that are affordable. We are building an ecosystem of merchants that want a presence on mobile, offer great value for loyalty and give awesome ways to their customers to engage, interact and buy. We are doing all this with latest technologies that is transparent and seamless to the user, and we want you to be one of the first to come on board our mission.

PT Ebizu Prima Indonesia right now hiring for these position :

  1. Web Developer [BDG/JUNIORWEB] | [BDG/SENIORWEB]
  2. Android Developer [BDG/JUNIORANDROID] | [BDG/SENIORANDROID]
  3. IOS Developer [BDG/JUNIORIOS] | [BDG/SENIORIOS]
  4. QA / Tester [BDG/JUNIORTESTER] | [BDG/SENIORTESTER]

CV & Portfolio must be in English. Interview will be in english, via Skype or Direct Interview in our office.

If you prefer to be placed in Jakarta Office, change BDG into JKT. Our Bandung office located at Jln. Cipaganti No. 47. For detail on every position, please check attachment.

Send your CV & Portfolio to jobs@ebizu.com cc : fajri@ebizu.com.

What about other position? When the time has come, You will be the first one to be interviewed. What about the subject? Well, it’s like above, just follow the pattern.

If You need some inspiration, you can check my portfolio. Still have any question? Contact Me.

Attachment :

2015 in review

The WordPress.com stats helper monkeys prepared a 2015 annual report for this blog.

Here's an excerpt:

The concert hall at the Sydney Opera House holds 2,700 people. This blog was viewed about 18,000 times in 2015. If it were a concert at Sydney Opera House, it would take about 7 sold-out performances for that many people to see it.

Click here to see the complete report.

Awesome PHP Video you must watch

So I recently watch some videos about PHP, from anthony ferrara. Mostly it is about performance, and how PHP and other programming language actually works. Before I watch this video, I didn’t even know how PHP actually works (shame on me). Well, I suggested you must watch too. Some interesting quote is, “You don’t have scale problem, Your code just sucks”.

[How to]Install Nginx on Linux Centos 6.5 / 6.6

nginx_200

When this tutorial written, latest stable version of nginx is 1.6.2, and the latest nginx mainline version is 1.7.10. But, when it comes to centos, “If it ain’t broke, don’t fix it“, so I choose a stable one. Here is the code.

yum update -y
sudo rpm -Uvh http://dl.fedoraproject.org/pub/epel/6/i386/epel-release-6-8.noarch.rpm
cd /etc/yum.repos.d
curl -O http://rpms.famillecollet.com/enterprise/remi.repo

touch /etc/yum.repos.d/nginx.repo
echo "[nginx]" >> /etc/yum.repos.d/nginx.repo
echo "name=nginx repo" >> /etc/yum.repos.d/nginx.repo
echo "baseurl=http://nginx.org/packages/centos/6/\$basearch/" >> /etc/yum.repos.d/nginx.repo
echo "gpgcheck=0" >> /etc/yum.repos.d/nginx.repo
echo "enabled=1" >> /etc/yum.repos.d/nginx.repo

yum install -y nginx
service nginx restart

To make sure it’s installed :

..[$] <()> netstat -ntpl
Active Internet connections (only servers)
Proto Recv-Q Send-Q Local Address               Foreign Address             State       PID/Program name
tcp        0      0 0.0.0.0:8013                0.0.0.0:*                   LISTEN      13063/nginx
tcp        0      0 0.0.0.0:80                  0.0.0.0:*                   LISTEN      13063/nginx
.....

Right now I implement on Digitalocean (it has referral link) because it’s fast and easy to deploy, my favorite feature is snapshot. I usually using the smallest one ($5 / month), when it goes well in the smallest one, it will be better on the bigger one.

A few words on sailsjs awesome nodejs framework

Sailsjs make it easy to build custom, enterprise-grade Node.js apps.

So, recently I watch this video. And I think it is really worth to try, really awesome do everything that simple, like create a REST API, it use ORM. And since my quote is, lazier is better, I think this framework suites me, I think I will use this framework in my next project, create a GIS based system. I think I will use leafletjs, since it use openstreetmap. I’m still working on it, I will share when it’s done.

Here is the awesome video :