Article Network

Tips and Tricks

by Rachel McCollin | May 2013 | Beginner's Guides Open Source WordPress

In this article by Rachel McCollin,authors of WordPress Theme Development - Beginner's Guide we'll look at some added extras, some additional bells and whistles you can use to make your theme just that bit better.

You'll learn how to create and make use of additional template files to add extra flexibility and functionality to your theme, as well as how to use conditional tags to display different content in different parts of your site. You'll also learn how to make use of the Theme Customizer and optimize your site for SEO.

You can create perfectly good, workable WordPress themes without any of these extras, but you'll find that you can take your WordPress themes much further with these techniques.

So let's get going!

Read Tips and Tricks in full

Cloud-enabling Your Apps

by Darren Cope | May 2013 | Beginner's Guides

This article by Darren Cope, author of Appcelerator Titanium Application Development by Example Beginner's Guide will show how to integrate with the cloud and will concentrate on how to use some of the storage-based solutions. Specifically you will learn how to:

  • Integrate with Appcelerator Cloud Services
  • Interface to a REST-based cloud service
  • Send and receive data from the cloud
Read Cloud-enabling Your Apps in full

An Overview of Complex Event Processing

by Alexandre Alves Lloyd Williams Robin J. Smith | May 2013 |

In this article by Alexandre Alves,Robin J. Smith and Lloyd Williams, authors of Getting Started with Oracle Event Processing 11g, you will be introduced to the basic concepts of Complex Event Processing ( CEP ), its impact today on businesses across all industries, and the key artifacts that together constitute an Event-Driven Solution Platform. Some of the topics we will cover are as follows:

  • What is event processing

  • Relating this to a business in computing terms

  • Use case: A solution for customer problems

  • Key elements of event stream processing

  • Event processing languages and extensibility

  • Holistic event-driven and service-orientated architectures

  • Predicting an event

Read An Overview of Complex Event Processing in full

Echo Server/Clients

by John Torjo | May 2013 | Open Source

In this article by John Torjo, author of Boost.Asio C++ Network Programming, we'll implement a small client/server application, which is probably the easiest client/server application you will ever write. This is the Echo application, a server that echoes back anything a client writes, and then closes the client's connection. The server can handle any number of clients. As each client connects, it sends a message. The server receives the full message and sends it back. After that, it closes the connection.

Therefore, each Echo client connects to the server, sends a message, and reads what the server replies, making sure it's the same message it sent and finishes talking to the server.

Read Echo Server/Clients in full

Using Debug Perspective – setting breakpoints

by Anatoly Spektor | May 2013 | Java Open Source

The article, Using Debug Perspective, will guide you through the ways of setting up breakpoints and navigate through the code using various breakpoint manipulation options. This article by Anatoly Spektor, author of Instant Eclipse Application Testing How-to, will guide you to learn what breakpoints are and how to use them. After reading this article, you will be able to effectively debug Java applications of any scope. Fortunately, any prior knowledge of Eclipse is not required; thus it is suitable for developers with any level of experience in Eclipse application development and testing.

Read Using Debug Perspective – setting breakpoints in full

Big Data Analysis

by Brian Femiano Jon Lentz Jonathan R. Owens | May 2013 | Cookbooks Open Source

This article created by Jonathan R. Owens, Jon Lentz, and Brian Femiano, authors of Hadoop Real-World Solutions Cookbook, contains recipes designed to show how you can put Hadoop to use to answer different questions about your data. Several of the Hive examples will demonstrate how to properly implement and use a custom function (UDF) for reuse in different analytics. There are two Pig recipes that show different analytics with the Audioscrobbler dataset and one MapReduce Java API recipe that shows Combiners.

In this article, we will cover:

  • Counting distinct IPs in weblog data using MapReduce and Combiners

  • Using Hive date UDFs to transform and sort event dates from geographic event data

  • Using Hive to build a per-month report of fatalities over geographic event data

  • Implementing a custom UDF in Hive to help validate source reliability over geographic event data

  • Marking the longest period of non-violence using Hive MAP/REDUCE operators and Python

  • Calculating the cosine similarity of Artists in the Audioscrobbler dataset using Pig

  • Trim outliers from the Audioscrobbler dataset using Pig and datafu

Learning to apply Apache Hive, Pig, and MapReduce to solve the specific problems you are faced with can be difficult. The recipes in this article present a few big data problems and provide solutions that show how to tackle them. You will notice that the questions we ask of the data are not incredibly complicated, but you will require a different approach when dealing with a large volume of data. Even though the sample datasets in the recipes are small, you will find that the code is still very applicable to bigger problem spaces distributed over large Hadoop clusters.

The analytic questions in this article are designed to highlight many of the more powerful features of the various tools. You will find many of these features and operators useful as you begin solving your own problems.

Read Big Data Analysis in full

Validating and Using the Model Data

by Vinod Krishnan | May 2013 | Beginner's Guides Enterprise Articles Oracle

In this article by Vinod Krishnan, author of Oracle ADF 11gR2 Development Beginner's Guide, we will take a look at validating and using the model data. Validating data is important as business depends on the data that gets stored in the database. So how do we validate the data? Validation is something that makes sure that valid data is getting stored in the database. Validation could be anything from comparing two fields in a table to multiple validations on a single field involving different columns from a different table.

In any other framework, we would end up writing a lot of code even for a small validation. But in ADF, we do little or no coding at all, and most of the validations are achieved declaratively.

In this article, we will learn the following topics:

  • Declarative validation
  • Groovy expressions
Read Validating and Using the Model Data in full

Converting tables into graphs (Advanced)

by Fernando Monteiro | May 2013 | Open Source

Another alternative much discussed by the community of developers is transforming the table into a graphic when it is being displayed on small screen devices. This is not an easy task taking into account the size and amount of data that a table can have.

Let's see an alternative solution combining the previous recipes with another plugin for rendering graphics. The main reason for this combination is we use only one plugin per page, thus optimizing our load.

This article by Fernando Monteiro, the author of the book, Instant HTML5 Responsive Table Design How-to explains what happens when we convert the data and display a nice graphic for our users using a properly formatted table.

Read Converting tables into graphs (Advanced) in full

Ten IPython essentials

by Cyrille Rossant | May 2013 | Open Source

In this article by Cyrille Rossant, author of Learning IPython for Interactive Computing and Data Visualization, we will take a quick tour of IPython by introducing 10 essential features of this powerful tool. Although brief, this hands-on visit will cover a wide range of IPython functionalities.

Read Ten IPython essentials in full

Querying and Selecting Data

by Eric Pimpler | April 2013 | Cookbooks

Selecting features from a geographic layer or rows from a standalone attribute table is one of the most common GIS operations. Queries are created to enable these selections, and can be either attribute or spatial queries. Attribute queries use SQL statements to select features or rows through the use of one or more fields or columns in a dataset. An example attribute query would be "Select all land parcels with a property value greater than $500,000". Spatial queries are used to select features based on some type of spatial relationship. An example might be "Select all land parcels that intersect a 100 year floodplain" or perhaps "Select all streets that are completely within Travis County, Texas". It is also possible to combine attribute and spatial queries. An example might be "Select all land parcels that intersect the 100 year floodplain and have a property value greater than $500,000".

In this article by Eric Pimpler, author of Programming ArcGIS 10.1 with Python Cookbook, we will cover the following recipes:

  • Constructing proper attribute query syntax

  • Creating feature layers and table views

  • Selecting features and rows with the Select Layer by Attribute tool

  • Selecting features with the Select by Location tool

  • Combining spatial and attribute queries with the Select by Location tool

Read Querying and Selecting Data in full

SciPy for Computational Geometry

by Francisco J. Blanco-Silva | April 2013 | Open Source

In this article by Francisco J. Blanco-Silva, the author of Learning SciPy for Numerical and Scientific Computing, we will cover the routines in the scipy.spatial module that deal with the construction of triangulations of points in spaces of any dimension, and the corresponding convex hulls. The procedure is simple; given a set of m points in the n-dimensional space (which we represent as an m x n NumPy array), we create the scipy.spatial class Delaunay , containing the triangulation formed by those points.

Read SciPy for Computational Geometry in full

Getting Started with PrimeFaces

by Mert Çalışkan Oleg Varaksin | April 2013 | Cookbooks Java Open Source

The purpose of the article, PrimeFaces—the rapidly evolving, JSF component suite, is to address a wide audience interested in modern, trend-setting Java or JEE web development. In this article by Mert Çalışkan and Oleg Varaksin, authors of PrimeFaces Cookbook, we will be provided with a sneak preview on some of the prime features of PrimeFaces, such as the AJAX processing mechanism and resource handling with Internationalization and Localizaiton, along with the necessary steps to implement a simple web application using PrimeFaces, which will give a head start to the user.

In this article  we will cover:

  • Setting up and configuring the PrimeFaces library

  • AJAX basics with Process and Update

  • Internationalization (i18n) and Localization (L10n)

  • Improved resource ordering

  • PrimeFaces scaffolding with Spring Roo

Read Getting Started with PrimeFaces in full

Creating a website with Artisteer

by Jakub Sanecki | April 2013 | Joomla! WordPress

The article, Creating a website with Artisteer, helps you develop a good-looking, professional website using Artisteer without the need to learn programming languages. This article by Jakub Sanecki, author of Creating Templates with Artisteer, explains the process of designing templates for websites using Artisteer.

Read Creating a website with Artisteer in full

Learning to Fly with Force.com

by Abhinav Gupta Ankit Arora | April 2013 | Enterprise Articles

In this article by Ankit Arora and Abhinav Gupta, the authors of the book Force.com Tips and Tricks, we will focus on the basics of cloud computing and briefly go over the following:

  • Principles and constructs of Force.com

  • Benefits and building blocks of Force.com

  • When to choose this platform

  • Which edition is right for you?

  • A cursory overview of how to manage your Salesforce.com org

Read Learning to Fly with Force.com in full

Testing your App

by Gabriel José Balda Ortíz Nehal Shah | April 2013 | Enterprise Articles Web Development

While the subject of testing could span whole books and there are many books on the subject indeed, we will offer a framework for testing HTML5 enterprise applications as well as an outline of cogent topics that will serve as a point of departure for further study. Different testing tools come with their own particular set of idioms; we will cover the concepts underlying those idioms.

This article by Nehal Shah and Gabriel José Balda Ortíz, authors of HTML5 Enterprise Application Development, will cover the following:

  • Unit testing

  • Functional testing

  • Browser testing

  • Continuous integration

Read Testing your App in full
Code Download and Errata
Packt Anytime, Anywhere
Register Books
Print Upgrades
eBook Downloads
Contact Us
Awards Voting Nominations Previous Winners
Judges Open Source CMS Hall Of Fame CMS Most Promising Open Source Project Open Source E-Commerce Applications Open Source JavaScript Library Open Source Graphics Software
Resources
Open Source CMS Hall Of Fame CMS Most Promising Open Source Project Open Source E-Commerce Applications Open Source JavaScript Library Open Source Graphics Software