This is default featured slide 1 title

Go to Blogger edit html and find these sentences.Now replace these sentences with your own descriptions.This theme is Bloggerized by Lasantha Bandara - Premiumbloggertemplates.com.

Monday, October 26, 2015

How to Compile Linux Kernel with Current Configuration

This article is abount recompiling Ubuntu 14.04 kernel using current configuration. Customizing of the kernel is possible after you made copy of current config from /boot/config-`uname -r` to .config as well. For linux distribution version other than Ubuntu 14.04 TrustyTahr might also applied with several adjustment. Prepare workspace $ mkdir -pv /opt/Ubuntu_x64/TrustyTahr/KERNEL $ cd /opt/Ubuntu_x64/TrustyTahr/KERNEL Git Current Kernel https://wiki.ubuntu.com/Kernel/Dev/KernelGitGuide$...

Thursday, October 15, 2015

Raspberry Pi GPIO Programming with C++

How to access your Rapberry Pi GPIO using C++? This brief information will lead you through the easy way to program GPIO port of Raspbery Pi B+ model . There are several c++ class library and/or methods available for you to do a program in C++, ie: - WiringPi - Direct Register Access by Hertaville - Tutorial by VisualGDB -...

Friday, October 09, 2015

slimbian - Slim and Minimalist Raspbian

Minimal installation of raspbian.Jessie is out, targetted for full running lite server or embedded application. 100% Official Raspbian compatible. Less than 500MB installed. Small memory footprint ~56MB. ~09 seconds boot up on Raspberry Pi 2. Linux 4.1.7-v7+ armv7l. SSH server enable.  Please check slimbian here...

Monday, October 05, 2015

Cross Compile WxWidgets/C++ Application for Raspberry Pi

How to Build wxWidgets / C++ for Raspberry Pi Model 2 (ARMv7 Architecture).  UPDATED: For ease to install and configure Eclipse-IDE/Toolchain, use following link of ready used installer: http://yasriady.blogspot.co.id/2016/01/raspberry-pi-toolchain.html wxWidgets is an awesome C++/GUI library to work with. It...

Saturday, August 22, 2015

How to Configure Ubuntu Linux Look Like Windows 7/8

Ones who migrating from Windows to Ubuntu Linux will not lose previous look and feel, you can have similar environment in your new home. With look and feel like previous operating system style, you can customize your Ubuntu Linux like the ways I'm tried here. What You Need? Here I will explain in brief tutorial how to ...

Wednesday, August 19, 2015

How To Change Grub Default Boot

This article will show you how to change Grub default boot for any installed operation system inside your computer, be it various Linux or Windows. The steps here known to working very well in my Ubuntu 14.04, while other version or distribution may have similar method. $ sudo cp /etc/default/grub /etc/default/grub.bak $...

Tuesday, August 18, 2015

Build wxWidgets Application to Run on Any Linux

Link wxWidgets application statically and run on any linux distribution without missing any dependency files. This tutorial inspired by article written by Tierra here, mentioned about linking with gtk and run on any linux. Also to show you how to make static linking to libstdc++ since various linux distribution will have different version of this library that could lead to error program to running. Note: Remember that GTK is licensed under LGPL,...

Monday, August 17, 2015

GUI Designer for wxWidgets using wxFormBuilder

I used wxFormBuilder frequently in recent years as GUI Designer when coding with wxWidgets. This RAD tools very much help programmer to build GUI up and running in a snap. Following tutorial will guide you in quick simple steps to configure and work with wxFormBuilder. Installing wxFormBuilder in Ubuntu $ sudo apt-get install...

Friday, August 14, 2015

Howto Build wxWidgets with MinGW

This tutorial is intended for the beginner who wish to have wxWidgets up and running in Windows environment. The build using MinGW without Msys. Installing Toolchain Download TDM-GCC from http://tdm-gcc.tdragon.net/download After completion of installation, please relogin to Windows to make sure path to tdm-gcc applied. Prepare...

Tuesday, August 11, 2015

GitHub - HowTo Work With

It would be easy for us to have program source code stored in centralized version control system in the server. GitHub provide such service free for open source projects. The simple steps herewith will guide you to setup and initialize your very first project into GitHub. Install Git on Ubuntu $ sudo apt-get install git Configuring...

Sunday, August 09, 2015

How To Make Linux Fonts Look Like Windows Fonts

I like to see my Ubuntu Desktop fonts sharp like one appears on Windows. This brief tutorial will guide you how to make such appearance. For other distribution you might use, the step is almost similar. For this purpose, I set font configuration with following simple steps: $ sudo apt-get install msttcorefonts $...

How To Configure wxWidgets on Ubuntu

Configuring wxWidgets into Netbeans is not so complicated, even for those who are new to the application will find the easy way to work with. This short tutorial is intended to guide you to setup wxWidgets on Ubuntu 14.04, thus you can begin to code immediately.  Take a look the simple step, and happy coding with...

How to Build wxWidgets on Windows with MSys/MinGW

This tutorial will guide you step by step to build wxWidgets-3.0.2 on Windows using MSys/MinGW. Download and do Install Msys 1.0.11 from http://www.mingw.org/wiki/msys Download and Instal TDM-GCC Edit C:\msys\1.0\etc using your favorite editor: Open MSys Command Prompt $ cd /opt/wxWidgets $ wget http://nchc.dl.sourceforge.net/project/wxwindows/3.0.2/wxWidgets-3.0.2.tar.bz2 $...