Debian Wheezy on LinkStation LS421DE

Disclaimer: THE FOLLOWING PROCEDURE WILL CAUSE ALL OF YOUR DATA TO BE LOST. YOU HAVE BEEN WARNED! Installing Debian on LinkStation LS421DE to replace the Buffalo stock firmware aimed to create a full customized operating system without unnecessary software as in stock firmware. The configuration for the following scenario described as below: Using LinkStation LS421DE …

Opening Stock Firmware of LinkStation LS421DE

The purpose for opening a stock firmware is to gain root access to LinkStation. With root access, several additional softwares can be added to the firmware, e.g: using optware package. Furthermore, a custom operating system can be used to replace the Buffalo stock firmware such as Debian. This process based on existing method on buffalo.nas-central.org, tested on LS421DE: …

MySQL: Dari Desain Ke Kode Lebih Mudah

MySQL sebagai RDBMS open source, sangat mudah dijumpai pada server-server hosting atau di kalangan akademisi maupun korporat. Oracle sebagai pemilik MySQL juga mengembangkan aplikasi pendukung MySQL Workbench (dahulu MySQL GUI Tools). Fungsi utama MySQL Workbench adalah: Desain database (modelling). Administrasi Server. SQL Frontend untuk Database MySQL. MySQL Workbench sendiri dikembangkan secara open source, juga dapat diperluas fungsi-fungsinya dengan …

DRtfTree – Delphi VCL for RTF processing

DRtfTree is a port of NRtfTree which can be found at https://github.com/sgolivernet/nrtftree. The main usage of DRtfTree: Loading and processing an existing rich text document and extract the plain text only portion. Perform rich text operation such as: creating paragraph, inserting an image and then generate the resulting rich text. Creating a mail-merge-like document is …

Rooting Sony Xperia J versi 11.0.A.7.5, 11.2.A.0.21, 11.2.A.0.31

Update 12-08-2013: Gunakan metode rooting dari http://forum.xda-developers.com/showthread.php?t=2366577, jika tidak berhasil metode berikut ini akan selalu berhasil terutama jika ada update firmware terbaru. Perhatian: Dengan membuka kunci bootloader kemungkinan garansi akan hilang. Resiko anda tanggung sendiri! Untuk rooting Sony Xperia J versi 11.0.A.7.5, 11.2.A.0.21, 11.2.A.0.31 (dan atau versi yang lebih baru) menggunakan ClockworkMod (CWM) recovery sehingga …

DLINK DIR-300 A1 OpenWRT Multi WAN Router Versi 2

Update 09-Januari-2013: Silahkan mereferensi artikel sebelumnya yang sudah terupdate. Artikel ini merupakan update dari http://tohenk.wordpress.com/2010/10/25/d-link-dir-300-sebagai-router-wireless-multi-wan-dengan-openwrt/, dengan perbedaan: OpenWRT trunk rev. 27025. Kernel 2.6.38.7. Wifi menggunakan ath5k (mac80211), sebelumnya madwifi. Langkah-langkah yang digunakan masih mengacu pada artikel pertama, hanya untuk file vmlinux dan rootfs dapat diambil di sini: vmlinux rootfs Jika sebelumnya RedBoot sudah diupdate maka …

Extending Propel in Symfony 1.4

Allow Table name prefixed with underscore Replace the original symfony/lib/plugins/sfPropelPlugin/lib/addon/sfPropelDatabaseSchema.class.php: public function getChildren($hash) { foreach ($hash as $key => $value) { // ignore special children (starting with _) if ($key[0] == ‘_’) { unset($hash[$key]); } } return $hash; } with: public function getChildren($hash) { foreach ($hash as $key => $value) { // ignore special children …

D-LINK DIR-300 Sebagai Router Wireless Multi WAN dengan OpenWrt

OpenWrt sebagai distribusi Linux untuk Sistem Embedded, dengan fleksibilitas dan banyaknya paket-paket aplikasi, dapat diterapkan pada D-LINK DIR-300 REV. A1, sehingga dapat dijadikan sebagai Router Wireless Multi WAN dengan Load Balancing. Langkah-langkahnya secara garis besar adalah: Mengganti RedBoot. Flash OpenWrt. Konfigurasi OpenWrt untuk Multi WAN Load Balancing. Mengaktifkan WiFi Protected Setup (WPS). Konfigurasi LED dan …

Load Balance PCC Mikrotik dengan 2 WAN + 1 VPN

Per Connection Classifier (PCC) Load Balance ini digunakan untuk load balancing round-robin dengan konfigurasi sebagai berikut: Internet: Speedy menggunakan PPPOE. Internet: Wireless kantor menggunakan IP statis. VPN menggunakan IP statis. Konfigurasi PPPoE Speedy /interface pppoe-client add ac-name=”” add-default-route=no allow=pap,chap,mschap1,mschap2 comment=”” \ dial-on-demand=yes disabled=no interface=ether1-speedy max-mru=1480 \ max-mtu=1480 mrru=disabled name=pppoe-speedy password=********** profile=\ default service-name=”” use-peer-dns=no user=************@telkom.net …

MySQL Workbench Plugin to Export Schema as Symfony Propel Schema

MySQL Workbench provides DBAs and developers an integrated tools environment for: Database Design & Modeling SQL Development (replacing MySQL Query Browser) Database Administration (replacing MySQL Administrator) There are numerous MySQL Workbench plugin to export the MySQL schema into Propel, one is found here. This plugin export the schema into Propel xml schema. For a symfony …