17
2013
How to create child theme in WordPress ?
A WordPress child theme is a theme that inherits the functionality of another theme, called the parent theme, and allows you to modify, or add to, the functionality of that parent theme. A child theme is the safest and easiest way to modify an existing theme, whether you want to make a few tiny changes or extensive changes. Instead of modifying the theme files directly, you can create a child theme. A child theme inherits [...]
13
2013
Open Source v/s Open APIs
Many of us believe that open APIs and open source is somehow the same thing. As in “if we open an API does that mean we will open source our software?”Obviously Not!! Both open source and open APIs have to do with technology and both have the word “open” in them, that’s pretty much where the similarities end. Open source: Open source software continues to be a critical part of software development, systems administration, IT [...]
5
2013
MooTools v/s jQuery
MooTools is a perfectly solid and acceptable JavaScript library and its’ recommend that you add it to your list of known technologies rather than tear it out and replace with JQuery. Mixing the two is not a good idea as you’re likely to encounter obscure difficulties to debug conflicts. Normally when you see a title like jQuery v/s MooTools you get ready for the flame bait. You would expect it even more so if you [...]
5
2013
MOOTOOLS
MooTools is a compact, modular, Object-Oriented JavaScript framework designed for the intermediate to advanced JavaScript developer which can spice up the interactivity and beauty of a site. User Interface plays an important role in the success of any website; JavaScript, CSS and AJAX are commonly used to provide users the leisure of rich user interface over past few years. But using one of the most famous JavaScript libraries, MooTools you can add extra smoothness and [...]
3
2013
Why Do You Need Canvas?
Looking for some creative inspiration? Want to implement latest trends? Or Seeking the latest buttons, textures, or graphics? Then 3D Mick is the right place for you, as there is always something interesting to be found here. Designers always need new elements to make each of their projects look amazing. And this is why it’s important to have a lot of resources to count on. You can’t mug up everything and hence people often find [...]
18
2013
BigBlueButton
BigBlueButton is an open source web conferencing system built on over fourteen open source components to create an integrated solution that runs on Mac, Unix, and PC computers. In the true sense of open source, we invite you to try out and participate in our project.It is a good placement service.It provides main three type services: 1. Built For Online Learning Features that a teacher will enjoy • Presentation Control : A presenter can easily [...]
4
2013
We have Revitalized 3DMICK
We’ve Revitalized 3DMICK A7, 4th floor, CROWN PLAZA MALL, Delhi-Mathura Road, 121007, FBD (HR) We have been moved to its new location. 1. Better Quality 2. More Dedications 3. Above expectations Easy to reach 1. It comes under a most happening places of Faridabad. 2. 2 mins walking from the proposed Metro station on the Delhi – Mathura road at Sec 15A 3. 15 mins drive from Delhi Border Office Specifications 1. Highly [...]
26
2013
Selenium Testing Tool
What is Selenium? Selenium is an open source automation testing tool for web based applications. It runs directly on browser and supports almost all available browsers such as Firefox, chrome, IE, Opera, Safari etc. It runs on all platforms such as Windows, Linux and Macintosh. It’s a very useful tool for System functional testing and browser compatibility testing. It is really strong as compare to other available automation tools and is very flexible and simple [...]
25
2013
Cross Browser Testing
A wide range of web browsers are available in market. Different end users are using different web browsers to access your web applications. So, it has now become crucial to test web applications on multiple browsers. On different browsers, client components like Javascript, AJAX requests, Applets, Flash, Flex etc. may behave differently. Also for different browsers you may have different handling on how requests are processed on server side based on the user-agent received from [...]
20
2013
Gantry
Gantry is a powerful framework that RocketTheme uses as the basis for all of its Joomla and WordPress theme designs, and have made it available to users via the GPL license. You are free to use it in your theme development projects. Gantry was born when the RocketTheme development team wanted to consolidate extensive set of custom Joomla and WordPress template functionality into a simple, easy to use framework. However, they wanted to ensure [...]
12
2013
HTML5 Advantages/Disadvantages
HTML5 is cooperation between the World Wide Web Consortium (W3C) and the Web Hypertext Application Technology Working Group (WHATWG). WHATWG was working with web forms and applications, and W3C was working with XHTML 2.0. In 2006, they decided to cooperate and create a new version of HTML. Mutuality To build interactive websites that includes animations, stream video, audio and Social Network sites plugin like Facebook, Twitter, linkedin etc. Till now they have only the option [...]
12
2013
Create Component in Joomla
Joomla is a free open source content management system. Joomla is written in PHP,stores data in MySQL database. So, you want to learn how to create your own component in Joomla. A component consists at least of one file, in our case test.php. This file has to reside in the folder /components/com_test. When a component is called, Joomla! looks for a folder with the name of the component, removes the ‘com_’ and looks for a [...]
8
2013
Create Custom Module in Magento
Magento is best eCommerce system that offer rich customization possibilities by extensions and modules. Magento is built on a fully modular model that influences an unlimited scalability and flexibility. These allow you to add functionality anywhere, whether in a “static” block manner that’s more than static, or a shipping/payment module, or large module to do something as large as integrating a 3rd party system (or multiple systems). There are many things custom Modules can do, [...]
8
2013
XML Parsing in Objective C
In this blog we will cover whole process of XML parsing in iPhone/iPad app. To parse XML file in objective c we use NSXMLParser. Objective C NSXMLParser is an event driven parser. When an instance of this class pareses an XML document it notifies its delegate about the items (elements, attributes, etc) that it encounters during XML processing. To access these XML items we need to implement three main NSXMLPraser events. • NSXMLParser hits the [...]
8
2013
Work on Segment Control in ipad app
If you are working on an ipad app and want to add Segment Control in your app, this post will help you. This post we will guide you, how to add a segment control in your xcode and how to control this by programming. Step 1: Create a View Based project and name it “segmentController”. Step 2: Xcode automatically creates the directory structure and adds essential frameworks to it. You can explore the directory structure [...]
15
2013
Automation Testing
Why Automate? Automated software testing return on investment (ROI) explained Because of unsuccessful Automated Software Testing (AST) attempts, myths related to AST implementations, and a lack of sufficient AST knowledge, you may be asking yourself, “Why should I automate?” This excerpt from the book “Implementing Automated Software Testing” answers this question by describing some of the key practices in software testing and the many areas that lend themselves to AST. The purpose of this discussion [...]
15
2013
WordPress Plugin
PLUGINS: Plugins are the tools to extend the functionality of WordPress. Plugin consist of custom functions and features which allow user to modify their site according to their needs. CREATING A PLUGIN Names, files, and Locations Plugin Name: The first task in creating a plugin is to think what the plugin will do and create a name of plugin according to the need for instance if we have to create a weather related plugin the [...]
12
2012
Partial VS Helper In Zendframework
Across a site we will have to reuse certain view elements so a better way is to provide grouping of repeated complex code to a separate class or file and use it anywhere with a much shorter statement across a site. When we are working with view in zend framework the shorter statement which is used to access a complex code is referred as partial or view helpers. Zend Partial template and Helper class Zend [...]
29
2012
Automation Testing
It is a process in which all the drawbacks of manual testing are over come properly and provides speed and accuracy to the existing testing phase. Automation Testing is not a replacement for manual testing it is just a continuation for a manual testing in order to provide speed and accuracy. Drawbacks of Automation Testing: 1. Cost effective. 2. Can’t automate all the areas. 3. Lake of expatriation. Automation Tool Automated Tool is an Assistance [...]
29
2012
Smoke Testing
Smoke testing is the initial testing process to check whether the software under test is ready/stable for further testing. The term ‘Smoke Testing’ is came from the hardware testing; in the hardware testing initial pass is done to check if it did not catch the fire or smoked in the initial switch on. In this testing few test cases are created initially. These test cases are executed to identify crucial functionalities or to check critical functionalities of [...]
Categories
- AJAX (2)
- Android (6)
- ASP.Net (9)
- CodeIgniter (7)
- htaccess (2)
- HTML5 (3)
- iPhone (13)
- Java Script (3)
- Joomla (2)
- jQuery (9)
- Magento (1)
- Mobile App (18)
- MySQL (12)
- PHP (78)
- Testing (4)
- Uncategorized (8)
- WordPress (4)
- Xcode (14)
- Zend (29)
An article by