Tips to Create SRS(Software Requirement Specifications) Document
What are software requirements specification (SRS)? Software requirements specification capture system behavior as opposed to non-functional requirements specifications which define attributes as not behavior. In product development, it is important to…
Tips to Create DFD (Data Flow Diagram)
Data Flow Diagram Data Flow Diagrams (DFDs) are charts that represent the transfer of information between various compartments of a specific system. DFDs are used when designing a project plan because they are easily understood visual aides. Many…
Tips to Create your First WordPress Blog or Website
Pre-Requisites Log in credentials for your hosting control panel FTP log in credentials An FTP client (Filezilla,CoreFTP,WSFTP,etc…) Setting Up Your Tools Because we’re going to be connecting directly to our file space on the sever we need access…
Tips for beginner programming mistakes
Fear and lack of self-confidence The number one mistake you can make as a beginner programmer is to think you’re not good enough, not smart enough: that you have the wrong type of brain, and you’ll just never get it. I believe that anyone can learn to…
Tips for How to write Better Code
Use a Coding Standard It’s easy to write a line of code, unorganized code, but it’s hard to maintain such code. Good code typically follows some standard for naming conventions, formatting, etc. Such standards are nice because they make things…
Installing Android Studio
Download the Android Studio package from below link. http://developer.android.com/sdk/installing/studio.html Install Android Studio and the SDK tools: Windows: Launch the downloaded EXE file, android-studio-bundle-<version>.exe. Follow the setup…
Simple Objective-C Tutorial For Developing Apps in IOS
Objective-C is an object-oriented programming language, and is a layer over the C programming language. This means that if you know how to write C, there are only a few syntax changes to learn. In this section, we will look at how we can implement…
How to Check your browser supports IndexedDB or not
Browser supports IndexedDB The very first thing we should do is check for IndexedDB support. While there are tools out there that provide generic ways to check for browser features, we can make this much simpler since we’re just checking for one…
What is IndexedDB in HTML5 ?
IndexedDB provides a way for you to store large amounts of data on your user’s browser. Any application that needs to send a lot of data over the wire could greatly benefit from being able to store that data on the client instead. Of course storage is…
Creating Simple Event with MySQL
Creating a First Event Creating an Event is somewhat like creating stored procedure or user defined function in MySQL. You will have DELIMITER, BEGIN, DO and END keywords. As mentioned earlier we can define the execution time for the event while creating…