Categories
Development

Deploy via FTP dengan Yarn dan ftp-deploy

Sebelumnya untuk deploy via FTP, saya biasa menggunakan git-ftp. Untuk proyek-proyek backend, git-ftp sangat pas untuk kebutuhan saya biar nggak perlu pilih file 1-1 yang perlu diunggah. Ini karena git-ftp memanfaatkan commit git untuk menentukan file mana saja yang akan diunggah. Tapi ketika saya mengerjakan proyek frontend, maka semua file source juga akan terunggah karena […]

Categories
Development WordPress

Create A Modal Box on WordPress Dashboard

Recently I was writing a plugin for a client. It was a simple plugin to manage invoices and customers. The development is pretty fast thanks to Elliot Condon for his awesome ACF plugin. One of the plugin’s requirement is user can add a new customer directly from the invoice page. As default, I put a […]

Categories
Development

Memulai Project Ionic di Windows

Tulisan pertama di Medium: https://medium.com/@rizqyhi/memulai-project-ionic-di-windows-ba67faff0625#.bolh1jnhp

Categories
Development

Belajar Menggunakan Bower

Bower adalah salah satu package manager untuk pengembangan front-end web. Sesuai kategorinya, Bower berfungsi untuk memudahkan kita mengatur paket atau library apa saja yang kita butuhkan saat mendevelop suatu aplikasi, dalam hal ini front-end (css/js). Kita tidak perlu repot untuk mendownload library satu-per-satu ketika akan menggunakannya. Begitu juga ketika ada versi baru dari library tersebut. […]

Categories
Development

Array Dereference in PHP 5.4

Found this out when deploying my new app into server. I used PHP 5.4 in my local machine, and unfortunately its 5.3 in my server. The app was blank and the log inform me: PHP Parse error: syntax error, unexpected ‘[‘, expecting ‘)’ in /some/file.php on line 114 We need a temporary variable to fix […]