Download : PROJ_FORMAT_ Contents Page number 1. Introduction 2. Working Environment 2.1 Hardware Requirements specifications 2.2 About the Hardware 2.3 Software Requirements specifications 2.4 About the Software 3. Hardware Design And Description 4. System Analysis 4.1 Data Flow Diagram 4.2 Control Flow Diagram 5. Software Design 5.1 Flow chart 5.2 System Implementation 6. Message Transaction […]
Tag: Programming
One liner: To get available virtual memory
vmstat -s -SM | grep “free memory” | awk -F” ” ‘{print$1}’
Applications of Neural Networks
Download Link : Appliations Chapter 1. Introduction Introduction to neural networks 1.1 What is a Neural Network? An Artificial Neural Network (ANN) is an information processing paradigm that is inspired by the way biological nervous systems, such as the brain, process information. The key element of this paradigm is the novel structure of the information processing […]
Descriptive programming in QTP
Download link : 6010dae508eb401983bcc812c77ecb17 Introduction: This document demonstrates the usage of Descriptive programming in QTP 8.20. It also discusses situations where Descriptive programming can be used. Using Descriptive Programming automation scripts can be created even if the application has not been developed. Descriptive Programming: Whenever QTP records any action on any object of an application, it […]
College Website – My first project !
I had mentioned earlier on twitter that I will be uploading some recovered data from my broken hard drive. So here is the first one. Following is the link to a self extracting archive of the first project I ever did. The college website! …with help of the Subhash Dasyam. https://github.com/shafiqissani/ASTRA-College-Website This is a very […]
Notes on build script
Choose a language that can be used in multiple platforms (very important for a Java project) Ensure that as many steps are automated. Begin with a full clean up and allow full build and deployment to the server Automate even server restart to increase developer efficiency Each build should ensure that it recompiles all classes and optionally fetches […]
ERROR: `phpize’ failed [solved]
If you get the following error install the development files of PHP. running: phpize sh: phpize: not found ERROR: `phpize’ failed On Ubuntu/Debian you could run the following line in the terminal : apt-get install php5-dev that’s it 🙂
Perl – system load
To find the system load use the following perl snippet : 1) System load of last one minute : my $system_load = exec(‘uptime | awk -F “load average: ” \'{ print $2 }\’ | cut -d, -f1′); my $system_load = qx(‘uptime | awk -F “load average: ” \'{ print $2 }\’ | cut -d, -f1′); […]
Gearman – Can’t call method “syswrite” on an undefined value at /usr/local/share/perl/5.10.1/Gearman/Taskset.pm line 202.
If you get the following error while running the client code : Can’t call method “syswrite” on an undefined value at /usr/local/share/perl/5.10.1/Gearman/Taskset.pm line 202. … then change this $client->job_servers(‘127.0.0.1’); to $client->job_servers(‘127.0.0.1:4730’); thats it ! 🙂