Skip to main content

Posts

Showing posts from 2020

Featured Post

Data Mining with Weka -Installation

Weka - Data mining Tool W eka is a tool for big data and data mining. It is used to various classification, experiments, and analysis over large data sets. Installation Guide -weka  You can download Weka from   here   and follow the normal installation procedure. After completion you will get following window, here you can begin your classification or experiment on different data sets with Weka.

Mobile Application Testing

Introduction 1. Hardware based testing: The device including the internal processors, internal hardware, screen sizes,  resolution, space or memory, camera, radio, Bluetooth, WIFI etc.  2. Software or Application testing: The applications that work on mobile devices and their functionality are tested.  I.e. Mobile Application Testing Step of Mobile Application Testing Documentation Testing: Requirement analysis ,Test plan, Test cases  are created Functionality Testing Installation and Running the application Fields: Verify all fields works correctly, Mandatory and optional  fields are displayed differently.  Business Functionalities Testing Interruptions : Notifications, Network, SD Card Insert or remove Constant User Feedback: Progress bar, Network error,  Deleting important info. App Update : App Update process, ensure previous user  data is saved. Device Resource: Memory, Installation on SD Card etc .  3. Usability Testing : Usability testing is aimed to ensure the convenience of u

Configure Git For Windows

 Configure Git for Windows  1.   go to https://git-scm.com/downloads    2.  download the software for Windows     3. install Git choosing all of the default options Set up # sets up Git with your name git config --global user.name "<Your-Full-Name>" # sets up Git with your email git config --global user.email "<your-email-address>" # makes sure that Git output is colored git config --global color.ui auto # displays the original state in a conflict git config --global merge.conflictstyle diff3 git config --list Associate with code editor Atom Editor Setup git config --global core.editor "atom --wait" Sublime Text Setup git config --global core.editor "'C:/Program Files/Sublime Text 2/sublime_text.exe' -n -w" VSCode Setup git config --global core.editor "code --wait"