How to Check System Uptime on Windows

On Linux operating system, we can use command top to show system statistic, running processes, and uptime. How can we do it on Windows environment? Using Windows operating system, the similar to top command is net statistics server. Execute this command in command prompt will show summary of  Windows system statistic including when the system…

Read More

How to Repair Corrupted MySQL (MyISAM) Table

Platform: Windows (should work on Linux) Database name: activity Table name: mamain 1. Copy myisamchk.exe to database folder C:\xampp\mysql\bin>copy myisamchk.exe ..\data\activity 2. Run the executable C:\xampp\mysql\bin>cd ..\data\activity C:\xampp\mysql\data\activity>myisamchk -r mamain – recovering (with sort) MyISAM-table ‘mamain’ Data records: 81619 – Fixing index 1 Data records: 81618 3. Finish Note: Make sure you have turned off…

Read More

Moving Averages and Stochastic: Simple Indicators for a Simple Trading Strategy

Strategies help traders avoid common mistakes by providing a strict and understandable analysis system. By following it, you get closer to success and understanding market patterns. Here’s a simple strategy that both beginners and professionals can use. Required indicators: Short-term moving average (50-period MA) Long-term moving average (100-period MA) Classic Stochastic (14, 3, 3) Instructions…

Read More

Install Subversion on Debian

First of all, install these packages: apache2, php5, subversion. # apt-get install apache2 # apt-get install libapache2-mod-php5 # apt-get install subversion # apt-get install libapache2-svn Create repository folder. # mkdir /subversion # svnadmin create –fs-type fsfs /subversion/kendal Make sure subversion is activated in apache. # a2enmod dav # a2enmod dav_svn Create user account for subversion….

Read More

How to Install Memcached on Debian / Ubuntu

Memcached is free & open source, high-performance, distributed memory object caching system, generic in nature, but intended for use in speeding up dynamic web applications by alleviating database load. First of all, install memcached dan php5-memcached packages: and then make sure memcached is running with this command: Restart apache web server: Check php5-memcached module using…

Read More